@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* .frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #3F3F3F;
  display: flex;
  justify-content: center;
  align-items: center;
}
* .frame .center .modal {
  width: 70%;
  height: 50%;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2);
  background: #fff;
  text-align: center;
  position: relative;
  transform-origin: 50% 50%;
  transform: scale(0);
  animation: expand 0.7s linear 0.2s forwards;
}
@keyframes expand {
  0% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1.15);
  }
  80%, 90% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
* .frame .center .modal .warning {
  width: 20%;
  height: 20%;
  margin: 1rem 0;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
* .frame .center .modal .warning path {
  fill: #F65656;
}
* .frame .center .modal .warning text {
  stroke: #fff;
  fill: #fff;
  font-size: 3rem;
}
* .frame .center .modal .heading {
  font-size: 1.1rem;
  font-weight: bold;
}
* .frame .center .modal .description {
  display: block;
  width: 70%;
  font-size: 0.8rem;
  margin: 0.3rem auto;
}
* .frame .center .modal button {
  outline: none;
  border: none;
  border-radius: 0 0 5px 5px;
  background: #F65656;
  color: #fff;
  width: 100%;
  padding: 0.7rem;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background 0.2s linear;
}
* .frame .center .modal button:hover {
  background: #f32626;
  transition: background 0.2s linear;
}
* .frame .center .dismiss {
  animation: shrink 0.7s ease-in forwards;
}
@keyframes shrink {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(0);
  }
}

/*# sourceMappingURL=index.css.map */
