@import url("https://fonts.googleapis.com/css?family=Questrial:600");

body {
  font-family: "Questrial", sans-serif;
}

.outer {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 400px;
  width: 400px;
  margin-top: -200px;
  margin-left: -200px;
  color: white;
  background: #ECEFF1;
  border-radius: 2px;
  box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.profile {
  position: relative;
  float: left;
  height: 194px;
  width: 194px;
  margin: 4px 0 0 4px;
  cursor: pointer;
}
.profile .profile-images {
  height: 194px;
  width: 194px;
}
.profile .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}
.profile .plus {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  background: #00ACC1;
  border-radius: 50%;
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  transform: scale(2);
  pointer-events: none;
}
.profile .plus:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 14px;
  top: 24px;
  left: 18px;
  background: white;
}
.profile .plus:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  top: 18px;
  left: 24px;
  background: white;
}
.profile:hover .plus {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
}
.profile:hover .overlay {
  opacity: 0.4;
}

.detail {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  font-size: 0;
}
.detail.active {
  pointer-events: all;
}
.detail.active .header {
  transform: translate3d(0, 0, 0);
  transition: all 0.8s ease-out;
}
.detail.active .image {
  transform: translate3d(0, 0, 0);
  transition: all 0.8s ease-out 0.3s;
}
.detail.active .infos {
  transform: translate3d(0, 0, 0);
  transition: all 0.8s ease-out;
}
.detail.active .close {
  transform: rotate(45deg) translate3d(0, 0, 0);
  transition: background 0.3s ease-in-out, transform 0.8s ease-out 0.6s;
}
.detail .close {
  position: absolute;
  z-index: 2;
  height: 50px;
  width: 50px;
  top: 10px;
  right: 10px;
  background: #00ACC1;
  border-radius: 50%;
  transition: background 0.3s ease-in-out, transform 0.5s ease-in;
  transform: rotate(45deg) translate3d(-105%, -105%, 0);
  cursor: pointer;
}
.detail .close:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 14px;
  top: 24px;
  left: 18px;
  background: white;
  transition: all 0.3s ease-in-out;
}
.detail .close:after {
  position: absolute;
  content: "";
  height: 14px;
  width: 2px;
  top: 18px;
  left: 24px;
  background: white;
  transition: all 0.3s ease-in-out;
}
.detail .close:hover {
  background: white;
}
.detail .close:hover:after, .detail .close:hover:before {
  background: #00ACC1;
}
.detail .header {
  transform: translate3d(0, -105%, 0);
  transition: all 1s ease-in 0.5s;
}
.detail .image {
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  top: 130px;
  left: 150px;
  width: 100px;
  height: 100px;
  border: 2px solid #ECEFF1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 4px 6px 15px 0 rgba(0, 0, 0, 0.2);
  transform: translate3d(0, -250px, 0);
  transition: all 1s ease-in 0.2s;
}
.detail .image img {
  width: 100%;
  height: auto;
}
.detail .infos {
  box-sizing: border-box;
  background: #00ACC1;
  height: 220px;
  padding-top: 67px;
  transform: translate3d(0, 105%, 0);
  transition: all 1s ease-in 0.5s;
}
.detail .name {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.detail .action {
  margin-top: 35px;
  text-align: center;
}
.detail .action .btn {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 1px solid #ECEFF1;
  margin: 0 20px;
  border-radius: 45px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.detail .action .btn:hover {
  background: #ECEFF1;
  box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, 0.2);
}
.detail .action .btn .fa {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  padding-top: 12px;
}
.detail .action .btn .fa img {
  height: 20px;
  width: 20px;
}

#detail-1 {
  display: block;
}
