#ruffle-form-show,
#ruffle-form-show * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

#ruffle-form-show {
  display: none;
}

#ruffle-form-show {
  max-width: 600px;
  margin: 20px auto 0;
  text-align: center;
  display: block;
}

#ruffle-form-show .ruffle-form-img {
  display: block;
  width: 90%;
  max-width: 450px;
  margin: 0 auto 20px;
}

#ruffle-form-show .ruffle-form-text {
  font-size: 19px;
  line-height: 1.4;
  font-weight: bold;
}

#ruffle-form-show .ruffle-form-timer {
  color: #d90429;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  margin: 15px auto;
}

#ruffle-form-show .ruffle-form-price {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

#ruffle-form-show .ruffle-form-price__new {
  color: #d90429;
}

#ruffle-form-show #appeared-form {
  text-align: center;
  margin: 0 15px;
}

#ruffle-form-show #appeared-form input {
  width: 100%;
  max-width: 400px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #818080;
  padding: 0 15px;
  border-radius: 3px;
  font-size: 16px;
  outline: none;
  margin-bottom: 10px !important;
}

#ruffle-form-show #appeared-form input:focus {
  border-color: #333;
}

#ruffle-form-show #appeared-form .appeared-form-btn {
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
  border-radius: 5px;
  border: none;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5),
    7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  background: #d90429;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.7px;
}

#ruffle-form-show #appeared-form .appeared-form-btn:hover {
  background-color: #ef233c;
}

#ruffle-form-show #appeared-form .appeared-form-btn:active {
  top: 2px;
}

@media (max-width: 700px) {

  #ruffle-form-show {
    max-width: 100%;
  }
}

@media (max-width: 350px) {

  #ruffle-form-show .ruffle-form-text {
    font-size: 17px;
  }

  #ruffle-form-show #appeared-form .appeared-form-btn {
    font-size: 18px;
  }

  #ruffle-form-show .ruffle-form-timer,
  #ruffle-form-show .ruffle-form-price {
    font-size: 20px;
  }
}