.crashOver {
  width: 70%;
  height: auto;
  display: none;
  min-width: 600px;
  position: relative;
}

.crashOver h2 {
  font-weight: lighter;
  font-size: 30px;
  color: white;
  display: block;
}

.crashOver p {
  font-size: 15px;
  color: white;
  margin-left: 0px;
}

.crashIcon {
  color: white;
  display: block;
  font-size: 30px;
  width: 70px;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
}

.crashBottom {
  text-align: right;
}

.crashBottom button {
  padding: 10px 20px 10px 10px;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.crashReturnBtn {
  background: white;
  border: 1px solid white;
}

.crashContBtn {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.crashTroubleShoot {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.crashSpinner {
  border: 4px solid #d5d5d5;
  border-radius: 50%;
  border-top: 4px solid #ff0000;
  margin-right: 4px;
  vertical-align: top;
  display: inline-block;
  visibility: hidden;
  width: auto;
  height: auto;
  -webkit-animation: spin 2s ease-in-out infinite;
  animation: spin 2s ease-in-out infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(30deg);
  }
  55% {
    -webkit-transform: rotate(500deg);
  }
  100% {
    -webkit-transform: rotate(750deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(30deg);
  }
  55% {
    transform: rotate(500deg);
  }
  100% {
    transform: rotate(750deg);
  }
}
