.all-notes {
  min-height: 400px;
  padding-bottom: 40px;
}

.all-notes__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.all-notes__date {
  font-size: 18px;
  color: #898989;
  width: 120px;
}

.all-notes__title {
  font-family: "FuturaBookDemiC";
  font-size: 18px;
  width: calc(100% - 170px);
}

.all-notes__btn {
  width: 40px;
  height: 40px;
  background: url(/images/arrow_red.png);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.all-notes__btn.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.all-notes__note {
  display: none;
  padding-left: 120px;
  padding-right: 40px;
}

.all-notes__note.active {
  display: block;
}

.all-notes__note p {
  font-size: 18px;
  line-height: 120%;
  margin: 20px 0 30px 0;
}

.all-notes__note a {
  margin-right: 20px;
  border-radius: 4px;
  padding: 12px 30px;
}
.all-notes__note a:hover {
  padding: 12px 30px;
}

.all-notes .tech-com__btns {
  margin-top: 40px;
}

.border-box {
  padding: 20px 0;
  border-bottom: 1px solid #d7d7d7;
}

.border-box:first-child {
  border-top: 1px solid #d7d7d7;
}

#add-note .modal-box {
  width: 700px;
}

#add-note .modal-box, #add-note .modal-header, #add-note .modal-body {
  background: #eee;
}

#add-note p {
  font-size: 22px;
  padding: 30px 0 15px;
}

#add-note .check__textarea {
  width: 100%;
  height: 200px;
}

#add-note .check_equip_input {
  width: 100%;
}

#add-note .btn-red, #add-note .btn-black {
  margin-top: 30px;
  margin-right: 30px;
  width: 200px;
}

.tech-requisites__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tech-requisites__left {
  font-size: 18px;
  color: #898989;
  width: 250px;
}

.tech-requisites__right {
  font-size: 18px;
  color: #000;
  width: calc(100% - 250px);
  padding-left: 20px;
}

.tech-requisites .tech-com__btns {
  margin-top: 40px;
}

.tech-history__left {
  width: 300px;
}

.tech-history__right {
  width: calc(100% - 300px);
  padding-left: 30px;
}

.tech-history__right li {
  font-size: 18px;
  color: #ff0000;
  text-decoration: underline;
  padding: 10px;
  position: relative;
}

.tech-history__right li::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: -25px;
  top: 20px;
}

.tech-history_p {
  font-size: 18px;
  color: #000;
  padding: 10px 0;
}

.tech-history_p span {
  color: #ff0000;
}

.tech-history__date {
  font-size: 18px;
  color: #898989;
  padding: 10px 0;
}

.tech-history_bold {
  font-family: "FuturaBookDemiC";
  font-weight: 500;
  font-size: 22px;
}

.tech-history .tech-com__btns {
  margin-top: 40px;
}