
.d2_1 {
  width: 235px;
  height: 196px;
  z-index: 1;
  text-align: center;
  box-sizing: border-box;
  font-family: "Open Sans", arial, sans-serif;
  background: rgb(255, 255, 255);
  border: 1px solid grey;
  border-radius: 14px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 32px;
  padding: 0 8px;
  flex-direction: column;
}
.d2_2 {
  font-family: "Open Sans", arial, sans-serif;
  z-index: 1;
  font-size: 17px;
  display: flex;
  align-items: center;
  color: #353535;
}
.download-modal-box {
  flex-direction: row-reverse;
}
/* Arrow  */

.arrow {
  width: 68px;
}
.arrow-up {
  margin-bottom: 15px;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
  color: #2692ff;
  font-size: 58px;
}

.bounce-up {
  -moz-animation: bounceUp 1s infinite;
  -webkit-animation: bounceUp 1s infinite;
  animation: bounceUp 1s infinite;
  color: #2692ff;
  color: #1a73e8;
  font-size: 120px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Arrow */


.cancel-install-modal {
  background: white;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 12% auto 0;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 6px;
  font-size: 20px;
}

.cancel-install-modal .buttons {
  display: flex;
  justify-content: flex-end;
}
.cancel-install-modal .buttons button {
  margin-right: 16px;
  background: #f5f5f5;
  border: 1px solid gainsboro;
  border-radius: 4px;
  padding: 6px 22px;
  color: #272727;
  text-transform: uppercase;
}
.cancel-install-modal .buttons button:hover {
  background: #ececec;
}

.check-circle-3 {
  color: #46bd35;
  margin-right: 7px;
  font-size: 31px !important;
}
