@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900;1000&display=swap");
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  scroll-behavior: smooth;
  overflow: auto;
  background-color: #EEEEF1;
}

html {
  overflow: hidden;
}

html,
body {
  height: 100%;
}

::selection {
  background-color: #3390ff;
  color: #ffffff;
}

:root {
  --yellow: #ffea0b;
  --yellow-hover: #fff032;
  --red: #da0000;
  --red-hover: rgb(195, 0, 0);
  --lightgray: #f1f0f3;
  --lightgray-1: #e2e2e2;
  --darkgray: #454545;
  --green: #4da027;
  --black: #252525;
  --lightblue: #5790ff;
  --purple: #7f1095;
  --purple-hover: #aa10c8;
  --primary-color: var(--purple);
  --primary-color-hover: var(--purple-hover);
  --filter: blur(30px);
  --unread: #f9f4c5;
}

@font-face {
  font-family: e-Ukraine;
  src: url("/assets/fonts/e-Ukraine/e-Ukraine-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: e-Ukraine;
  src: url("/assets/fonts/e-Ukraine/e-Ukraine-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: e-Ukraine;
  src: url("/assets/fonts/e-Ukraine/e-Ukraine-Light.otf");
  font-weight: 100;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: black;
}

ul li {
  list-style: none;
}

form {
  margin: 0;
}

span {
  font-family: "e-Ukraine", Arial;
  font-weight: 100;
}

label {
  font-family: "e-Ukraine", Arial;
}
@media only screen and (max-width: 768px) {
  label {
    font-size: 14px;
  }
}

input,
select,
button,
.checkbox-wrap {
  user-select: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=range] {
  cursor: pointer;
  height: 2px;
}

.disabled {
  border: 0px;
  background-color: transparent;
  cursor: default;
}
.disabled:hover {
  background-color: transparent;
}

.right-top-btn i {
  margin-right: 4px;
}

h1 {
  margin: 0;
  font-weight: bold;
  font-family: "E-UKRAINE", Arial;
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 18px;
  }
}

h2, h3, h4, h5, h6, ul, p {
  margin: 0;
  padding: 0;
  font-family: Arial;
}

i {
  margin: 0 4px;
}

.link {
  text-decoration: underline;
}

input:focus,
select:focus,
textarea {
  outline: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.template-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.template-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.template-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.template-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex-gap {
  display: flex;
  gap: 8px;
}

.column {
  flex-direction: column;
}

.gap {
  gap: 8px;
}

.vertical-center {
  align-items: center;
}

.horizontal-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.full-width {
  width: 100%;
}

.fit-width {
  width: fit-content;
}

.stretch {
  align-items: stretch;
}

.right {
  margin-left: auto;
}

.text-right {
  text-align: right;
}

.left {
  margin-right: auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.padding {
  padding: 10px;
}

.glow {
  filter: drop-shadow(0px 0px 10px white);
}

.vertical-margin {
  margin-top: 8px;
  margin-bottom: 8px;
}

.horizontal-margin {
  margin-left: 8px;
  margin-right: 8px;
}

.text {
  font-family: "e-Ukraine";
  font-weight: bold;
}

.or::after, .or::before {
  content: "";
  display: flex;
  height: 1px;
  background: rgba(0, 0, 0, 0.5019607843);
  width: 100%;
  margin: 0 10px;
}

table {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  font-family: Dosis;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}
table thead {
  background: #101946;
}
table th, table td {
  font-weight: 100;
  font-size: 14px;
  padding: 6px;
  text-wrap: nowrap;
  color: black;
  font-family: "e-Ukraine";
}
table th {
  cursor: pointer;
  text-align: start;
  white-space: nowrap;
  color: white;
  border-color: #101946;
}

.button {
  appearance: none;
  background: var(--lightgray-1);
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-family: "e-Ukraine", Arial;
  transition: background 0.4s;
  text-align: center;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 0 2px rgba(103, 103, 103, 0.3803921569);
  background-color: var(--yellow);
}
.button:hover {
  background: var(--yellow-hover);
}
.button.critical {
  background-color: var(--red);
  color: white;
}
.button.critical:hover {
  background: var(--red-hover);
}
.button.orange {
  background: rgb(255, 166, 0);
  color: white;
}
.button.orange:hover {
  background: rgb(182, 118, 0);
}
.button.yellow {
  background: var(--yellow);
  font-size: 14px;
  color: black;
}
@media only screen and (max-width: 768px) {
  .button {
    padding: 12px 18px;
    font-size: 12px;
  }
}

.online {
  color: var(--green);
}

.offline {
  color: var(--darkgray);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0;
  border: 1px solid var(--lightgray-1);
  padding: 20px;
  padding-top: 40px;
}

.form input[type=text], .form input[type=password], .form input[type=email], .form textarea, .form input[type=number], .form input[type=tel] {
  border: none;
  height: 32px;
  width: 100%;
  border-left: 1px solid black;
  border-radius: 0;
}
.form button[type=submit] {
  background: var(--yellow);
  border: none;
  padding: 14px 26px;
  cursor: pointer;
  font-family: "e-Ukraine", Arial;
  transition: background 0.4s;
  color: black;
  font-size: 14px;
  border-radius: 9px;
  box-shadow: 0 0 6px rgba(103, 103, 103, 0.3803921569);
}
.form button[type=submit].disabled {
  background: #b0a427;
  pointer-events: none;
  cursor: none;
}
.form button[type=submit]:hover {
  background: #efdb00;
}

#content {
  min-height: 100vh;
  position: relative;
  padding: 10px 20px;
  overflow: hidden;
  overflow-x: scroll;
}
@media only screen and (max-width: 768px) {
  #content {
    padding: 10px;
  }
}

.content--couple {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .content--couple {
    display: flex;
    flex-direction: column;
  }
}

.content--container.--first {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-wrap: wrap;
  background: #EEEEF1;
}
@media only screen and (max-width: 768px) {
  .content--container.--first {
    padding: 0px;
  }
}
.content--container.--second {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background: #5955f4;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .content--container.--second {
    display: none;
  }
}
.content--container.--inside {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 1000px) {
  .content--container.--inside {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .content--container.--inside {
    width: 90%;
    padding: 20px 0;
  }
}

#first--form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-container {
  position: relative;
}
.input-container label {
  font-family: e-Ukraine;
  font-size: 14px;
  position: absolute;
  top: 8px;
  padding: 0 10px;
  pointer-events: none;
  transition: 0.4s;
}
.input-container label.focused {
  top: -20px;
  padding: 0px;
}
@media only screen and (max-width: 768px) {
  .input-container label {
    font-size: 14px;
  }
}
.input-container input[type=text],
.input-container input[type=password],
.input-container input[type=email],
.input-container input[type=number],
.input-container input[type=tel] {
  padding: 0 10px;
  font-size: 14px;
  height: 42px;
}
@media only screen and (max-width: 768px) {
  .input-container input[type=text],
  .input-container input[type=password],
  .input-container input[type=email],
  .input-container input[type=number],
  .input-container input[type=tel] {
    font-size: 14px;
  }
}
.input-container textarea {
  padding: 8px 10px;
  max-width: 100%;
  min-width: 100%;
  min-height: 100px;
  font-family: "e-Ukraine", Arial;
  font-weight: 100;
  font-size: 14px;
}

.checkbox-container,
.radio-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.checkbox-selector-container,
.radio-selector-container {
  position: absolute;
  background: white;
  width: 100%;
  padding: 10px;
  z-index: 999;
  overflow: hidden;
  display: none;
  top: 0;
  box-shadow: 0 0 1px 0 black;
}
.checkbox-selector-container.opened,
.radio-selector-container.opened {
  display: block;
}

.checkbox-selector,
.radio-selector {
  overflow-y: scroll;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}

.checkbox-element,
.radio-element {
  width: 100%;
  display: flex;
  position: relative;
}
.checkbox-element input,
.radio-element input {
  display: none;
}
.checkbox-element input:checked + label,
.radio-element input:checked + label {
  border-color: black;
}
.checkbox-element label,
.radio-element label {
  width: 100%;
  cursor: pointer;
  font-family: Helvetica;
  font-size: 14px;
  padding: 10px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.checkbox-name,
.radio-name {
  font-family: e-Ukraine;
  font-size: 14px;
  position: relative;
  padding: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  word-break: auto-phrase;
}

.file-container {
  position: relative;
}
.file-container label {
  display: flex;
  justify-content: space-between;
  font-family: "e-Ukraine";
  font-size: 14px;
  padding: 0px;
  position: absolute;
  top: -20px;
}

input[type=file] {
  width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border: none;
}
input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
input[type=file]::file-selector-button:hover {
  background: #0d45a5;
}

.container-label {
  padding: 14px 0;
  font-weight: 300;
  font-size: 22px;
}
.container-label a {
  text-decoration: underline;
  padding: 0 10px;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .container-label a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .container-label {
    font-size: 16px;
  }
}

.row-image {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.row-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.page-label {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}

input:read-only:not(input[type=file]) {
  background-color: #e6e6e6;
}

.data-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.data-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid black;
  min-height: 68px;
  padding: 16px;
  border: none;
  box-shadow: 0 0 6px rgba(103, 103, 103, 0.3803921569);
  border-radius: 9px;
}
.data-container.unread {
  background-color: var(--unread);
}

.order-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status {
  display: flex;
  gap: 4px;
}

.order-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .order-info {
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }
}

.status-name {
  color: white;
  font-size: 14px;
  background: black;
  padding: 2px 4px;
  border-radius: 9px;
  font-size: 12px;
  padding: 4px 8px;
}

.file-image {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.file-image img {
  max-height: 100%;
}

.container {
  margin: 20px 0;
  max-width: 100%;
  overflow-x: scroll;
}

.download {
  border: none;
  font-size: 24px;
  color: var(--lightblue);
  font-family: "e-Ukraine";
  cursor: pointer;
}

.info-container {
  max-width: 500px;
  border: 1px solid var(--lightgray-1);
  margin: 20px 0;
  padding: 10px;
  box-shadow: 0 0 10px var(--lightgray-1);
  border-radius: 12px;
}

.separator {
  height: 1px;
  width: 100%;
  background-color: var(--lightgray-1);
  margin: 4px 0;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  border-bottom: 1px solid var(--lightgray-1);
  gap: 8px;
}
header nav ul {
  display: flex;
  gap: 2px 18px;
  align-items: center;
  flex-wrap: wrap;
}
header nav ul li {
  font-size: 16px;
  font-family: "e-Ukraine";
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  border: none;
  background: none;
}
header nav ul li .menu-item {
  font-size: 16px;
  font-family: "e-Ukraine";
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  border: none;
  background: none;
}
header nav ul li .menu-item::after {
  content: "";
  width: 0%;
  margin: 0 auto;
  height: 1px;
  background: black;
  display: block;
  transition: 0.5s;
}
header nav ul li .menu-item:hover::after {
  width: 100%;
}
header nav ul .current .menu-item::after {
  width: 100%;
}
header .header-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .header-container-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header-container-branding .icon {
  cursor: pointer;
}
header .header-container-branding .icon a {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-container-branding .icon a img {
  height: 32px;
  border-radius: 5px;
}
header .header-container.mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  header .header-container.mobile {
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  header .header-container {
    display: none;
  }
}
header .button.yellow {
  height: 46px;
}
header .old-button {
  height: 46px;
}
@media only screen and (max-width: 768px) {
  header .website-language {
    display: none;
  }
}

#manager_menu_btn {
  border: 1px solid black;
  padding: 4px 8px;
  cursor: pointer;
  position: relative;
  width: 140px;
}

.old-button {
  border: 1px solid black;
  background: transparent;
  font-family: "e-Ukraine", Arial;
  padding: 6px 12px;
  cursor: pointer;
  height: 46px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(103, 103, 103, 0.3803921569);
  /*&:hover {
      .text {
          filter: invert(1);
          transition: filter 0.3s;
      }
  }

  &:hover {
      .curtain {
          height: 100%;
      }
  }*/
}
.old-button i {
  font-size: 16px;
  color: black;
}
.old-button.small {
  height: 30px;
  width: 30px;
  border-radius: 9px;
}
.old-button .curtain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  display: block;
  background-color: black;
  transition: height 0.3s;
}

.logout-button {
  font-size: 16px;
  font-family: "e-Ukraine";
  font-weight: 300;
  border: none;
  background: none;
  cursor: pointer;
}

.sub-menu {
  display: none;
  position: absolute;
  margin-top: 6px;
  z-index: 999;
  flex-direction: column;
  background: var(--lightgray);
  gap: 12px;
  padding: 12px 18px;
  transform: translate(-18px, 0);
  box-shadow: 0px 20px 20px 1px rgba(116, 116, 116, 0.2);
  border: none;
  margin-top: -33px;
}
.sub-menu .header {
  border-bottom: 1px solid var(--lightgray-1);
  padding-bottom: 9px;
}

.sub-menu-open {
  font-family: "e-Ukraine", Arial;
  font-weight: 100;
  border: none;
  font-size: 16px;
  padding: 0;
  cursor: pointer;
  margin-bottom: 2px;
}

.website-language {
  font-size: 3ch;
  border: none;
  background: none;
  cursor: pointer;
}
.website-language i {
  color: black;
}

.short-desc {
  font-size: 12px;
  color: gray;
  margin-top: 120px;
  width: 100%;
  text-align: center;
}

.splash-container {
  position: fixed;
  bottom: 20px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.splash-container .splash {
  display: flex;
  font-size: 16px;
  max-width: 400px;
  border: 1px solid black;
  padding: 10px;
  background: var(--lightgray);
  box-shadow: 0 0 10px var(--lightgray);
}

.modal-container {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.1411764706);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.modal-container .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 1px 0px black;
  border: 1px solid black;
  padding: 20px;
  background-color: #EEEEF1;
  max-width: 90%;
  max-height: 90%;
}
.modal-container .modal .modal-content {
  min-width: 300px;
}
.modal-container .modal .modal-content form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-container .modal .modal-content form textarea {
  max-height: 400px;
  max-width: 100%;
}
.modal-container .modal .modal-content form button[type=submit] {
  width: 100%;
}

#search {
  padding-top: 10px;
}
#search input {
  width: 100%;
  border: 1px solid var(--darkgray);
  padding: 6px 12px;
  height: 46px;
  font-size: 14px;
  background-color: transparent;
  border: none;
  box-shadow: 0 0 6px rgba(103, 103, 103, 0.3803921569);
  border-radius: 9px;
}

.language-checkbox-container {
  width: 100%;
  display: flex;
  position: relative;
}
.language-checkbox-container label {
  width: 100%;
  cursor: pointer;
  font-family: Helvetica;
  font-size: 14px;
  padding: 10px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.language-checkbox-container input {
  display: none;
}
.language-checkbox-container input:checked + label {
  border-color: black;
}

.hourglass::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f251";
  animation: hourglass-animation 1.5s infinite;
  display: inline-block;
}
@keyframes hourglass-animation {
  0% {
    content: "\f251";
  }
  33% {
    content: "\f252";
  }
  66% {
    content: "\f253";
    transform: rotate(0deg);
  }
  99% {
    content: "\f253";
    transform: rotate(180deg);
  }
}

.toggle-text {
  font-size: 14px;
}

.filename {
  padding: 6px 8px;
  box-shadow: 0 0 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial;
  font-size: 14px;
  color: var(--darkgray);
}

.file-delete,
.file-change {
  font-size: 12px;
  color: #004dd7;
  cursor: pointer;
  font-family: Arial;
  border: none;
  border-bottom: 1px solid #004dd7;
  padding: 2px 4px;
  transition: background-color 0.4s, color 0.4s;
}

.file-delete {
  color: rgb(191, 0, 0);
  border-color: rgb(191, 0, 0);
}

.file-change:hover {
  color: #002871;
  border-color: #002871;
}

.file-delete:hover {
  color: rgb(114, 0, 0);
  border-color: rgb(114, 0, 0);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 8px;
}

#download-app button {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  bottom: 25vh;
  animation: buttonSlideIn 1.3s ease-out forwards;
}
@keyframes buttonSlideIn {
  0% {
    bottom: -1000vh;
  }
  100% {
    bottom: 25vh;
  }
}
#download-app .mockup {
  position: absolute;
  bottom: 0;
  height: 80vh;
  animation: mockupSlideIn 1s ease-out forwards;
}
@keyframes mockupSlideIn {
  0% {
    bottom: -500vh;
  }
  100% {
    bottom: 0;
  }
}

.about-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.about-container li {
  background: var(--lightgray-1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.services-container li {
  background: var(--lightgray-1);
  padding: 12px;
  border-radius: 12px;
}

.languages-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.languages-container li {
  background: var(--lightgray-1);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
}

.prices-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prices-container li {
  background: var(--lightgray-1);
  padding: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prices-container li .price {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .about-container,
  .services-container,
  .prices-container,
  .languages-container {
    display: flex;
    flex-direction: column;
  }
}

#main {
  height: 100vh;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.block {
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}
.block:not(#main)::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--lightgray-1);
  display: block;
}
@media only screen and (max-width: 768px) {
  .block {
    padding: 0 10px !important;
    flex-direction: column !important;
  }
}

h2 {
  font-family: "e-Ukraine";
  font-size: 28px;
}

.title-hint {
  font-size: 14px;
  color: var(--darkgray);
  font-family: "e-Ukraine";
}

.to_copy {
  text-decoration: underline dotted;
  font-family: Arial;
  font-size: 16px;
  cursor: pointer;
}

.notice {
  padding: 10px 20px;
  background: #ae2432;
  text-align: center;
  color: white;
  display: block;
  font-family: E-ukraine;
}

#languages {
  max-height: 400px;
  overflow: hidden;
  overflow-y: scroll;
}

.ql-editor {
  min-height: 200px;
}

.strip {
  border-left: 2px solid black;
  padding: 10px;
}

.chat {
  width: 100%;
  height: 90%;
  margin: 0 auto;
  margin-top: 20px;
  border: 1px solid var(--lightgray-1);
  padding: 10px;
}
.chat .chat-element {
  border-top: 1px solid var(--lightgray-1);
  padding: 4px;
}
.chat .chat-message {
  padding-bottom: 4px;
}
.chat .chat-list {
  height: 100%;
  overflow-y: scroll;
}
.chat .chat-info {
  border-left: 1px solid black;
  padding-left: 4px;
  color: var(--darkgray);
  font-size: 14px;
}

.sidebar {
  top: 0;
  background: var(--lightgray);
  height: 100%;
  position: absolute;
  width: 100%;
  padding: 10px;
  z-index: 999;
  transition: all 400ms;
  left: -2000px;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.sidebar.opened {
  left: 0;
  opacity: 100%;
}
.sidebar .sidebar-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.sidebar-content ul {
  margin-top: 10px;
}
.sidebar-content ul li.section-title {
  font-weight: bold;
}
.sidebar-content ul li a {
  padding: 12px;
  display: block;
}

.header-buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.table {
  overflow: hidden;
  overflow-x: scroll;
}

.landing-title-container {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 0 4%;
}
.landing-title-container h1 {
  color: black;
  font-size: clamp(16px, 2vw, 2rem);
  font-weight: 400;
  font-family: e-Ukraine;
}
@media only screen and (max-width: 768px) {
  .landing-title-container {
    width: 100%;
  }
}

.landing-image-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .landing-image-container {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .contacts-block {
    display: none !important;
  }
}

.contacts-block,
.login-btn {
  position: relative;
  height: 46px;
}
.breadcrumbs {
  margin-bottom: 6px;
  color: var(--darkgray);
}
.breadcrumbs a {
  font-size: 14px;
}
.breadcrumbs i {
  font-size: 14px;
  margin: 0;
}

.image-gallery {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5294117647);
  transform: scale(0);
  cursor: pointer;
}
.image-gallery img {
  max-width: 80%;
  max-height: 80%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease;
}
.image-gallery-wrapper {
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-gallery.opened {
  transform: scale(1);
}
.image-gallery.opened img {
  transform: translate(-50%, -50%) scale(1);
}

.footer-contacts-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 768px) {
  .footer-contacts-block {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.icon {
  display: flex;
}

.container-404 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 560px;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.letter-group h3 {
  color: #333;
  margin: 10px;
}

.file-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 10px 0;
}

.rate-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 10px;
  padding: 20px;
  max-width: 500px;
}
.rate-container span i {
  font-size: 24px;
  cursor: pointer;
}

.chat-container {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  max-height: 78vh;
}
@media (max-width: 720px) {
  .chat-container {
    width: 100%;
    height: 80vh;
  }
}
.chat-container .chat-header {
  width: 100%;
}
.chat-container .chat-header .chat-info {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 9px;
  background: var(--lightgray);
  position: relative;
}
@media (max-width: 720px) {
  .chat-container .chat-header .chat-info {
    flex-direction: column;
  }
  .chat-container .chat-header .chat-info .right {
    justify-content: space-between;
    width: 100%;
  }
}
.chat-container .chat-header .chat-info .user-info {
  display: flex;
  gap: 10px;
}
.chat-container .chat-header .chat-info .user-info .user-image {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.chat-container .chat-header .chat-info .user-info .user-image img {
  height: 100%;
  width: auto;
  border-radius: 90%;
}
.chat-container .chat-header .chat-info .user-info .user-name {
  display: flex;
  align-items: center;
}
@media (max-width: 720px) {
  .chat-container .chat-header .chat-info .user-info .user-name {
    padding: 10px 0;
  }
}
.chat-container .chat-header .chat-info .classified-info {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  border-right: 1px solid var(--lightgray-1);
  border-left: 1px solid var(--lightgray-1);
  padding: 0 20px;
}
.chat-container .chat-header .chat-info .classified-info .classified-name {
  font-size: 14px;
}
.chat-container .chat-header .chat-info .classified-info .classified-image {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.chat-container .chat-header .chat-info .classified-info .classified-image img {
  height: 100%;
  width: auto;
}
.chat-container .messages-list {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  background: white;
  box-shadow: inset 0px 0px 10px rgba(117, 117, 117, 0.5);
  border-radius: 9px;
  margin: 10px 0;
  overflow-y: scroll;
  padding: 20px;
  max-height: 650px;
  gap: 10px;
  min-height: 60vh;
}
@media (max-width: 720px) {
  .chat-container .messages-list {
    max-height: 58vh;
  }
}
.chat-container .messages-list .message ._body {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex-direction: column;
}
.chat-container .messages-list .message ._body ._content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-container .messages-list .message ._body ._text {
  background-color: var(--lightgray);
  width: fit-content;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3215686275);
  position: relative;
}
.chat-container .messages-list .message ._body ._time {
  overflow: hidden;
  display: flex;
  font-size: 14px;
}
.chat-container .messages-list .message .info {
  padding: 0 10px;
  font-size: 12px;
  text-align: end;
  width: 100%;
  display: block;
}
.chat-container .messages-list .message.incoming {
  margin-right: auto;
}
.chat-container .messages-list .message.incoming ._content {
  flex-direction: row-reverse;
}
.chat-container .messages-list .message.incoming ._body {
  align-items: start;
}
.chat-container .messages-list .message.outgoing {
  margin-left: auto;
}
.chat-container .messages-list .message.outgoing ._body {
  align-items: end;
}
.chat-container .messages-list .message .delete-btn {
  background: red;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  width: 0;
  overflow: hidden;
  cursor: pointer;
}
.chat-container .messages-list .message:hover .delete-btn {
  width: 24px;
}
.chat-container .messages-list .date {
  width: 100%;
  text-align: center;
  margin: 10px 0;
  font-size: 14px;
  color: gray;
}
.chat-container .message-input {
  margin-top: auto;
}
@media (max-width: 720px) {
  .chat-container .message-input {
    position: fixed;
    bottom: 85px;
    width: 100%;
    left: 0;
    padding: 10px 20px;
    background: var(--lightgray);
    bottom: 60px;
  }
}
.chat-container .message-input .message-field {
  display: flex;
  border-radius: 9px;
  box-shadow: 0 0 1px black;
  background-color: white;
}
.chat-container .message-input .message-field textarea {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 9px;
  padding: 10px;
  padding-top: 15px;
  font-family: "e-Ukraine";
  resize: none;
}
.chat-container .message-input .message-field .attach {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

table tr {
  border: 1px solid #ddd;
  padding: 0.35em;
}

table th,
table td {
  padding: 0.625em;
  text-align: center;
  text-wrap: wrap;
}

table th {
  font-size: 0.85em;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }
  table caption {
    font-size: 1.3em;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 50%;
    text-align: left;
    margin-right: 10px;
  }
  table td:last-child {
    border-bottom: 0;
  }
  .image-name {
    justify-content: end;
  }
}
/* general styling */
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

input[type=time] {
  border: none;
  height: 24px;
  box-shadow: 0 0 12px rgba(156, 156, 156, 0.3490196078);
  border-radius: 12px;
  padding: 4px;
}

/*# sourceMappingURL=style.css.map */
