.bubble {
  font-family: "SF Pro Text";
  padding: 8px 15px;
}

.bubble.user {
  -ms-flex-item-align: end;
  align-self: flex-end;
  background: #007AFF;
  border-radius: 20px 20px 5px 20px;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin: 10px 31px 0px 10px;
}

.bubble.recipient {
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: #E5E5EA;
  border-radius: 5px 20px 20px 20px;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 10px 0px 31px;
}

.app-icon {
  background: #fff center/cover;
  border-radius: 14px;
  height: 60px;
  overflow: hidden;
  width: 60px;
}

.app-name {
  font-size: 12px;
  line-height: 14px;
  height: 14px;
  max-width: 79px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 393px;
  height: 852px;
  left: 393px;
  top: -852px;
  background: #fff;
}

.app-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 393px;
  height: 852px;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #000;
}
.app-content::-webkit-scrollbar {
  width: 4px;
}
.app-content::-webkit-scrollbar-thumb {
  width: 4px;
  margin-right: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.6);
}
.app-content::-webkit-scrollbar-track {
  display: none;
}

@-webkit-keyframes AppOpen {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-393px);
    transform: translateX(-393px);
  }
}

@keyframes AppOpen {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-393px);
    transform: translateX(-393px);
  }
}
.dock-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 11px 12px 11px;
  margin-top: 10px;
}

.dock {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(191, 191, 191, 0.44);
  border-radius: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 19px 0 19px 0;
  width: 371px;
}

.dynamic-island {
  font-family: "SF Pro Text";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 11px;
}

.dynamic-island-notification-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 59px;
  height: 36px;
  border-radius: 36px;
  padding: 0 11px 0 11px;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  -webkit-animation: 5.5s ease notification-sm;
  animation: 5.5s ease notification-sm;
}
.dynamic-island-notification-sm span {
  white-space: nowrap;
  width: 100px;
  -webkit-animation: text-roll 5.5s linear infinite;
  animation: text-roll 5.5s linear infinite;
}

.dynamic-island-icon-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00FF33;
  width: 36px;
  height: 36px;
  border-radius: 36px;
  background: #000;
  -webkit-animation: 5.5s ease icon-sm;
  animation: 5.5s ease icon-sm;
}
.dynamic-island-icon-sm img {
  width: 24px;
  height: 24px;
  border-radius: 24px;
}

@-webkit-keyframes notification-sm {
  0%, 100% {
    width: 59px;
  }
  4.55%, 95.45% {
    width: 147px;
  }
}

@keyframes notification-sm {
  0%, 100% {
    width: 59px;
  }
  4.55%, 95.45% {
    width: 147px;
  }
}
@-webkit-keyframes icon-sm {
  0%, 4.55%, 95.45%, 100% {
    opacity: 0;
  }
  9.1%, 90.9% {
    opacity: 1;
  }
}
@keyframes icon-sm {
  0%, 4.55%, 95.45%, 100% {
    opacity: 0;
  }
  9.1%, 90.9% {
    opacity: 1;
  }
}
@-webkit-keyframes text-roll {
  0%, 50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  10%, 60%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
}
@keyframes text-roll {
  0%, 50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  10%, 60%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 1;
  }
}
.home-indicator-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 393px;
  height: 21px;
  position: absolute;
  bottom: 0;
}

.home-indicator {
  width: 139px;
  height: 5px;
  border-radius: 5px;
  background: #000;
  opacity: 0;
}

@-webkit-keyframes HomeEnable {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes HomeEnable {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.home-screen {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: url("../images/ios-wp-dark.jpeg") center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.apps-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-line-pack: center;
  align-content: center;
  margin-top: 10px;
  height: 616px;
  width: 393px;
}

.apps-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  height: 79px;
}

.app-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 79px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 60px;
}

.search-field {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(191, 191, 191, 0.44);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 16px;
  padding: 7px 11px 7px 11px;
  margin-top: 10px;
}

.material-blur {
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}

.navigation-bar {
  position: absolute;
  top: 0px;
  width: 393px;
  height: 150px;
  background: rgba(255, 255, 255, 0.75);
  border-bottom: rgba(0, 0, 0, 0.3) 1px solid;
}
.navigation-bar .status-bar {
  color: #000;
}
.navigation-bar .status-bar .dynamic-island {
  color: #fff;
}

.navigation-bar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 393px;
  height: 96px;
  color: #000;
}
.navigation-bar-content .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navigation-bar-content .user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #F055AA;
}
.navigation-bar-content .user-name {
  white-space: nowrap;
}

.status-bar {
  width: 393px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.time, .levels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 138px;
  min-width: 0;
  height: 48.5px;
  margin-top: 5.5px;
  font-size: 17px;
  line-height: 22px;
}

.app-toolbar {
  position: absolute;
  width: 393px;
  min-height: 83px;
  left: 0px;
  bottom: 0px;
  border-top: rgba(0, 0, 0, 0.3) 1px solid;
}
.app-toolbar .accessories-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background: rgba(255, 255, 255, 0.75);
}
.app-toolbar .input {
  font-family: "SF Pro Text";
  font-size: 15px;
  background: rgba(76, 76, 80, 0.12);
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 44px;
  outline: none;
  padding: 0 10px 0 10px;
}
.app-toolbar .toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 83px;
  background: rgba(179, 179, 179, 0.82);
}

.power-button, .silent-switch, .volume-up-button, .volume-down-button {
  border-radius: 2px;
  background: #1E2432;
  position: absolute;
  z-index: -3;
}

.horizontal-antenna, .vertical-antenna {
  background: #1E2432;
  position: absolute;
  z-index: -1;
}

.power-button {
  width: 8px;
  height: 107px;
  top: 282px;
  right: -4px;
}

.silent-switch {
  width: 8px;
  height: 34px;
  top: 171px;
  left: -4px;
}

.volume-up-button {
  width: 8px;
  height: 68px;
  top: 235px;
  left: -4px;
}

.volume-down-button {
  width: 8px;
  height: 68px;
  top: 321px;
  left: -4px;
}

.horizontal-antenna {
  width: 100%;
  height: 6px;
}

.top-antenna {
  top: 93px;
  left: 0px;
}

.bottom-antenna {
  bottom: 93px;
  left: 0px;
}

.vertical-antenna {
  width: 6px;
  height: 20px;
}

.left-antenna {
  bottom: 0px;
  left: 91px;
}

.right-antenna {
  top: 0px;
  right: 91px;
}

.bezel {
  padding: 5px;
  border-radius: 67px;
  background: #2A3245;
  position: relative;
  z-index: -2;
}

.display {
  width: 393px;
  height: 852px;
  border-radius: 52px;
  overflow: hidden;
}

.display-border {
  padding: 10px;
  border-radius: 62px;
  background: #000;
}

.camera-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 393px;
  top: 26px;
}
.camera-section .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 125px;
  height: 36px;
  gap: 23px;
  border-radius: 36px;
  background: #000;
}

.sensor {
  width: 65px;
  height: 20px;
  border-radius: 20px;
  background: #090909;
}

.camera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #090909;
}

.lens {
  width: 11px;
  height: 11px;
  border-radius: 11px;
  background: #012;
}

html, body {
  margin: 0;
  background: #000;
  font-family: "SF Pro Display";
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.phone-wrapper {
  -webkit-transform: scale(1) translate(-50%, -50%);
  -ms-transform: scale(1) translate(-50%, -50%);
  transform: scale(1) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}