* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.wrapper {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  padding: 20px;
  font-size: 16px;
  position: relative;
}
.activeted {
  border: 1px solid rgb(255, 0, 85);
  border-radius: 4px;
  margin: 0px 0px 30px 0px;
  max-width: 700px;
}
.activeted__title {
  padding: 10px;
  background-color: rgb(255, 0, 85);
  font-weight: 700;
  color: #fff;
}
.activeted__body {
  height: 300px;
  overflow: auto;
}
.finished {
  border: 1px solid rgb(128, 128, 128);
  border-radius: 4px;
  max-width: 700px;
}
.finished__title {
  padding: 10px;
  background-color: rgb(128, 128, 128);
  font-weight: 700;
  color: #fff;
}
.finished__body {
  height: 300px;
  overflow: auto;
}
.js-box {
  margin: 20px 15px;
  padding: 10px 20px;
  border-radius: 3px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  position: relative;
}
.title {
  font-weight: 700;
  font-size: 20px;
  margin: 0px 0px 15px 0px;
}
.description {
  margin: 0px 0px 10px 0px;
}
.row {
  margin: 0px -5px;
}
.buttonInfo {
  border: 1px solid rgb(255, 0, 85);
  border-radius: 3px;
  background-color: #fff;
  color: rgb(255, 0, 85);
  padding: 5px 10px;
  margin: 0px 5px;
  font-size: 16px;
  transition: 0.3s;
}
.buttonInfo:hover {
  box-shadow: inset 0 0 7px rgba(255, 0, 85, 0.5);
}
.buttonActive {
  border: 1px solid rgb(255, 0, 85);
  border-radius: 3px;
  background-color: rgb(255, 0, 85);
  color: #fff;
  padding: 5px 10px;
  margin: 0px 5px;
  font-size: 16px;
  transition: 0.4s;
}
.buttonActive:hover {
  border: 1px solid rgb(150, 29, 69);
  background-color: rgb(150, 29, 69);
}
.buttonFinish {
  border: 1px solid rgb(128, 128, 128);
  border-radius: 3px;
  background-color: rgb(128, 128, 128);
  color: #fff;
  padding: 5px 10px;
  margin: 0px 5px;
  font-size: 16px;
  transition: 0.4s;
}
.buttonFinish:hover {
  border: 1px solid rgb(58, 58, 58);
  background-color: rgb(58, 58, 58);
}
.moreInfo {
  position: absolute;
  padding: 20px;
  background-color: #fff;
  top: 70%;
  left: 15%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.js-box.open .moreInfo {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  margin: -250px 0px 0px 0px;
  padding: 30px;
  background-color: #fff;
  width: 600px;
  max-height: 470px;
  border-radius: 4px;
}
.modal__head {
  display: flex;
  justify-content: space-between;
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 15px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal__x {
  width: 22px;
  height: 23px;
  position: relative;
  background-color: rgb(255, 255, 255);
  padding: 12px;
  margin: 0px 0px 0px 20px;
}
.modal__x::after,
.modal__x::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #000;
  display: inline-block;
  top: 10px;
  left: 1px;
  border-radius: 1px;
}
.modal__x::after {
  transform: rotate(-45deg);
}
.modal__x::before {
  transform: rotate(45deg);
}
.modal__description {
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 15px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: auto;
  max-height: 150px;
}
.modal__info {
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 15px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: auto;
  max-height: 150px;
}
.modal__footer {
  text-align: right;
}
.modal__close {
  padding: 5px 10px;
  border-radius: 2px;
  background-color: rgba(128, 128, 128, 0.4);
  letter-spacing: 1px;
  font-size: 16px;
  margin: 10px 0px 0px 0px;
  transition: 0.3s;
}
.modal__close:hover {
  background-color: rgba(128, 128, 128, 0.7);
}
