@font-face {
  font-family: Cyberpunk;
  src: url("/assets/fonts/Cyberpunk_RUS_BY_LYAJKA.ttf") format("truetype");
}
@font-face {
  font-family: Typewritter;
  src: url("/assets/fonts/SpecialElite (Rus by Lomzz).ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* prevent tap highlight color / shadow */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  background-color: #050A0E;
  color: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: scroll;
}

.backtomain {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
  text-decoration: none;
  color: #050A0E;
  background-color: #FF003C;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
}

.content-wrapper {
  max-width: 350px;
  width: 100%;
  height: 100%;
}

section {
  border: solid 3px #FCEE09;
  width: 100%;
  padding: 8px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
section.police {
  border-color: #00F0FF;
  color: #00F0FF;
}
section:first-child {
  margin-top: 10px;
}
section .username {
  display: block;
  margin-bottom: 10px;
}

.login-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.police h2 {
  font-family: Cyberpunk;
  font-weight: 400;
  font-style: normal;
}
.police .band {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-height: 60px;
  border: solid 1px #00F0FF;
  padding: 4px;
  margin-bottom: 2px;
}
.police .band img {
  height: 50px;
  width: auto;
}
.police .band .name {
  display: block;
  width: 100%;
  height: 100%;
  text-align: end;
}
.police .band .pos {
  margin-right: 10px;
}

.news {
  position: relative;
}
.news h2, .news h4, .news .allnews {
  font-family: "Typewritter", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.news .new {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
  padding: 5px;
  border-bottom: solid 5px #FCEE09;
  margin-bottom: 5px;
}
.news .new img {
  width: 100%;
  height: auto;
}
.news .allnews {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  align-self: center;
  color: white;
  height: 45px;
  background-color: transparent;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 2px;
  font-style: normal;
  border: solid 5px #FF003C;
  margin: 5px 0;
  transition: all linear 0.1s;
}

.contracts {
  padding: 3px;
}
.contracts__block:nth-child(2) {
  border-top: solid 3px #FCEE09;
  margin-top: 3px;
}
.contracts__personal, .contracts__public {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-start;
}
.contracts .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: solid 1px #FCEE09;
  margin-bottom: 4px;
  transition: all linear 0.3s;
}
.contracts .item img {
  height: 55px;
  width: auto;
}
.contracts .item__header-wrapper, .contracts .item__price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
  position: relative;
}
.contracts .item .quest-accepted {
  position: absolute;
  top: 20px;
  right: 5px;
  width: 25px;
  height: auto;
  visibility: visible;
  /*&.accepted{
      visibility: visible;
  }*/
}
.contracts .item__title-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contracts .item__sender {
  color: #00F0FF;
}
.contracts .item__price {
  color: #FF003C;
  margin-right: 4px;
}
.contracts .item__price span {
  margin-right: 4px;
}
.contracts .item__content {
  overflow: hidden;
  max-height: 0;
  padding: 0 5px;
  transition: all linear 0.1s;
}
.contracts .item__accept {
  max-height: 0;
  width: 70%;
  align-self: center;
  color: transparent;
  height: 45px;
  background-color: #FF003C;
  cursor: pointer;
  font-family: "Rubik Glitch", system-ui;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 2px;
  font-style: normal;
  border: none;
  margin: 5px 0;
  transition: all linear 0.1s;
}
.contracts .item__accept:active {
  color: #00F0FF !important;
  border-color: #00F0FF !important;
}
.contracts .item__accept.accepted {
  background-color: transparent;
}
.contracts .item.selected, .contracts .item:active, .contracts .item:focus {
  border-color: #00F0FF;
}
.contracts .item.selected .item__content, .contracts .item:active .item__content, .contracts .item:focus .item__content {
  max-height: 500px;
}
.contracts .item.selected .item__accept, .contracts .item:active .item__accept, .contracts .item:focus .item__accept {
  max-height: 45px;
  color: white;
  border: 2px solid #FF003C;
}
.contracts .item.selected .item__accept.accepted, .contracts .item:active .item__accept.accepted, .contracts .item:focus .item__accept.accepted {
  display: none;
}/*# sourceMappingURL=main.css.map */