@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Roboto", sans-serif;
}
/*style structure*/
body .wrapper {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.frame {
  height: 96%;
  width: 23%;
  border: 1px solid #ccc;
  border-radius: 30px;
  position: relative;
  background-color: #030305;
}
/*exteria buttons style*/
[class*="btn-"] {
  width: 2px;
  height: 35px;
  position: absolute;
  background-color: #626564;
  border-radius: 20%;
  cursor: pointer;
}
.btn-1 {
  height: 80px !important;
  margin-top: 100px;
  margin-left: -2px;
}
.btn-2 {
  margin-top: 210px;
  margin-left: -2px;
}

.btn-3 {
  margin-top: 100px;
  right: 0;
  margin-right: -2px;
  border-radius: 30px;
  background-color: #626564;
  border-radius: 20% !important;
}

/*display screen*/
.screen {
  left: 1%;
  top: 0;
  width: 98%;
  height: 95%;
  background-color: #ffff;
  border-radius: 30px;
  margin: 10px auto 0;
  position: absolute;
  background-image: url(./img/background.webp);
  background-size: cover;
  box-sizing: border-box;
  padding: 10px 15px;
  cursor: pointer;
  overflow: hidden;
}

.lock-screen {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/*phone status bar*/
.status-bar {
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}
.status-bar img {
  height: 10px;
}

.status-bar .front-camera {
  width: 38px;
  height: 18px;
  background-color: #000000;
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.status-bar .time-wifi {
  margin: 0 auto 0 0;
  display: flex;
}

.status-bar #wifi {
  margin-right: 4px;
}

.status-bar #battery,
#sound,
.battery-percentage,
img {
  margin-right: 4px;
}

/*style front camera and flashlight*/
.front-camera div {
  width: 6px;
  height: 6px;
  background-color: #23212f;
  border-radius: 100%;
}
.front-camera .camera {
  height: 8px !important;
  width: 8px !important;
}

.current-time {
  margin-top: 100px;
  color: #ffff;
  font-size: 20px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}
.current-time #date {
  text-transform: inherit;
  margin-top: -15px;
  padding: 0;
}
.current-time #time {
  font-size: 22px;
  padding: 0;
}
.info {
  position: absolute;
  top: 90%;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-size: 12.5px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}
.featured-app {
  position: absolute;
  top: 95%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-app img {
  height: 30px;
}

.home {
  display: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  position: relative;
  height: 100%;
  width: 100%;
}

/* DOM Class style*/
.hide-lockScreen {
  display: none !important;
}
.show-homeScreen {
  display: block !important;
  transition: all 3s ease;
}

.google-search {
  /* margin: 300px auto 0; */
  width: 100%;
  height: 35px;
  background-color: #ffff;
  border-radius: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
}
.google-search img {
  height: 18px !important;
}
.google-search .google-logo {
  margin-right: auto;
}
.google-search p {
  margin-right: 10px;
  color: rgba(98, 101, 100, 0.801);
  font-size: 14px;
}

.navigation {
  color: #fff;
  margin-bottom: 0;
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 2px auto 0;
}
.navigation span {
  font-size: 18px;
}
.navigation .mdi-menu {
  transform: rotate(90deg);
}
.apps {
  margin: 1px auto 0;
  width: 100%;
  position: absolute;
  top: 55%;
}
.shorcut-apps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 9px;
  margin-top: 25px;
}
.shorcut-apps p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.781);
  margin-top: 10px;
  text-align: center;
}
.shorcut-apps div {
  display: flex;
  flex-direction: column;
}
.shorcut-apps img {
  height: 43px;
}
.base-apps img {
  height: 43px;
}

.base-apps {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.navigation {
  margin-bottom: 0;
  margin-top: 30px;
}

/*Respnisve to different screen size*/

/*Tablet*/
@media only screen and (max-width: 768px) {
  /* lock screen*/
  .frame {
    width: 70%;
  }
  .lock-screen {
    position: relative;
  }
  .home {
    position: relative;
  }
  .featured-app {
    position: absolute;
    top: 95%;
    width: 100%;
  }

  /*home screen*/
  .apps {
    top: 60%;
  }
}

@media only screen and (max-width: 425px) {
  .frame {
    width: 76% !important;
  }
  .info {
    margin-top: 0 !important;
    top: 90%;
  }
  .apps {
    top: 56%;
  }
}
