.subscribe-popup {
  font-family: "Roboto", sans-serif;
  padding: 0;
  margin: 0;
  background-color: rgba(245, 245, 245, 0);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 100%;
  left: 50%;
  height: 100vh;
  overflow: hidden;
  z-index: 1000;
}

.subscribe-popup.show {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background-color: rgba(245, 245, 245, 0.5);
}

.subscribe-popup .subscribeContent {
  position: relative;
  width: 90%;
  max-width: 400px;
  height: 360px;
  color: #b02d22;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("bg.png");
  color: #000;
  text-align: center;
  padding: 50px;
}

@media screen and (min-width: 420px) {
  .subscribe-popup .subscribeContent {
    height: 400px;
  }
}

.subscribe-popup .subscribeContent h2, .subscribe-popup .subscribeContent h3, .subscribe-popup .subscribeContent h3, .subscribe-popup .subscribeContent label, .subscribe-popup .subscribeContent p {
  color: #b02d22;
  font-family: Babes, Tahoma, Verdana, sans-serif;
}

.subscribe-popup .subscribeContent h1, .subscribe-popup .subscribeContent h2, .subscribe-popup .subscribeContent h3 {
  text-transform: uppercase;
  font-weight: 500;
}

.subscribe-popup .subscribeContent h3 {
  font-size: 32px;
}

.subscribe-popup .subscribeContent label {
  text-align: left;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 300;
}

.subscribe-popup .subscribeContent::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  background: url("food.png") no-repeat center bottom;
  bottom: 0;
  left: 0;
  content: " ";
}

.subscribe-popup .subscribeContent .content-wrapper {
  width: 100%;
}

.subscribe-popup .subscribeContent button.close {
  width: 30px;
  font-size: 20px;
  color: #c0c5cb;
  background-color: transparent;
  border: none;
  margin-bottom: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.subscribe-popup .subscribeContent .accept {
  background-color: #ff9d2d;
  border: none;
  border-radius: 5px;
  width: 200px;
  padding: 14px;
  font-size: 16px;
  color: white;
  box-shadow: 0px 6px 18px -5px #ff9d2d;
}

.subscribe-popup .subscribeContent .inp-group {
  position: relative;
  z-index: 100;
  width: 100%;
  padding-right: 90px;
}

.subscribe-popup .subscribeContent .inp-group input[type="text"], .subscribe-popup .subscribeContent .inp-group input[type="tel"], .subscribe-popup .subscribeContent .inp-group input[type="number"], .subscribe-popup .subscribeContent .inp-group input[Type="email"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 16px;
  line-height: 42px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 1px solid #b02d22;
  box-sizing: border-box;
  font-family: Babes, Tahoma, Verdana, sans-serif;
}

.subscribe-popup .subscribeContent .inp-group button, .subscribe-popup .subscribeContent .inp-group input[type="submit"], .subscribe-popup .subscribeContent .inp-group input[type="button"] {
  background: #b02d22;
  display: block;
  color: #fff;
  padding: 0 10px;
  line-height: 42px;
  height: 44px;
  width: 90px;
  font-weight: 500;
  text-align: center;
  border: none;
  outline: none;
  border: 1px solid #b02d22;
  font-family: Babes, Tahoma, Verdana, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
