#appUpdate {
  position: fixed;
  padding: 15px 20px;
  bottom: 20px;
  right: 10px;
  border-radius: 5px;
  transition: transform 500ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  width: calc(100vw - 20px);
  transform: translate(0, 150px);
  max-width: 320px;
}

#appUpdate > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 13px;
}

#appUpdate img,
#appUpdateFinish img {
  height: 45px;
}

#appUpdate > div:nth-child(2) {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#sliderParent {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 8px;
}

#sliderContent {
  position: absolute;
  height: 100%;
  width: 0%;
  transition: width 500ms linear;
  left: 0;
  top: 0;
}

#topFlexTextParent > p:nth-child(1) {
  margin: 0px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
}

#topFlexTextParent > p:nth-child(2) {
  margin: 0px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.5;
  font-size: 12px;
}

.spinner {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
  animation: spinner-c7wet2 1s infinite linear;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}

#appUpdateFinish {
  position: fixed;
  bottom: 20px;
  right: 10px;
  border-radius: 5px;
  transition: transform 500ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  width: calc(100vw - 20px);
  transform: translate(0, 150px);
  max-width: 320px;
}

#appUpdateFinish > div:nth-child(1) {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 13px;
}

#appUpdateFinish > div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 20px;
  gap: 10px;
}

#appUpdateFinish button {
  border-radius: 5px;
  cursor: pointer;
  min-width: 64px;
  font-family: 'Open Sans';
  border: none;
  line-height: 1.75;
  font-weight: 600;
  padding: 5px 15px;
  font-size: 13px;
}
