@charset "UTF-8";
.ilk_accordion {
  --transition-time: 0.3s;
}
.ilk_accordion .accordionitems {
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1px;
}
.ilk_accordion .accordionitems .accordionBlock .accordionButton {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  align-content: center;
  align-items: center;
  width: 100%;
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-radius: 0;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.ilk_accordion .accordionitems .accordionBlock .accordionButton i.opened {
  display: none;
}
.ilk_accordion .accordionitems .accordionBlock .accordionButton:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.ilk_accordion .accordionitems .accordionBlock .accordionButton:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.ilk_accordion .accordionitems .accordionBlock .accordionButton .spinner-border {
  color: var(--bs-btn-color) !important;
  width: 1rem;
  height: 1rem;
}
.ilk_accordion .accordionitems .accordionBlock .accordionBlockBody {
  display: none;
  overflow: hidden;
  transition: height linear var(--transition-time);
  padding: 1rem;
}
.ilk_accordion .accordionitems .accordionBlock.active .accordionButton {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.ilk_accordion .accordionitems .accordionBlock.active .accordionBlockBody {
  display: block;
}
.ilk_accordion .accordionitems .accordionBlock.active i.opened {
  display: block;
}
.ilk_accordion .accordionitems .accordionBlock.active i.closed {
  display: none;
}

.dadata_address {
  --hover-var-bg:rgb(183 198 201);
  --select-color:rgb(0 88 145);
  z-index: 1000;
}
.dadata_address .variants {
  position: absolute;
  top: 2.9rem;
  left: 0;
  right: 0;
  background-color: #fff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-end-end-radius: var(--bs-border-radius);
  border-end-start-radius: var(--bs-border-radius);
  border-top-width: 0;
  display: none;
}
.dadata_address .variants small {
  padding: 0.3rem 0.5rem;
}
.dadata_address .variants .address {
  padding: 0.3rem 0.5rem;
}
.dadata_address .variants .address:hover, .dadata_address .variants .address.selected {
  background-color: var(--hover-var-bg);
  cursor: pointer;
}
.dadata_address .variants .address span {
  color: var(--select-color);
  font-weight: 500;
}
.dadata_address:has(.form-control:focus) .variants {
  border-color: #86b7fe;
}
.dadata_address:has(.is-invalid) .variants {
  border-color: var(--bs-form-invalid-border-color) !important;
}
.dadata_address:has(.is-valid) .variants {
  border-color: var(--bs-form-valid-border-color) !important;
}

.col {
  min-width: 20rem;
}

.fileCont .noFile {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.borderfrm {
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  padding: 0.3rem;
}
.borderfrm.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

textarea[readonly] {
  background-color: var(--bs-secondary-bg-subtle);
}

input[type=date] {
  position: relative;
}

input:-moz-placeholder-shown {
  text-overflow: ellipsis;
}

input:placeholder-shown {
  text-overflow: ellipsis;
}

[inert] {
  opacity: 0.3;
}

.smartPassword {
  position: relative;
}
.smartPassword .toggleView {
  color: var(--bs-gray-600);
}
.smartPassword .toggleView i {
  position: absolute;
  right: 1rem;
  top: 1.4rem;
}
.smartPassword:has([type=password]) .noeye {
  display: none;
}
.smartPassword:has([type=text]) .eye {
  display: none;
}
.smartPassword input.form-control {
  background-image: none;
}

button.btn {
  --bs-spinner-border-width: 2px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
button.btn .spinner-cont {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem;
}
button.btn .spinner-cont .spinner-border {
  --bs-spinner-border-width: 3px;
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  color: #fff !important;
}
button.btn.btn-lg {
  --bs-spinner-border-width: 3px;
}
button.btn.btn-lg .spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
}

/*.form-floating {
	overflow: hidden;
}*/
.ilk_notifications {
  position: relative;
}
.ilk_notifications .badge {
  position: absolute;
  background-color: rgb(189, 21, 21);
  padding: 2px;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  font-weight: 100;
  aspect-ratio: 1;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  min-width: 1.3rem;
}
.ilk_notifications .badge:empty {
  display: none;
}

.notifications a {
  text-decoration: none;
  color: #595959;
}
.notifications .notificationsElement {
  border: 1px solid #dddddd;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  transition: border linear 0.3s;
}
.notifications .notificationsElement:hover {
  border: 1px solid #618cd5;
}
.notifications .notificationsElement .h {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.notifications .notificationsElement .h i {
  font-style: normal;
  color: #b1b1b1;
  font-size: 0.8em;
}
.notifications .notificationsElement .msg {
  margin-top: 1rem;
}

.ilk_calendar {
  --calendar-border-color: #bbbbbb;
  --calendar-cell-border: 1px solid var(--calendar-border-color);
  --td-padding: 0.3rem;
  --date-color: #6d6d6d;
  --date-active-color: #376eb5;
  --td-active-bg: #c9e0ff;
  --td-hover-bg: #65b38e;
  --date-hover-color: #074d22;
  border: 1px solid var(--calendar-border-color);
}
.ilk_calendar a {
  text-decoration: none;
}
.ilk_calendar thead td {
  padding: var(--td-padding);
  text-align: center;
}
.ilk_calendar thead td.year_mon {
  text-align: center;
}
.ilk_calendar tbody td {
  border: var(--calendar-cell-border);
  padding: var(--td-padding);
  text-align: center;
}
.ilk_calendar tbody td:hover {
  background-color: var(--td-hover-bg);
}
.ilk_calendar tbody td:hover a {
  color: var(--date-hover-color);
}
.ilk_calendar tbody td a {
  color: var(--date-color);
}
.ilk_calendar tbody td.current {
  background-color: var(--td-active-bg);
}
.ilk_calendar tbody td.current a {
  font-weight: bold;
  color: var(--date-active-color);
}

.teachers_rating .textBeforeQuiz {
  margin-bottom: 2rem;
}
.teachers_rating .textAfterQuiz {
  margin-top: 2rem;
}
.teachers_rating div.quizList {
  --border-color-person: #646670;
  margin-top: 1rem;
}
.teachers_rating div.quizList[inert] {
  opacity: 0.5;
}
.teachers_rating div.quizList[inert] .saveCont {
  display: none;
}
.teachers_rating div.quizList[inert] .textAfterQuizList {
  display: none;
}
.teachers_rating div.quizList .textBeforeQuizList {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.teachers_rating div.quizList .textBeforeQuizList.show {
  display: block;
}
.teachers_rating div.quizList .textAfterQuizList {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: none;
}
.teachers_rating div.quizList .textAfterQuizList.show {
  display: block;
}
.teachers_rating div.quizList .textClosedQuiz {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.teachers_rating div.quizList .buttons {
  margin-top: 2rem;
}
.teachers_rating div.quizList .buttons button[inert] {
  opacity: 0.3;
}
.teachers_rating div.quizList div.quizItem {
  display: none;
  margin-bottom: 2rem;
}
.teachers_rating div.quizList div.quizItem h3 {
  font-size: 1.2rem;
}
.teachers_rating div.quizList div.quizItem h4 {
  font-size: 1.1rem;
  color: gray;
}
.teachers_rating div.quizList div.quizItem.show {
  display: block;
}
.teachers_rating div.quizList div.quizItem .person {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  border-left: 5px solid var(--border-color-person);
}
.teachers_rating div.quizList div.quizItem .person.error {
  --border-color-person: var(--bs-danger);
}
.teachers_rating div.quizList div.quizItem .person:has(.selected) {
  --border-color-person: var(--bs-green);
}
.teachers_rating div.quizList div.quizItem .person .name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.teachers_rating div.quizList div.quizItem .person .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.teachers_rating div.quizList div.quizItem .person .buttons a {
  --bs-btn-border-radius: 0.5rem;
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  text-align: center;
  color: var(--bs-btn-color);
  padding: 0.3rem 0.7rem;
  border-radius: var(--bs-btn-border-radius);
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
}
.teachers_rating div.quizList div.quizItem .person .buttons a:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.teachers_rating div.quizList div.quizItem .person .buttons a.rateButton {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
.teachers_rating div.quizList div.quizItem .person .buttons a.difficultToAnswer {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}
.teachers_rating div.quizList div.quizItem .person .buttons a.selected {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.ilkrazderror {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--bs-danger);
  padding-top: 10rem;
}

.lk_main_inner:has(.ilkrazderror) .ilk_menu_panel {
  display: none;
}
.lk_main_inner:has(.ilkrazderror) .ilk_content_container {
  width: 100%;
}

button.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-color: var(--bs-form-invalid-border-color);
}

.inputClean .form-control.is-valid {
  background-image: none;
}

.smartInputCont .form-control.is-valid {
  background-image: none;
}

.form-check:has(.is-invalid) .invalid-feedback {
  display: block;
}

.errorMessage {
  color: rgb(161, 31, 31);
}

.referenceInput {
  position: relative;
}
.referenceInput a {
  position: absolute;
  top: 18%;
  right: 1rem;
}
.referenceInput.primary a {
  top: 32%;
}

.fileCont {
  padding: 0.3rem;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
.fileCont:has(.is-invalid) {
  border: var(--bs-border-width) solid var(--bs-form-invalid-border-color);
  border-radius: var(--bs-border-radius);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.fileCont:has(.is-valid) {
  border: var(--bs-border-width) solid var(--bs-form-valid-border-color);
  border-radius: var(--bs-border-radius);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.input-structure {
  padding: 0.3rem;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
.input-structure:has(.is-invalid) {
  border: var(--bs-border-width) solid var(--bs-form-invalid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.inputClean {
  position: relative;
}
.inputClean a.clearFilter {
  position: absolute;
  right: 0.5rem;
  bottom: 0.4rem;
  color: var(--bs-form-invalid-border-color);
}

.d-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}

.d-vertical-flex {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.ilk_alert:has(.isempty:empty) hr.line {
  display: none;
}

.modal .edit_form textarea {
  min-height: 50vH;
}

.modal.messengerSelectContactsProcessor .modal-body > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.modal.photo img.photo {
  max-width: 100%;
  border: 1px solid var(--bs-gray);
}

.dropfile {
  outline: 2px dashed #248eff;
  border-radius: 1rem;
  box-shadow: 0px 1px 23px 4px #fff;
}

.modal .fileList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.modal .fileList .file {
  width: 8rem;
  border: 1px solid #bcbcbc;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.modal .fileList .file a.fileImg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.modal .fileList .file a.remove {
  color: var(--bs-danger);
  position: absolute;
  top: 0.2rem;
  right: 0.4rem;
  text-decoration: none;
  background-color: white;
  display: block;
  border-radius: 50%;
  padding: 0px 5px 2px 5px;
  line-height: 1;
  border: 1px solid var(--bs-danger);
}
.modal .fileList .file img {
  min-height: 100%;
  min-width: 100%;
}

.ilk_messenger {
  --messenger-height: 70vH;
  --header-height: 3rem;
  --form-height: 3.6rem;
  --send_button_width: 100px;
  --message_reply_height: 2rem;
  --message_bg_color: #adcddf;
  --message_my_bg_color: #addfbe;
  --message_border_radius: 1rem;
  --message_margin: 1rem;
  --message_padding: 1rem;
  --height_button_find_contacts: 2.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /*column-gap: 2rem;*/
  justify-content: space-around;
  align-items: stretch;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.ilk_messenger .null_contacts {
  font-size: 10rem;
  color: #00a1ff;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.ilk_messenger .no_chat_selected {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.ilk_messenger .null_message {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.ilk_messenger .attach {
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.ilk_messenger .attach a {
  color: gray;
}
.ilk_messenger .attach a.filled {
  color: var(--bs-link-color);
}
.ilk_messenger .left_panel {
  width: 30%;
  height: var(--messenger-height);
  border-right: 1px solid #c5c5c5;
  padding: 1rem;
  background-color: #fff;
  transition: left linear 0.2s, opacity linear 0.2s;
}
.ilk_messenger .left_panel .find_contacts {
  height: var(--height_button_find_contacts);
  margin-bottom: 0.5rem;
}
.ilk_messenger .left_panel .search_contacts {
  border: 0;
  outline: 0;
  background-color: #00a1ff;
  color: white;
  width: 100%;
  height: var(--height_button_find_contacts);
  border-radius: 1rem;
}
.ilk_messenger .left_panel .contacts_panel {
  height: calc(100% - var(--height_button_find_contacts) - 0.5rem);
  overflow: auto;
  padding: 1rem;
}
.ilk_messenger .left_panel .contacts_panel::-webkit-scrollbar {
  background-color: rgba(95, 95, 95, 0.096);
  width: 6px;
  height: 6px;
  border-radius: 4px;
}
.ilk_messenger .left_panel .contacts_panel::-webkit-scrollbar-thumb {
  background-color: rgb(51, 58, 78);
  border-radius: 4px;
}
.ilk_messenger .left_panel .contacts_panel .contact {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  /*&.new{

  }*/
}
.ilk_messenger .left_panel .contacts_panel .contact .new_messages {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #c01010;
  border-radius: 1rem;
  padding: 0px 0.4rem 0.06rem 0.4rem;
  font-size: 0.8rem;
  color: #fff;
}
.ilk_messenger .left_panel .contacts_panel .contact.active {
  font-weight: 600;
  background-color: #e1e1e1;
  border-radius: 0.5rem;
}
.ilk_messenger .left_panel .contacts_panel .contact .avatar {
  width: 3rem;
  min-width: 3rem;
  aspect-ratio: 1;
  background-color: var(--message_bg_color);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ilk_messenger .left_panel .contacts_panel .contact .avatar svg {
  max-width: 80%;
  aspect-ratio: 1;
}
.ilk_messenger .left_panel .contacts_panel .contact .avatar svg path {
  fill: #597cbc;
}
.ilk_messenger .left_panel .contacts_panel .contact .avatar img {
  max-width: 100%;
}
.ilk_messenger .left_panel .contacts_panel .contact .userName {
  font-size: 0.9rem;
}
.ilk_messenger .left_panel .contacts_panel .contact .additions {
  font-size: 0.8rem;
  color: #979797;
}
.ilk_messenger .right_panel {
  width: 70%;
  height: var(--messenger-height);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: space-evenly;
}
.ilk_messenger .right_panel .mobile_show_contacts {
  margin-right: 2rem;
  font-size: 1.5rem;
  color: green;
  display: none;
}
.ilk_messenger .messages_panel {
  height: calc(100% - var(--header-height) - var(--form-height));
  overflow: auto;
  padding: 0.5rem;
  /*scroll-behavior: smooth;*/
  display: grid;
  align-items: end;
  /*scrollbar-color: red green;
  scrollbar-width: thin;*/
}
.ilk_messenger .messages_panel::-webkit-scrollbar {
  background-color: rgba(95, 95, 95, 0.096);
  width: 6px;
  height: 6px;
  border-radius: 4px;
}
.ilk_messenger .messages_panel::-webkit-scrollbar-thumb {
  background-color: rgb(51, 58, 78);
  border-radius: 4px;
}
.ilk_messenger .messages_panel .replied_text {
  --webkit-line-clamp: 2;
  display: -webkit-box;
  --webkit-box-orient: vertical;
  overflow: hidden;
}
.ilk_messenger .message_item {
  margin-bottom: var(--message_margin);
  margin-bottom: var(--message_margin);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  /*.message_text{

  }*/
}
.ilk_messenger .message_item .avatar {
  width: 5rem;
  min-width: 5rem;
  background-color: var(--message_bg_color);
  margin-right: 1rem;
  margin-left: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ilk_messenger .message_item .avatar svg {
  max-width: 80%;
  aspect-ratio: 1;
}
.ilk_messenger .message_item .avatar svg path {
  fill: #597cbc;
}
.ilk_messenger .message_item .avatar img {
  max-width: 100%;
}
.ilk_messenger .message_item .message_cont {
  background-color: var(--message_bg_color);
  border-radius: var(--message_border_radius);
  padding: var(--message_padding);
  border-bottom-left-radius: 1px;
  position: relative;
  transition: background-color linear 10s;
}
.ilk_messenger .message_item.my_message_item {
  justify-content: flex-end;
}
.ilk_messenger .message_item.my_message_item .avatar {
  background-color: var(--message_my_bg_color);
  margin-left: 1rem;
  margin-right: 0;
}
.ilk_messenger .message_item.my_message_item .avatar svg path {
  fill: #59bc7e;
}
.ilk_messenger .message_item.my_message_item .message_cont {
  background-color: var(--message_my_bg_color);
  border-bottom-left-radius: var(--message_border_radius);
  border-bottom-right-radius: 1px;
}
.ilk_messenger .message_item.my_message_item .readed {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  color: #088400;
}
.ilk_messenger .message_item .head {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #95b3cd;
  margin-bottom: 1rem;
  color: #004584;
}
.ilk_messenger .message_item .head .userName {
  font-weight: 550;
}
.ilk_messenger .message_item .head .date {
  padding-right: 0rem;
}
.ilk_messenger .message_item .replied_text {
  padding: 0.3rem 1rem;
  background-color: #4da5d5;
  display: inline-block;
  border-left: 3px solid #326079;
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.ilk_messenger .message_item.my_message_item .head {
  border-bottom: 1px solid #8dcc89;
  color: #088400;
  /*.userName{



  }
  .date{



  }*/
}
.ilk_messenger .message_item.my_message_item .replied_text {
  background-color: #4dd57f;
  border-left: 3px solid #399e5e;
  --webkit-line-clamp: 2;
  display: -webkit-box;
  --webkit-box-orient: vertical;
  overflow: hidden;
}
.ilk_messenger .message_item.new:not(.my_message_item) .message_cont {
  background-color: #4a95be;
  transition: background-color linear 5s;
}
.ilk_messenger .message_item.new.my_message_item .readed {
  display: none;
}
.ilk_messenger .message_item .options {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.ilk_messenger .message_item .reply_message {
  /*position: absolute;
           top: 0.5rem;
           right: 0.5rem;
           color: #fff;
           text-decoration: none;
           background-color: #2c53d5;
           padding: 0 0.3rem;
           border-radius: 0.5rem;
           font-size: 0.9rem;
           border: 1px solid #170485;
  display: none;
  z-index:2;*/
  opacity: 0;
}
.ilk_messenger .message_item .delete_message {
  /*position: absolute;
           top: 0.5rem;
           right: 0.5rem;
           color: #fff;
           text-decoration: none;
           background-color: #d52c2c;
           padding: 0 0.3rem;
           border-radius: 0.5rem;
           font-size: 0.9rem;
           border: 1px solid #510000;
  display: none;
  z-index:2;*/
  opacity: 0;
  color: #d52c2c;
}
.ilk_messenger .message_item .edit_message {
  opacity: 0;
}
.ilk_messenger .message_item:hover .reply_message,
.ilk_messenger .message_item:hover .delete_message,
.ilk_messenger .message_item:hover .edit_message {
  opacity: 1;
}
.ilk_messenger .message_item .message_attachments {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3rem;
}
.ilk_messenger .message_item .message_attachments .file {
  height: calc(var(--message_reply_height) * 2);
  aspect-ratio: 1;
  border-radius: 0.3rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ilk_messenger .message_item .message_attachments .file a.fileImg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.ilk_messenger .message_item .message_attachments .file img {
  min-height: 100%;
  min-width: 100%;
}
.ilk_messenger .top_title {
  height: var(--header-height);
  overflow: hidden;
  background-color: #e1e1e1;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
.ilk_messenger .top_title .avatar {
  width: calc(var(--header-height) - 1rem);
  min-width: calc(var(--header-height) - 1rem);
  background-color: var(--message_bg_color);
  margin-right: 1rem;
  margin-left: 0;
  border-radius: 50%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ilk_messenger .top_title .avatar svg {
  max-width: 80%;
  aspect-ratio: 1;
}
.ilk_messenger .top_title .avatar svg path {
  fill: #597cbc;
}
.ilk_messenger .top_title .avatar img {
  max-width: 100%;
}
.ilk_messenger .top_title .name {
  font-size: 0.9rem;
}
.ilk_messenger .top_title .additions {
  font-size: 0.7rem;
  color: gray;
}
.ilk_messenger .message_form {
  height: var(--form-height);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: flex-end;
  background-color: #fff;
  padding: 0.5rem;
  border-top: 1px solid #e3e3e3;
}
.ilk_messenger .message_form .message {
  height: 100%;
  width: calc(100% - var(--send_button_width));
  border: 1px solid #cdcdcd;
  padding: 0.3rem;
  border-radius: 5px;
  margin-right: 0.3rem;
  background-color: #fff;
}
.ilk_messenger .message_form button {
  width: var(--send_button_width);
}
.ilk_messenger .message_form textarea {
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
}
.ilk_messenger .message_form textarea:disabled {
  background-color: #fff;
}
.ilk_messenger .message_form .atachesandrply {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.ilk_messenger .message_form .attaches {
  height: var(--message_reply_height);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3rem;
}
.ilk_messenger .message_form .attaches .file {
  height: 100%;
  aspect-ratio: 1;
  border-radius: 0.3rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ilk_messenger .message_form .attaches .file a.fileImg {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.ilk_messenger .message_form .attaches .file img {
  min-height: 100%;
  min-width: 100%;
}
.ilk_messenger .message_form .reply_to {
  height: var(--message_reply_height);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
}
.ilk_messenger .message_form .reply_to .message_item {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #c8c8c8;
  height: var(--message_reply_height);
  font-size: 0.9rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 0.5rem;
}
.ilk_messenger .message_form .reply_to .message_text {
  height: calc(var(--message_reply_height) - 0.5rem);
  --webkit-line-clamp: 1;
  display: -webkit-box;
  --webkit-box-orient: vertical;
  overflow: hidden;
}
.ilk_messenger .message_form .reply_to a.cancel_reply {
  text-decoration: none;
  display: inline-block;
  height: calc(var(--message_reply_height) - 0.5rem);
  margin-left: 0.5rem;
  border: 1px solid var(--bs-link-color);
  padding: 0 0.5rem;
  border-radius: 0.3rem;
}
.ilk_messenger .message_form .send button.send_message_button {
  border: 0;
  outline: 0;
  background-color: #00a1ff;
  color: #fff;
  border-radius: 1rem;
  height: 2.5rem;
  font-size: 0.9rem;
}
.ilk_messenger:has(.reply_to:not(:empty)) {
  --form-height: 7rem;
}
.ilk_messenger:has(.reply_to:not(:empty)) textarea {
  /*background-color: yellow;*/
  height: calc(100% - var(--message_reply_height));
}
.ilk_messenger:has(.attaches:not(:empty)) {
  --form-height: 7rem;
}
.ilk_messenger:has(.attaches:not(:empty)) textarea {
  /*background-color: yellow;*/
  height: calc(100% - var(--message_reply_height));
}
.ilk_messenger:has(textarea:focus) {
  --form-height: 7rem;
}

@media screen and (max-width: 1500px) {
  .ilk_messenger .right_panel {
    width: 60%;
  }
  .ilk_messenger .left_panel {
    width: 40%;
  }
}
@media screen and (max-width: 1200px) {
  .ilk_messenger .right_panel {
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .ilk_messenger .right_panel .message_item .head {
    border-bottom: 1px solid #8dcc89;
    color: #088400;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .ilk_messenger .left_panel {
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0%;
    opacity: 1;
    border-right: none;
  }
  .ilk_messenger.hide_contacts .left_panel {
    left: -100%;
    opacity: 0;
  }
  .ilk_messenger.hide_contacts .mobile_show_contacts {
    display: initial;
  }
}
@media screen and (max-width: 600px) {
  .message_cont {
    width: calc(89vW - 6rem);
  }
}
@media screen and (max-width: 420px) {
  .message_cont {
    width: calc(89vW - 6rem);
  }
}
.listReferenceCont ul.referenceList {
  padding-left: 0;
  margin-top: 1rem;
}
.listReferenceCont ul.referenceList li {
  border-top: 1px solid #ede9e9;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
}
.listReferenceCont ul.referenceList li .sel {
  font-size: 0.7em;
  margin-right: 0.5rem;
  color: gray;
  opacity: 0;
  transition: all linear 0.15s;
  transform: scale(1.5);
}
.listReferenceCont ul.referenceList li:hover .sel {
  opacity: 1;
  transform: scale(1);
}
.listReferenceCont ul.referenceList li .title {
  color: var(--bs-link-color);
}
.listReferenceCont ul.referenceList li:first-child {
  border-top: 0;
}

.inputReference > div.el {
  position: relative;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 0.375rem 0.1rem;
}
.inputReference > div.el:has(.is-invalid) {
  border-color: var(--bs-form-invalid-border-color);
}
.inputReference > div.el:has(.is-invalid) ~ .invalid-feedback {
  display: block;
}
.inputReference > div.el:has(.is-valid) {
  border-color: var(--bs-form-valid-border-color);
}
.inputReference > div.el:has(.is-valid) ~ .valid-feedback {
  display: block;
}
.inputReference > div.el:has(.is-valid) ~ .valid-feedback:empty {
  display: none;
}
.inputReference > div.el label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  font-size: 0.85em;
  opacity: 0.4;
  display: block;
  margin-left: 0.7rem;
  margin-top: 0.3rem;
}
.inputReference > div.el .filledName {
  display: none;
  margin-left: 0.7rem;
  font-weight: bold;
}
.inputReference > div.el .clear {
  display: none;
  position: absolute;
  bottom: 0.4rem;
  right: 0.7rem;
  color: var(--bs-form-invalid-border-color);
}
.inputReference > div.el .openReference {
  display: block;
  text-decoration: none;
  margin-left: 0.7rem;
}
.inputReference > div.el.filled .filledName {
  display: block;
}
.inputReference > div.el.filled .clear {
  display: block;
}
.inputReference > div.el.filled .openReference {
  display: none;
}

.modal-backdrop {
  --bs-backdrop-bg: rgb(0 0 0 / 20%);
  --bs-backdrop-opacity: 1;
  -webkit-backdrop-filter: grayscale(1);
          backdrop-filter: grayscale(1);
}

.errorModal .modal-body {
  background-color: transparent;
  color: #882d2d;
}
.errorModal .modal-content {
  --bs-modal-border-color: rgb(192 18 18 / 84%);
}

/*.tableCont{*/
.filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.filters .filter {
  border: 0;
}
.filters .filter:disabled {
  opacity: 0.1;
}
.filters .filter i {
  transform: scale(1);
  transition-duration: 0.1s;
  transition-timing-function: ease-out;
  transition-property: all;
}
.filters .filter i.actived {
  transform: scale(5);
  transition-property: none;
}

/*}*/
.mtuci_attendance {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.mtuci_attendance ul {
  list-style: none;
}
.mtuci_attendance li {
  font-weight: bold;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 1rem 0;
}
.mtuci_attendance li span.desc {
  padding: 0.25rem 0.7rem;
  border-radius: 0.8rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.mtuci_attendance li span.desc .bull {
  font-size: 0;
  margin-bottom: 0rem;
  line-height: 0;
  margin-right: 0.4rem;
  width: 0.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
.mtuci_attendance li span.pc {
  padding-left: 0.5rem;
}
.mtuci_attendance .donutDiagramm canvas {
  width: 11rem;
  margin-right: 1.7rem;
}

.btn {
  --bs-btn-border-radius: 0.5rem;
}

router-layout .btn {
  --bs-btn-font-size: 1rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 0.7rem;
  --bs-btn-border-radius: 0.5rem;
  font-weight: bold;
}
router-layout .btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #372579;
  --bs-btn-border-color: #372579;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #372579;
  --bs-btn-hover-border-color: #372579;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #372579;
  --bs-btn-active-border-color: #372579;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #372579;
  --bs-btn-disabled-border-color: #372579;
}
router-layout .form-check-input {
  width: 1.5em;
  height: 1.5em;
  /*border-color: #261561;*/
  margin-top: 0;
}
router-layout .form-check-input:checked {
  background-color: #372579;
  border-color: #261561;
}

.grayCommand {
  color: #ADB5BD;
  font-weight: bold;
}

.modal-buttonscont {
  margin: 0rem 1.5rem 0 1.5rem;
}

.modal-header {
  border-bottom: 0;
}

.modal-footer {
  border-top: 0;
}

.interFilter label {
  color: #ADB5BD;
  font-weight: bold;
  font-size: 0.8rem;
}
.interFilter .f {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.interFilter input {
  margin-right: -31px;
  background-color: #F8F9FA;
  border: none;
  line-height: 2;
  font-weight: bold;
}
.interFilter input::-moz-placeholder {
  color: #ADB5BD;
  opacity: 1;
}
.interFilter input::placeholder {
  color: #ADB5BD;
  opacity: 1;
}
.interFilter input::-ms-input-placeholder {
  color: #ADB5BD;
}

table .inputFrm {
  z-index: 1;
}
table small.smallText {
  display: none;
  position: absolute;
  top: calc(100% + 0.2rem);
  background-color: #fff;
  border: 1px solid #9a9999;
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
  width: 100%;
  text-align: center;
  box-shadow: 0px 4px 4px -3px gra;
}
table .inputFrm:hover {
  z-index: 2;
}
table .inputFrm:hover small.smallText {
  display: block;
}

.modalFromButton a {
  color: rgb(161, 161, 161);
}
.modalFromButton.filled a {
  color: #0062af;
}

.mtuci .modal-body {
  background-color: #F8F9FA;
  margin: 1.3rem;
  border-radius: 1rem;
  padding: 1rem;
}
.mtuci .modal-body .universalTable {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 0 12px 6px rgba(128, 128, 128, 0.28);
}
.mtuci .ItemIntroductionDocumentForUser {
  border: 1px solid #cfcfcf;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 4px 13px 0px #d3d3d3;
  margin-bottom: 2rem;
}
.mtuci .ItemIntroductionDocumentForUser.success {
  border: 1px solid #41a100;
}
.mtuci .ItemIntroductionDocumentForUser.expired {
  border: 1px solid #b3003b;
}
.mtuci .ItemIntroductionDocumentForUser .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 0.5rem;
}
.mtuci .ItemIntroductionDocumentForUser .head > div {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.mtuci .ItemIntroductionDocumentForUser .head .h {
  font-weight: 600;
}
.mtuci .ItemIntroductionDocumentForUser .docs {
  padding: 1rem;
  font-weight: 600;
}
.mtuci .ItemIntroductionDocumentForUser .otherParams {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}
.mtuci .ItemIntroductionDocumentForUser .commands {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.mtuci .ItemIntroductionDocumentForUser .commands .info {
  margin: 1rem;
}
.mtuci .ItemIntroductionDocumentForUser .commands .ok {
  margin: 1rem;
}

a.cleanSmartInput {
  text-decoration: none;
  color: var(--bs-form-invalid-border-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 1.7rem;
}

:root {
  --Surface-01-bg-color: #FFFFFF;
  --Surface-01-border-radius: 1rem;
  --Surface-01-padding: 1rem;
  --Surface-02-bg-color: #F8F9FA;
  --Surface-02-border-radius: 1rem;
  --Surface-02-padding: 1rem;
}

.dept_contract {
  --color-debt: #FF7566;
  --color-success: #3AD98C;
  --muted-text-color: #ADB5BD;
  --qr-code-width: 9rem;
  background-color: var(--Surface-02-bg-color);
  border-radius: var(--Surface-02-border-radius);
  padding: var(--Surface-02-padding);
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.dept_contract .descriptionDebt {
  width: calc(100% - var(--qr-code-width) - 1rem);
  box-shadow: 0 0 22px -14px #BBBBBB;
}
.dept_contract .qrCodeDebt {
  background-color: var(--Surface-01-bg-color);
  border-radius: var(--Surface-01-border-radius);
  padding: var(--Surface-01-padding);
  width: var(--qr-code-width);
  box-shadow: 0 0 22px -14px #BBBBBB;
  font-size: 0;
  margin-left: 1rem;
}
.dept_contract .qrCodeDebt canvas {
  width: 100%;
}
.dept_contract .mutedTextDebt {
  width: 100%;
  text-align: center;
  color: var(--muted-text-color);
  font-weight: 700;
}
.dept_contract .contractInfo {
  width: 100%;
}
.dept_contract .tablePay {
  width: 100%;
}
.dept_contract .tablePay table {
  width: 100%;
  display: table !important;
}
.dept_contract .innerContDebt {
  background-color: var(--Surface-01-bg-color);
  border-radius: var(--Surface-01-border-radius);
  padding: var(--Surface-01-padding);
}
.dept_contract .innerContDebt .topFlex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.dept_contract .innerContDebt .bottomFlex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.dept_contract .innerContDebt .smile {
  color: var(--color-debt);
}
.dept_contract .innerContDebt .smileSuccess {
  display: none;
  color: var(--color-success);
  font-size: 2rem;
}
.dept_contract .innerContDebt.success .smileSuccess {
  display: block;
}
.dept_contract .innerContDebt.success .smile {
  display: none;
}
.dept_contract .innerContDebt .sum div {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-debt);
}
.dept_contract .innerContDebt .sum span,
.dept_contract .innerContDebt .mutedText {
  color: var(--muted-text-color);
}
.dept_contract .innerContDebt.success .sum div {
  color: var(--color-success);
}
.dept_contract .innerContDebt .h {
  font-size: 1.2rem;
  font-weight: 500;
}

.modal .QRCode {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .QRCode canvas {
  width: 100%;
}

.noneListStyle {
  list-style: none;
}

.cursor-pointer {
  cursor: pointer;
}

.modal {
  --bs-modal-border-radius: 1.5rem;
}

.targetFileCont {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

div.rateCont {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

div.descCont {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  min-height: 1.5rem;
}

.isempty:empty {
  display: none !important;
}

.filterCont {
  position: relative;
}
.filterCont i {
  position: absolute;
  top: calc(50% - 0.45rem);
  left: 0.75rem;
  color: #696969;
}
.filterCont input {
  padding-left: 2.5rem;
}

.categoriesWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 30px;
  margin-top: 2rem;
}
.categoriesWrapper .categoriesCont {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.categoriesWrapper .categoriesCont a {
  text-decoration: none;
}
.categoriesWrapper .categoriesCont a:hover {
  text-decoration: underline;
}
.categoriesWrapper .notfound {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.postadmissions {
  counter-reset: steps;
}

.postadmissions .accordion-button:before {
  content: counter(steps) ". ";
  margin-right: 1rem;
  counter-increment: steps;
}

a.scanCategory {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.specialtyList .examDate {
  font-size: 0.9rem;
  margin-left: 0.5rem;
  color: #00809f;
  white-space: nowrap;
}

.showhidelegend {
  margin-left: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.ilegend {
  font-size: 0.8rem;
  margin-left: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.ilegend .legenditem {
  display: flex;
  justify-items: start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0.1rem;
  margin-right: 1rem;
}

.ilegend .legendmark {
  width: 3rem;
  height: 1.4rem;
  border-style: solid;
  margin-right: 0.7rem;
}

/*.ilegend .label{

}
.answerToTeacher{

}
.answerFromTeacher{

}*/
.questionAnswers_form .answers {
  margin-bottom: 3rem;
}

.questionAnswer {
  position: relative;
  min-height: 4.3rem;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

/*.questionAnswer .message{

}*/
.questionAnswer .message .date {
  font-size: 0.8rem;
  border-bottom: 1px solid;
  padding: 0.2rem 1rem;
}

.answerToTeacher .message .date {
  border-color: #749d74;
}

.answerFromTeacher .message .date {
  border-color: #65a8c3;
}

.questionAnswer .message .text {
  padding: 0.6rem;
}

.questionAnswer .ava img {
  width: 5rem;
  height: 5rem;
}

.questionAnswer .ava {
  position: absolute;
  top: 0;
  background: antiquewhite;
  overflow: hidden;
}

.answerToTeacher .ava {
  left: 0;
  border-radius: 50% 0% 50% 50%;
  transform: rotate(22deg);
}

.answerToTeacher .ava img {
  transform: rotate(-22deg) translatex(8%) scale(1.16);
}

.answerFromTeacher .ava {
  right: 0;
  border-radius: 0% 50% 50% 50%;
  transform: rotate(-22deg);
}

.answerFromTeacher .ava img {
  transform: rotate(22deg) translatex(-8%) scale(1.16);
}

.answerToTeacher .message {
  margin-left: 7rem;
}

.answerToTeacher .message span {
  background-color: #b5efb5;
  display: inline-block;
  text-align: left;
  border-radius: 0.4rem;
}

.answerFromTeacher .message {
  margin-right: 7rem;
  text-align: right;
}

.answerFromTeacher .message span {
  background-color: #89deff;
  display: inline-block;
  text-align: left;
  border-radius: 0.4rem;
}

.questionAnswers_form .question {
  margin-bottom: 3rem;
  background: rgba(139, 195, 74, 0.17);
  border-radius: 0.4rem;
}

/*.questionAnswers_form .question .data{

}*/
.questionAnswers_form .question .label {
  font-weight: 600;
  font-size: 0.8rem;
}

.questionAnswers_form .question .text {
  padding: 1rem;
  border-top: 1px solid #749d74;
}

.questionAnswers_form .question .row {
  padding: 0 0.5rem;
}

.questionAnswers_form textarea.answerText {
  min-height: 7rem;
}

.ck.ck-content {
  min-height: 30rem;
}

.ilk_tree .item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.ilk_tree .head {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.ilk_tree .collapse_button {
  transform: rotate(0deg);
  transition: all linear 0.2s;
}

.ilk_tree.closed .collapse_button {
  transform: rotate(180deg);
}

.ilk_tree .ilk_treeChilds {
  overflow: hidden;
  opacity: 1;
  transition: height cubic-bezier(0.1, 0.95, 0.2, 1.64) 0.3s, opacity linear 0.5s;
}

.ilk_tree.closed > .ilk_treeChilds {
  height: 0px;
  transition: all linear 0.3s;
  opacity: 0;
}

.fs08 {
  font-size: 0.8rem;
}

.fs09 {
  font-size: 0.95rem;
}

.accordion-button::after {
  position: absolute;
  left: 0.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
  padding-left: 2rem;
}

.accordion-button {
  background-color: #0062af;
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background-color: #0062af;
  color: #fff;
  font-weight: bold;
}

.notInited {
  display: none;
}

.screenshots-container > div img {
  max-width: 100%;
  max-height: 60vh;
}

.custom-file .spinner-border {
  top: -0.7rem;
  position: relative;
  margin-right: 1rem;
}

body.localApp:before {
  content: "";
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 3px;
  background-color: red;
}

body.localApp:after {
  content: "";
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 3px;
  background-color: red;
}

.table {
  border-collapse: collapse;
}

.universalTable.bigTable {
  overflow: auto;
  position: relative;
}

.universalTable.bigTable table {
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.form-control.is-valid.reference,
.form-control.is-invalid.reference {
  background-image: none;
}

.table th small {
  font-weight: 100;
  font-size: 0.7em;
  display: block;
}

.table th {
  vertical-align: middle;
}

.table a.up {
  position: relative;
  top: -0.4rem;
  left: 1rem;
  margin-right: -0.9rem;
}

.table a.down {
  position: relative;
  top: 0.6rem;
  left: 1rem;
}

.filter-name a.search {
  position: absolute;
  top: 32%;
  right: 1rem;
}

.table a.remove {
  position: relative;
  top: 10%;
}

.universalTable.sticky table.table thead {
  position: sticky;
  top: -1rem;
  background-color: rgba(239, 239, 239, 0.91);
  z-index: 1000;
  box-shadow: 0px 3px 5px -6px #000;
}

.pagination {
  justify-content: center;
}

.page-item.dottes {
  font-size: 1.5rem;
  color: #aba8a8;
  line-height: 3px;
  position: relative;
  top: 0.6rem;
}

fieldset.is-invalid,
form.frm-input-fias.is-invalid {
  border-color: #dc3545;
}

fieldset.is-valid,
form.frm-input-fias.is-valid {
  border-color: #28a745;
}

.additional-message-edudoc {
  display: none;
}

.arrayComponents > div {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 1rem;
}

input[type=date],
input[type=datetime],
input[type=datetime-local] {
  padding-left: 2rem !important;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=datetime]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0.4rem;
}

input[type=time] {
  padding-left: 2rem !important;
}
input[type=time]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: -0.2rem;
}

/* visibility: hidden !important;*/
.p-relative {
  position: relative;
}

.p-top-right {
  position: absolute;
  top: 5px;
  right: 0px;
}

.p-top-right-2 {
  position: absolute;
  top: 5px;
  right: 2rem;
}

.p-top-right-3 {
  position: absolute;
  top: 5px;
  right: 4rem;
}

.p-top-right-4 {
  position: absolute;
  top: 35px;
  right: -24px;
}

.fileCont.is-invalid {
  border: 1px solid #dc3545;
  padding: 5px;
  border-radius: 5px;
}

.fileCont label {
  opacity: 0.65;
  font-size: 0.85em;
}

.badge.isAgr {
  position: relative;
  top: -2px;
}

.statementsLE li .buttons .btn {
  font-size: 0.7rem;
}

.custom-file input.is-invalid + label > span {
  color: #dc3545;
}

.custom-file input.is-invalid + label {
  border: 1px solid red;
  padding: 2px;
  border-radius: 4px;
}

.custom-file input.is-invalid + label:after {
  background-color: #dc3545;
  border: 1px solid #dc3545;
}

.lka_exams_info {
  font-size: 0.8rem;
}

.lka_exams_info th {
  text-align: center;
}

.lka_exams_info td {
  text-align: center;
}

.lka_exams_info tbody th {
  font-weight: 450;
}

.lka_exams_info tr.priority_1 th,
.lka_exams_info tr.priority_1 td {
  background-color: #f7f7f7;
}

.lka_exams_info tr.priority_2 th,
.lka_exams_info tr.priority_2 td {
  background-color: #fff;
}

.lka_exams_info tr.priority_3 th,
.lka_exams_info tr.priority_3 td {
  background-color: #f7f7f7;
}

.lka_exams_info tr.priority_4 th,
.lka_exams_info tr.priority_4 td {
  background-color: #fff;
}

.lka_exams_info tr.priority_5 th,
.lka_exams_info tr.priority_5 td {
  background-color: #f7f7f7;
}

.lka_exams_info th.predmet {
  text-align: left;
  text-align: left;
  font-weight: 500;
}

.lka_exams_info thead .minballs {
  font-size: 0.7rem;
}

.examTypes th {
  font-size: 0.7rem;
  font-weight: 500;
}

.specialtyList.agree .row div:first-child {
  font-weight: 600;
  color: green;
}

.specialtyList .priority {
  line-height: 16px;
  color: #fff;
  background-color: #7e7e7e;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

.specialtyList.agree .row div:first-child.priority {
  color: #fff;
}

.smart_doc {
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  padding: 1rem;
}

/*tbody:nth-of-type(odd) {
   background-color: transparent;
}*/
/*tbody:nth-of-type(odd)>tr>*{
	background-color: transparent;
}*/
/*table.bTable tbody tr:nth-of-type(odd)>*{
	background-color: transparent;	
}
table.bTable tbody tr:nth-of-type(even)>*{
	background-color: transparent;	
}*/
.selectAuthType {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
}

.fs-7 {
  font-size: 0.75rem;
}

.fs-8 {
  font-size: 0.6rem;
}

.table {
  /*border: 1px solid grey;*/
  margin-top: 1rem;
}
.table th {
  background-color: gray;
  color: white;
  padding: 1px;
  border-bottom: 1px dotted #ababab;
  vertical-align: middle;
  font-weight: 400;
}
.table td[data-key=commands] {
  border-right-width: var(--bs-border-width);
  border-right-style: dotted;
}

.lka_exams_info th {
  color: black;
  padding: 1px;
  border: 1px solid #000;
}
.lka_exams_info tr {
  color: black;
  border: 1px solid #000;
}

.table-advanced {
  border: 1px solid grey;
  margin-top: 1rem;
}
.table-advanced thead {
  background-color: #ebebeb;
}
.table-advanced td {
  border-bottom-width: 0;
}
.table-advanced td[data-key=commands] {
  border-right-width: var(--bs-border-width);
  border-right-style: dotted;
}
.table-advanced th {
  background-color: gray;
  color: white;
  padding: 1px;
  border: 1px dotted #ababab;
}
.table-advanced thead {
  border-bottom-width: var(--bs-border-width);
}
.table-advanced tbody {
  border-bottom-width: var(--bs-border-width);
}

/*.table tdborder: 1px solid #dee2e6;*/
table[inert] {
  opacity: 0.1;
}

.table tr:last-child td {
  border-bottom-width: 0;
}
.table tr:last-child:has(th) td {
  border-bottom-width: var(--bs-border-width);
}

/*border-left: 0;*/
/*border-left: 1px solid #dee2e6;*/
.table-advanced tbody td:first-child {
  border-left: 0;
}

/* background: #f9f9f9;*/
.teacherCard img.photoCard,
.studentCard img.photoCard,
img.photoCard {
  max-height: 30vh;
  max-width: 30vw;
}

.o-075 {
  opacity: 0.75;
}

footer {
  padding-left: 2rem;
  color: #fff;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 2rem;
  background-color: #464646;
}

footer h2 {
  font-size: 1.2rem;
}

footer h3 {
  font-size: 1rem;
}

footer ul li {
  list-style: none;
}

footer li b {
  font-weight: 500;
}

footer li span {
  opacity: 0.5;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.flexFooter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

div.callme {
  position: fixed;
  right: 13px;
  background-color: #fff;
  bottom: 100px;
  border: 2px solid #ff9620;
  border-radius: 26px;
  width: 52px;
  height: 52px;
  box-shadow: 0px 4px 10px -4px;
  transition: all linear 0.2s;
  overflow: hidden;
}

div.callme .feedbackButton img {
  max-width: 30px;
  max-height: 30px;
  position: absolute;
  top: 3px;
  right: 5px;
  display: none;
  transition: all linear 0.2s;
}

div.callme .feedbackButton span {
  top: 10px;
  position: absolute;
  left: 17px;
  opacity: 0;
  transition: all linear 0.1s;
  width: 8rem;
  font-size: 0.9rem;
}

div.callme .callmeButton span {
  bottom: 12px;
  position: absolute;
  right: 0rem;
  opacity: 0;
  transition: all linear 0.1s;
  width: 8rem;
  font-size: 0.9rem;
}

div.callme .callmeButton img {
  max-width: 30px;
  max-height: 30px;
  position: absolute;
  bottom: 2px;
  left: 3px;
  display: none;
  transition: all linear 0.2s;
}

div.callme.c .callmeButton img {
  display: block;
}

div.callme.c:not(.f) .callmeButton img {
  max-width: 35px;
  max-height: 35px;
  bottom: 6px;
  left: 6px;
}

div.callme.f .feedbackButton img {
  display: block;
}

div.callme.f.c:hover {
  height: 100px;
  width: 180px;
}

div.callme.f.c:hover .callmeButton img {
  max-width: 35px;
  max-height: 35px;
  bottom: 5px;
  left: 7px;
  transform: rotate(16deg);
}

div.callme.f.c:hover .feedbackButton img {
  max-width: 35px;
  max-height: 35px;
  top: 5px;
  right: 9px;
  transform: rotate(-16deg);
}

div.callme.f.c:hover .callmeButton span {
  opacity: 1;
  transition: all linear 0.5s;
}

div.callme.f.c:hover .feedbackButton span {
  opacity: 1;
  transition: all linear 0.5s;
}

div.callme.c:not(.f):hover {
  width: 180px;
}

div.callme.c:not(.f):hover .callmeButton img {
  left: 9px;
}

div.callme.c:not(.f):hover .callmeButton span {
  opacity: 1;
  transition: all linear 0.5s;
}

.w-40 {
  width: 40% !important;
}

/*a.example{
	display: inline-block;
    background: #007bff;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    position: relative;
    margin-left: 10px;
}*/
img.example {
  margin: 0 auto;
  display: block;
}

.custom-file-label {
  overflow: hidden;
}

.custom-file input[type=file] {
  display: none;
}

/*.custom-file .custom-file-label{

}*/
.custom-file .custom-file-label:after {
  color: #fff;
  background: #0d6efd;
  border-color: #0d6efd;
  padding: 0.1rem 0.6rem;
  margin-left: 1rem;
  border-radius: 5px;
  display: inline-block;
}

.custom-file .custom-file-label span {
  color: #929292;
}

.email-element .input-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.email-element .input-group .input-group-append {
  margin-left: -4px !important;
}
.email-element .input-group .input-group-prepend .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.email-element .input-group input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.email-element:has(.is-invalid) .invalid-feedback {
  display: block;
}
.email-element:has(.is-invalid) .input-group-text {
  border: var(--bs-border-width) solid var(--bs-form-invalid-border-color);
  color: var(--bs-form-invalid-border-color);
}

.input-group-append button {
  border: 0;
  display: inline-block;
  height: 1.8rem;
}

a.fas {
  text-decoration: none;
}

.invalid-feedback {
  margin-top: 0;
}

.noScansDanger i.fa-solid {
  font-size: 1.5rem;
  position: relative;
  top: 0.2rem;
}

.form-control.referenceInput[readonly] {
  background-color: #ffffff;
}

.iLK_bb {
  border-bottom: 1px solid #000;
}

.mytooltip {
  position: relative;
}

.tooltipInner {
  position: absolute;
  font-size: 0.6rem;
  color: #fff;
  background-color: rgba(33, 150, 243, 0.95);
  padding: 0.4rem;
  border-radius: 0.3rem;
  bottom: calc(100% + 0.5rem);
  left: 0;
  white-space: nowrap;
  font-family: arial;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.tooltipInner.show {
  opacity: 1;
}

.text-danger .tooltipInner {
  background-color: rgba(220, 53, 69, 0.95);
}

.tooltipInner:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 26px);
  /*left: 50%;*/
  border-top: 0px solid rgba(33, 150, 243, 0.95);
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 0;
  opacity: 1;
  transition: all 0.2s;
  transition-delay: 0.3s;
}

.tooltipInner.show:after {
  left: 50%;
  border-left: 4px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid rgba(33, 150, 243, 0.95);
  bottom: -7px;
}

.text-danger .tooltipInner:after {
  border-top: 7px solid rgba(220, 53, 69, 0.95);
}

.alertFeedBack {
  position: fixed;
  top: 1rem;
  right: 1rem;
  box-shadow: 1px 6px 10px -7px #000;
  z-index: 1000;
}

.lockinvisible {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.abitIDs small.statusBar {
  position: absolute;
  top: 5px;
  right: 4rem;
}

.education_doc .specialtyCont {
  display: none;
}

.lockedBlock {
  opacity: 0.3;
}

.disabled {
  opacity: 0.3;
}

.suggestions-promo {
  display: none !important;
}

.select2-container {
  display: block;
}

a.gotoup {
  position: fixed;
  transition: bottom 0.5s, opacity 0.5s;
  bottom: -3rem;
  left: 3rem;
  background-color: rgba(255, 255, 255, 0.88);
  display: block;
  border-radius: 11%;
  box-shadow: 0rem 0rem 0.4rem -0.2rem #000000;
  opacity: 0;
  z-index: 1000;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  border: 1px solid #1e8bff;
}

a.gotoup span {
  display: none;
}

a.gotoup.showed {
  opacity: 1;
  bottom: 3rem;
}

img.modalImg {
  margin: 0 auto;
  display: block;
}

form.frm-input-fias {
  padding: 0.7rem;
  border-radius: 0.25rem;
  border-style: solid;
  border-width: thin;
  border-color: transparent;
}

.select2-container {
  width: 100%;
  outline: none;
}

.select2-container .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.5;
  padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: calc(50% - 0.8rem);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline-color: #fdfdfd;
  border-radius: 0.25rem;
}

textarea.inoAddr {
  width: calc(100% - 2rem);
  margin-left: 1rem;
}

.newFiasString {
  position: relative;
}

.newFiasString .fromAddressString_new {
  padding-right: 5rem;
  background-image: url();
}

.newFiasString .searchFias,
.newFiasString .resetFias {
  position: absolute;
  top: 5%;
  right: 0.1rem;
  height: 90%;
  line-height: 1;
}

table.table1c td {
  vertical-align: top !important;
}

table.table1c tr td:first-child {
  padding-left: 20px;
}

small.note {
  color: #8f8f8f;
}

a.referenceOpen {
  text-decoration: none;
  height: 100%;
}

fieldset.bordered {
  border: 1px solid #dddada;
  border-radius: 0.3rem;
  padding: 1rem;
}

fieldset.bordered > legend {
  display: inline;
  width: auto;
  padding: 0rem 0.5rem;
  margin: 0rem 0rem 0rem 1rem;
  font-weight: 500;
  position: relative;
  top: -1rem;
  left: -1rem;
  border-bottom: 1px solid #ededed;
  display: block;
  width: 100%;
}

.table1c tbody {
  position: relative;
  /*display: block;*/
  padding-left: 20px;
}

.table1c tbody .deleteTableRowButton {
  display: block;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  margin-top: 0px;
  left: -5px;
  width: 30px;
  color: red;
  padding: 0px 0px 3px 0px;
  /*font-size: 2em;*/
  font-weight: 600;
  display: none;
  border: 0px;
  background: transparent;
}

.table1c tbody:hover .deleteTableRowButton {
  display: block;
}

.accordion > .card {
  overflow: visible;
}

table td {
  vertical-align: middle !important;
}

table .results td {
  border-top-width: var(--bs-border-width);
}

.custom-file-label:after {
  content: "Выбрать";
}

a,
button,
button:focus {
  outline: 0;
  outline-color: transparent;
}

.hiddenEl {
  display: none;
}

.input-group-text .eye img {
  margin: -6px -5px;
  cursor: pointer;
}

input[type=password] + .showPassword .eye.open {
  display: none;
}

input[type=text] + .showPassword .eye.hidden {
  display: none;
}

button.rm {
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  top: 1px;
}

.egeTR.retake td:first-child:before {
  content: "";
  background-image: url(/static/img/retake2.svg);
  max-width: 18px;
  max-height: 18px;
  width: 20px;
  height: 20px;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
  opacity: 0.5;
  margin-right: 6px;
}

.fullscreenloader,
.translateloader {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all linear 1s;
  z-index: 100;
}

.fullscreenloader .spinner-border,
.translateloader .spinner-border {
  width: 5rem;
  height: 5rem;
  top: calc(50% - 2.5rem);
  position: absolute;
}

.translateloader {
  display: none;
  background: rgba(255, 255, 255, 0.62);
}

.fileCategory :not(.uploadedFile) .deleteButton {
  margin-top: 32px;
}

.fileCategory .uploadedFile .deleteButton {
  margin-top: 0px;
}

.labelInfo {
  color: #999;
}

.addSubmissionButton {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 0.2rem;
  /* box-shadow: 0px 4px 37px -13px #000; */
  transition: all linear 0.5s;
  z-index: 100;
}

button.btn-block {
  display: block;
  width: 100%;
}

.addSubmissionButton.hiddenButton {
  opacity: 0;
  bottom: -100px;
}

.statementsLE {
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
}

.statementsLE:hover {
  background-color: #f5f5f5;
  border: 1px solid #b1adad;
  background-color: #f5f5f5;
  box-shadow: 0px 3px 17px -6px #000;
}

.statementsLE li .hasAgree {
  position: relative;
  top: 0.3rem;
}

/*.statementsLE h4{
	text-decoration: underline;
}*/
.statementsLE .stateMarker,
.stateProfile {
  /*width: 20px;*/
  height: 20px;
  position: relative;
  top: -1px;
  margin: 0px 5px 0px 0px;
  border-radius: 10px;
  border: 0px;
  color: white;
  font-size: 0.7rem;
}

li.profileList {
  list-style: none;
}

.statementsLE .state0 .stateMarker,
.stateProfile.state0 {
  background-color: #3e51ff;
}

.statementsLE .state50 .stateMarker,
.stateProfile.state50 {
  background-color: #6a6a6d;
}

.statementsLE .state1 .stateMarker,
.stateProfile.state1 {
  background-color: #ffd13b;
}

.statementsLE .state2 .stateMarker,
.stateProfile.state2 {
  background-color: #62c511;
}

.statementsLE .state3 .stateMarker,
.stateProfile.state3 {
  background-color: #ff3600;
}

.statementsLE .state4 .stateMarker,
.stateProfile.state4 {
  background-color: #ececec;
}

.statementsLE .state5 .stateMarker,
.stateProfile.state5 {
  background-color: #ddff00;
}

.accordion-item.unfilled {
  opacity: 0.7;
}

.statementsLE li.specialtyList {
  border: 1px solid #c0c0c0 !important;
  border-radius: 5px !important;
  box-shadow: 0px 5px 15px -10px #000;
  margin-bottom: 2rem;
}

li.specialtyList {
  position: relative;
}

li.specialtyList button,
li.specialtyList a {
  line-height: 1;
}

li.specialtyList button.button-info-statement {
  position: absolute;
  right: 5px;
  top: 16px;
}

li.specialtyList a.button-info-statement {
  position: absolute;
  right: 5px;
  top: 18px;
}

li.specialtyList .row1 {
  padding-right: 90px;
}

li.specialtyList .row1 .profile {
  color: #696969;
  margin-left: 0.7rem;
}

li.specialtyList .row1 .osnova {
  color: #008074;
  margin-left: 0.7rem;
}

li.specialtyList .row1 .forma {
  color: #ce7b00;
  margin-left: 0.7rem;
}

li.specialtyList .row1 .cq {
  color: #2196f3;
  margin-left: 0.7rem;
}

li.specialtyList .row1 .oq {
  color: #2196f3;
  margin-left: 0.7rem;
}

li.specialtyList .row1 .specNabor {
  margin-left: 0.7rem;
}

a.cancelStatementTrash {
  position: absolute;
  right: 28px;
  top: 18px;
}

.dropSmartInput,
.dropAddress {
  position: relative;
  z-index: 10000;
}

.dropSmartInput .list-group,
.dropAddress .list-group {
  position: absolute;
  display: none;
}

.dropSmartInput.dropped .list-group,
.dropAddress.dropped .list-group {
  display: block;
}

.content .addressCard {
  overflow: visible;
}

/*.drop .dropAddress{

}*/
.linkLogo {
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.only_mobile {
  display: none;
}

.only_desktop {
  display: unset;
}

.table {
  /*.placeHolderDetailzation {
  	color: #198754;
  	text-align: center;
  }*/
}
.table.detalized tr:has(.detailsCommand.filled) td {
  background-color: var(--bs-green);
}
.table.detalized tr:has(.detailsCommand.filled) td .detailsCommand {
  color: #fff;
}
.table.detalized tr:has(.inputReference .el.filled) td {
  background-color: var(--bs-teal);
}
.table.detalized tr:has(.inputReference .el.filled) td .detailsCommand {
  color: #fff;
}
.table .iserror {
  color: var(--bs-yellow);
}
.table .iserror input {
  color: var(--bs-yellow);
  border: var(--bs-border-width) solid var(--bs-yellow);
}
.table .overflow {
  color: var(--bs-red);
}
.table .overflow input {
  color: var(--bs-red);
  border: var(--bs-border-width) solid var(--bs-red);
}
.table.detalized tr:has(.detailsCommand.iserror) td {
  background-color: var(--bs-yellow) !important;
}
.table.detalized tr:has(.detailsCommand.iserror) td.i-bg-color-lightgreen {
  background-color: rgb(214, 252, 0) !important;
}
.table.detalized .detailsCommand {
  --iLK_detailedColor: #6c757d;
  color: var(--iLK_detailedColor);
  /*&.filled {
  	--iLK_detailedColor: #198754;
  }

  &.iserror {
  	--iLK_detailedColor: var(--bs-danger);
  }*/
}

tr:has(th) td {
  border-bottom-width: var(--bs-border-width);
}

@media screen and (max-width: 1200px) {
  .only_mobile {
    display: unset;
  }
  .only_desktop {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */