@charset "UTF-8";
body {
  background: #ffffff;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

​
body, form, div, p, a, img, h1, h2, h3, h4, h5, h6, table, table tr, table td {
  border: none;
  color: #000000;
  font-family: Arial;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

​
input,
textarea,
select {
  outline: none;
  font-family: Arial;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

​
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

​
a {
  text-decoration: underline;
  outline: none;
}

​
a:hover {
  text-decoration: none;
}

​
a span {
  border: 1px solid red;
}

​
h1, h2 {
  font-size: 20px;
  padding: 0 0 10px 0;
  color: #ffcc00;
}

.mainer {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
}

.user-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 15px -15px -15px -15px;
}

.user {
  width: 200px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 45px 15px 15px 15px;
  margin: 15px 15px 45px 15px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.user:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.5);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  background-image: url("../img/iconfinder_user_322506.svg");
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
}

.user:hover {
  border-color: red;
}

.user:hover:before {
  border-color: 2px solid red;
}

.user--empty {
  border: none;
  padding: 0;
  margin: 0 15px;
}

.user--empty:before {
  display: none;
}

.user__name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.user__data {
  margin: 10px 0 0 0;
  color: rgba(82, 82, 82, 0.5);
  position: relative;
  padding: 0 0 0 25px;
}

.user__data-icon {
  position: absolute;
  left: 0;
}

.user-info {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.user-info__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: red;
  font-size: 20px;
  cursor: pointer;
}

.user-info--hidden {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.user-info__load {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -32px;
  width: 64px;
  height: 64px;
  font-size: 64px;
  color: #ffcc00;
  -webkit-animation: spin infinite 2s linear;
          animation: spin infinite 2s linear;
}

.user-post {
  border: 2px solid rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 4px;
  margin: 0 0 15px 0;
  position: relative;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #fff;
}

.user-post:hover {
  background-color: red;
}

.user-post__title {
  font-weight: bold;
  font-size: 14px;
}

.user-post__body {
  margin: 10px 0 0 0;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.5);
            transform: rotate(180deg) scale(1.5);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0) scale(1);
            transform: rotate(0) scale(1);
  }
  50% {
    -webkit-transform: rotate(180deg) scale(1.5);
            transform: rotate(180deg) scale(1.5);
  }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1);
  }
}
/*# sourceMappingURL=style.css.map */