@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600);
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
[class*="fontawesome-"]:before {
  font-family: "FontAwesome", sans-serif;
}

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

a {
  text-decoration: none;
  color: #333;
}

/* body {
  background: #eee;
} */

@media only screen and (max-width: 768px) {
  #phone {
    width: 80% !important;
    height: calc(100vh - 250px) !important;
  }
}

#phone {
  width: 320px;
  height: calc(100vh - 300px);
  /* background: #dfdfdf; */
  margin: 0 auto;
  border-radius: 45px;
  position: relative;
  top: 10px;
  max-height: 560px;
  /* box-shadow: 0 1px 2rgba(104, 57, 57, 0.2).2); */
}
#phone:before,
#phone:after {
  display: none;
  content: "";
  display: block;
  position: absolute;
  background: #d3d3d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05),
    0 1px 1px rgba(255, 255, 255, 0.25);
}
#phone:after {
  display: none;
  left: calc(50% - 20px);
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
#phone:before {
  display: none;
  left: calc(50% - 20px);
  top: 30px;
  height: 10px;
  width: 50px;
  border-radius: 10px;
}

#app {
  overflow: hidden;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 45px;
}

#app .header {
  display: none;
  height: 50px;
  margin-bottom: 10px;
  background: #f6f6f6;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
  font: 18px "Open Sans";
  line-height: 30px;
  font-weight: 300;
  color: #ddd;
}
#app .header .top {
  height: 16px;
  position: relative;
  font-family: "Open Sans";
  font-size: 8px;
  line-height: 16px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}
#app .header .top .left {
  position: absolute;
  top: 0;
  left: 5px;
}
#app .header .top .center {
  text-align: center;
  font-size: 10px;
}
#app .header .top .right {
  position: absolute;
  top: 0;
  right: 5px;
}
#app .header #battery {
  border: 1px solid #999;
  border-radius: 2px;
  height: 10px;
  width: 20px;
  position: relative;
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
  right: 0;
  top: 2px;
}
#app .header #battery:before {
  content: "";
  display: block;
  width: 75%;
  height: 100%;
  background: #4d4;
  border: 1px solid transparent;
}

#people,
.person {
  width: 100%;
  height: 100%;
  /* padding-top: 7px; */
}

#people {
  position: relative;
  margin: 0 auto;

  background: url(https://unlok.me/images/unlok-logo.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center center;
}

.match-online {
  display: none;
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: linear-gradient(0deg, #00a893 40.85%, #018093 102.07%);
  position: absolute;
  right: -5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 23423;
}

.match-location {
  padding: 5px 10px;
  background-color: #ffffff;
  border-radius: 30px;
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 23423;
  color: #858585;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.match-location img {
  height: 14px !important;
  object-fit: contain !important;
  width: auto !important;
  background: none !important;
  margin-bottom: 3px;
}

.person {
  position: absolute;
  background-color: transparent;
  border-radius: 45px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
  transition: all 0.1s linear;
}
.person:nth-child(1) {
  z-index: 5;
}
.person:nth-child(2) {
  display: none;
  /*z-index: 4;*/
  top: 4px;
  transform: scale(0.98);
}
.person:nth-child(3) {
  /*z-index: 3;*/
  display: none;
  top: 1px;
  transform: scale(0.96);
}
.person:nth-child(n + 4) {
  display: none;
  /*z-index: 2;*/
  transform: scale(0.7);
}

.person:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
}

.person img {
  width: 100%;
  background: white;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.person span {
  position: absolute;
  bottom: 45px;
  left: 10px;
  /* background: url(.jpg), linear-gradient(247.32deg, rgba(255, 255, 255, 0.7) 1.52%, rgba(255, 255, 255, 0) 109.94%); */
  /* backdrop-filter: blur(40px); */
  width: 80%;
  padding: 10px;
  font: 13px "Open Sans";
  line-height: 30px;
  color: #555;
  margin: 0 auto;
  border-radius: 5px;
  line-height: 20px;
}

.person .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-align: left;
  -webkit-box-orient: vertical;
  color: white;
}

.person span strong {
  font: 16px "Open Sans";
  font-weight: 600;
  color: white;
}

@keyframes yes {
  0% {
    transform: scale(1) rotateZ(0deg);
    left: 0;
  }
  30% {
    transform: scale(1.05) rotateZ(0deg);
    left: 0;
  }
  100% {
    transform: rotateZ(45deg);
    left: 400px;
  }
}
@-webkit-keyframes yes {
  0% {
    -webkit-transform: scale(1) rotateZ(0deg);
    left: 0;
  }
  30% {
    -webkit-transform: scale(1.05) rotateZ(0deg);
    left: 0;
  }
  100% {
    -webkit-transform: rotateZ(45deg);
    left: 400px;
  }
}
.animateYes {
  animation-fill-mode: both;
  animation: yes 0.6s linear;
}
.animateYes:before {
  transform: rotateZ(-35deg);
  background: url(https://i.imgur.com/Zkwj970.png) no-repeat center 10px;
}

@keyframes no {
  0% {
    transform: rotateZ(360deg);
    right: 0;
  }
  30% {
    transform: scale(1.05) rotateZ(360deg);
    right: 0;
  }
  100% {
    transform: rotateZ(315deg);
    right: 400px;
  }
}
@-webkit-keyframes no {
  0% {
    -webkit-transform: rotateZ(360deg);
    right: 0;
  }
  30% {
    -webkit-transform: scale(1.05) rotateZ(360deg);
    right: 0;
  }
  100% {
    -webkit-transform: rotateZ(315deg);
    right: 400px;
  }
}
.animateNo {
  animation-fill-mode: both;
  animation: no 0.6s linear;
}
.animateNo:before {
  transform: rotateZ(35deg);
  background: url(https://i.imgur.com/XqQZ4KR.png) no-repeat center 10px;
}

@keyframes info {
  0% {
    transform: rotateZ(360deg);
    right: 0;
  }
  30% {
    transform: scale(1.05) rotateZ(360deg);
    right: 0;
  }
  100% {
    transform: rotateZ(315deg);
    right: 400px;
  }
}
@-webkit-keyframes info {
  0% {
    -webkit-transform: rotateZ(360deg);
    right: 0;
  }
  30% {
    -webkit-transform: scale(1.05) rotateZ(360deg);
    right: 0;
  }
  100% {
    -webkit-transform: rotateZ(315deg);
    right: 400px;
  }
}
.animateInfo {
  animation-fill-mode: both;
  animation: info 0.6s linear;
}

.animateInfo:before {
  transform: rotateZ(35deg);
  /*background: url(https://i.imgur.com/XqQZ4KR.png) no-repeat center 10px;*/
}

#control {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 15px auto 0;
  width: 185px;
  z-index: 20;
}
#control .button {
  width: 65px;
  height: 65px;
  /* background: #eee; */
  position: absolute;
  top: 5px;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
#control .button .trigger {
  background: white;
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.1s;
  text-align: center;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.45);
}
#control .button .trigger:active {
  transform: translateY(-50%) scale(0.75);
  transition: all 0.05s linear;
}
#control .button .trigger:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-family: "FontAwesome";
}
#control .no {
  left: 0;
}

#control .no a {
  border: 2px solid #f17474;
}

#control .no .trigger:before {
  display: none;
  content: "";
  font-size: 28px;
  color: #c33;
}
#control .yes {
  left: 60px;
}
#control .picture {
  right: 0;
}
#control .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#control .yes .trigger:before {
  display: none;
  content: "";
  font-size: 22px;
  color: #3b7;
}
#control .info {
  left: 60px;
  top: 5px;
  height: 65px;
  width: 65px;
}
#control .info .trigger {
  width: 50px;
  height: 50px;
}
#control .info .trigger:before {
  display: none;
  content: "";
  font-size: 16px;
  color: #3498db;
}

#copy {
  font: 12px "Open Sans";
  color: #ccc;
  position: fixed;
  top: 5px;
  left: 5px;
}
#copy a {
  color: #aaa;
}
