* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button {
  font-family: inherit;
  text-transform: inherit;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style-type: none;
}

body {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}

.app {
  position: relative;
}

.humburger::before {
  content:'';
  display: inline-block;
  position:absolute;
  top: -10px;
  width: 40px;
  height: 5px;
  background-color: black;
}

.humburger {
  position:absolute;
  top: 50px;
  right: 50px;
  display: none;
  width: 40px;
  height: 5px;
  background-color: black;
}

.humburger::after {
  content: '';
  display: inline-block;
  position: absolute;
  top:10px;
  width: 40px;
  height: 5px;
  background-color: black;
}

.main {
  min-height: 100vh;
  padding-bottom: 307px;
  margin: 0 auto;
  margin-bottom: 96px;
  width: 50%;
}

.header {
  position: sticky;
  padding-top: 64px;
  padding-bottom: 64px;
  top: 0;
  background-color: #ffffff;
}

.header__title {
  font-size: 29px;
  line-height: 35px;
  letter-spacing: 0.025em;
  font-weight: bold;
}

.line {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  height: 50px;
  width: 100%;
}

.line__name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36%;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  background: #f5f5f5;
  border-radius: 5px;
}

.line__example {
  padding-left: 10%;
  display: flex;
  align-items: center;
  width: 61%;
  color: #00000066;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  background: #f5f5f5;
  border-radius: 5px;  
}

.table__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  height: 50px;
  width: 100%;
}

.table__group-id {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22%;
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  border-radius: 5px;
}

.table__group-name {
  display: flex;
  align-items: center;
  padding-left: 9.7%;
  width: 75%;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  background-color: #f5f5f5;
  border-radius: 5px; 
}

.table__item {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  height: 50px;
  width: 100%;
}

.table__item-id {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22%;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  background: #f8faff; 
}

.table__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  background: #f8faff; 
}

.table__item-full-name {
  padding-left: 13%;
  display: flex;
  align-items: center;
}

.table__item-full-name:hover::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  background: #eef0fd;
  border: 2px solid #bac5e1;
  border-radius: 50%;
}

.table__item-group-buttons {
  margin-right: 3.7%;
}

.table__item-btn {
  display: inline-block;
  padding: 6px;
  border: 2px solid #dee3ea;
  background: #f8faff;
  border-radius: 5px;
  color: #243659;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
}

.table__item-btn:hover {
  background: #e1e4e544;
}

.table__item-btn:active {
  background: #e1e4e5aa;
}

.footer {
  margin-top: -307px;
  width: 100vw;
  height: 307px;
  background: url(../images/wave.png) bottom center no-repeat;
  background-size: 100%;
}

.footer__link {
  margin-left: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 17%;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
  background-color: #f5f5f5;
  border-radius: 5px;  
}

.footer__link:hover {
  background-color: #f0f0f0;
}

.footer__link:active {
  background-color: #e6e6e6;
}

@media (max-width: 768px) {
  .humburger {
    display: inline-block;
  }
}
