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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  background: transparent;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 0;
  overflow: visible;
}

input, select {
  vertical-align: middle;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

textarea {
  overflow: auto;
}

.btn:hover {
  box-shadow: 0 0 0.3rem #bfbfbf;
}

.table-header__sort-icon, .table-header__hide-icon, .btn {
  transition: all 0.2s ease-out;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

.title {
  text-align: center;
  padding: 3rem 0 2rem;
  font-size: 2.2rem;
  font-weight: 400;
}

.main {
  width: 100%;
  position: relative;
  font-size: 1.4rem;
}

.wrapper {
  width: 50%;
  margin: 0 auto;
}

.btn {
  border: 1px solid #bfbfbf;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.7rem;
}
.table-wrapper {
  padding: 1rem;
  background-color: #efefef;
  border-radius: 0.7rem;
  width: 100%;
}

.table {
  width: 100%;
  table-layout: fixed;
  text-align: left;
  border-collapse: collapse;
}

.table-header__container {
  display: flex;
  justify-content: left;
  flex-direction: column;
}
.table-header__upper {
  display: flex;
  justify-content: left;
  align-items: center;
}
.table-header__hide-icon {
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  width: 25%;
}
.table-header__hide-icon:hover {
  color: #ffffff;
}
.table-header__text {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  padding: 0.5rem 1rem 0.5rem;
}
.table-header__sort {
  width: 1.5rem;
  height: 1.8rem;
  position: relative;
  font-size: 1.1rem;
}
.table-header__sort-icon:hover {
  color: #ffffff;
}
.table-header__sort-icon_clicked {
  color: #ffffff;
}
.table-header__sort-icon:first-child {
  position: absolute;
  top: 0;
}
.table-header__sort-icon:last-child {
  position: absolute;
  bottom: 0;
}
.table-header:nth-child(1) {
  width: 25%;
}
.table-header:nth-child(2) {
  width: 25%;
}
.table-header:nth-child(3) {
  width: 30%;
}
.table-header:nth-child(4) {
  width: 20%;
}

.row {
  width: 100%;
  background-color: #efefef;
  line-height: 1.9rem;
}

.spacer {
  height: 1rem;
  background-color: #efefef;
}

.cell {
  vertical-align: top;
  padding: 0.5rem 1rem 0.21rem;
  background-color: #ffffff;
  border: none;
}
.cell_short {
  display: -webkit-box;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cell:first-child {
  border-top-left-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}
.cell:last-child {
  border-bottom-right-radius: 0.7rem;
  border-top-right-radius: 0.7rem;
}

.pagination {
  position: relative;
  float: right;
  min-width: 4rem;
  padding: 1rem 2rem;
}
.pagination__btn_previous {
  position: absolute;
  left: 0;
}
.pagination__btn_next {
  position: absolute;
  right: 0;
}

.table-edit {
  margin-left: 1rem;
  position: absolute;
  width: 50%;
  left: 100%;
  top: 0;
}
.table-edit__form {
  width: 100%;
  position: absolute;
  background-color: #efefef;
  border-radius: 0.7rem;
  padding: 0.7rem;
}

.form__row {
  display: flex;
}
.form__column {
  display: flex;
  flex-direction: column;
}
.form__column:first-child {
  margin-right: 0.6rem;
  width: 30%;
}
.form__label {
  font-size: 1rem;
}
.form__input {
  font-size: 1rem;
  border: none;
  border-radius: 0.7rem;
  margin: 0.4rem 0 0.4rem;
  padding: 0.2rem;
}
.form__btn {
  font-size: 1rem;
  margin: 0.2rem;
}
/*# sourceMappingURL=index.7778c26e.css.map */
