.form_container {
  padding: 10px;
  display: flex;
  gap: 1%;
}
.form_container .order-mob-1 {
  position: relative;
  top: -15px;
}
@media (max-width: 991px) {
  .form_container {
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
  }
  .form_container .order-mob-1 {
    order: 1;
    top: 0;
  }
  .form_container .order-mob-2 {
    order: 2;
  }
  .form_container .order-mob-3 {
    order: 3;
  }
}
@media (max-width: 768px) {
  .form_container {
    gap: 10px;
  }
}

.form_card_wrap {
  padding: 2px;
  background: #fff;
  border-radius: 20px;
  position: relative;
  width: 33%;
}
.form_card_wrap.grey {
  border: 3px solid #c1c4ca;
}
.form_card_wrap.golden {
  background: #f9f8da;
  border: 3px solid #b08637;
}
@media (max-width: 991px) {
  .form_card_wrap {
    width: calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  .form_card_wrap {
    width: 350px;
  }
}

.form_card {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif, system-ui;
}
.form_card_title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 15px 15px 0 0;
  font-size: 36px;
  color: #fff;
  background: #06518a;
  border: 3px solid #06518a;
}
.form_card_title .showHide {
  animation: blinker 1.5s linear infinite;
  color: #c9ff08;
  font-weight: bold;
}
.form_card_info {
  padding-top: 60px;
}
.form_card_info-topText {
  font-size: 20px;
  margin-bottom: 20px;
}
.form_card_info_price {
  color: rgb(176, 134, 55);
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 20px;
}
.form_card_info_price .text_high {
  font-size: 36px;
}
.form_card_info_price .text_low {
  font-size: 24px;
}
@media (max-width: 1090px) and (min-width: 992px) {
  .form_card_info {
    padding-top: 120px;
  }
}
@media (max-width: 400px) {
  .form_card_info {
    padding-top: 120px;
  }
}
.form_card .img-wrap {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.form_card .img-wrap.prod-img-3 {
  width: 180px;
}
.form_card .img-wrap.prod-img-2 {
  width: 200px;
}
.form_card .img-wrap img {
  width: 100%;
  height: 100%;
}
.form_card .img-bonus-wrap {
  border: 4px solid #e61c24;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  width: 256px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.form_card .img-bonus-wrap img {
  width: 100%;
  height: 100%;
}
.form_card_btn_wrap {
  width: 256px;
  margin: 0 auto;
  padding: 2px;
  background: linear-gradient(to bottom, #f3d600, #b36a03);
  border-radius: 12px;
  margin-bottom: 20px;
}
.form_card_btn {
  display: block;
  padding: 4px 16px;
  text-align: center;
  border-radius: 12px;
  font-size: 32px;
  color: #000;
  background: linear-gradient(to bottom, #ffe456, #ffd701);
}
.form_card_credits {
  width: 256px;
  margin: 0 auto;
}
.form_card_credits img {
  width: 100%;
  height: 100%;
}
.form_card_bottomText {
  font-size: 16px;
  font-weight: normal;
}

@keyframes blinker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
