/* form */

.formFb {
  box-sizing: border-box;
  margin: 1.5rem 0;
}
.formFb {
  max-width: 600px;
  font-size: 17px;
  padding: 0.6em 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  border-radius: 0.5em;
  background-image: linear-gradient(90deg, #3580ed 50%, transparent 50%),
    linear-gradient(90deg, #3580ed 50%, transparent 50%),
    linear-gradient(0, #3580ed 50%, transparent 50%),
    linear-gradient(0, #3580ed 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 10px 2px, 10px 2px, 2px 10px, 2px 10px;
  animation: marching-ants 400ms infinite linear;
}
@keyframes marching-ants {
  0% {
    background-position: 0 0, 10px 100%, 0 10px, 100% 0;
  }
  100% {
    background-position: 10px 0, 0 100%, 0 0, 100% 10px;
  }
}
.formFb__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.formFb__text {
  display: block;
  margin: 0;
}
.formFb__action {
  margin-bottom: 0.5em;
  text-align: center;
}
.formFb__counter {
  font-size: 0.925em;
  text-align: center;
}
.formFb__counter span {
  font-weight: bold !important;
}
.formFb__counter .red {
  color: #f20 !important;
}
.formFb__img {
  max-width: 250px;
  margin: 1em 0;
}
.formFb__img img {
  width: 100%;
  max-width: 100%;
}
.formFb__price {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.formFb__price--p {
  display: flex;
  align-items: center;
}
.formFb__price--old {
  font-size: 1.15em;
  text-decoration: line-through;
  margin-right: 0.5em;
}
.formFb__price--txt {
  margin-bottom: 0.55em;
  font-weight: bold;
  font-size: 1.25em;
}
.formFb__price--new {
  font-size: 2em;
  font-weight: bold;
  color: #f20;
}
.formFb__timer {
  margin: 1.5em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.formFb__timer p {
  /*margin-right: .5em;*/
  margin-bottom: 0.25em;
}
.formFb__timer .timer {
  display: flex;
  font-size: 2em;
  color: rgb(88, 88, 88);
}
.formFb__timer .timer .hour {
  margin-right: 0.15em;
}
.formFb__timer .timer .minute {
  margin: 0 0.15em;
}
.formFb__timer .timer .second {
  margin-left: 0.15em;
}
.formFb__inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  max-width: 300px;
  width: 100%;
}
.formFb__inputs label {
  font-size: 0.941175em;
  margin-bottom: 0.25em;
}
.formFb__inputs input {
  display: block;
  border: 1px solid #3578e563;
  padding-left: 10px;
  padding: 0.5em 0.65em;
  width: 100%;
  margin: 0 auto;
}
.formFb__btn {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 0.65em 0;
  margin-bottom: 1em;
  background: #3580ed;
  border: 1px solid #3580ed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  color: #fff;
  font-size: 1em;
  transition: transform 0.4s;
}
.formFb__btn:hover,
.formFb__btn:active {
  transform: scale(0.95);
}
.formFb__steps {
  display: flex;
  width: 100%;
  max-width: 300px;
  justify-content: space-between;
  margin-bottom: 1em;
}
.formFb__step {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  position: relative;
}
.formFb__step--line {
  flex-grow: 1;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.formFb__step--line:after {
  position: absolute;
  width: 80%;
  content: "";
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  border-bottom: 2px dashed #3580ed;
}
.formFb__step img {
  width: 100%;
  max-width: 100%;
}

.lm__img {
  display: flex;
  width: 50%;
  position: relative;
  margin: 1rem auto;
}
.lm__img img {
  width: 50%;
  height: 100%;
  align-self: center;
}

.lm__img-price {
  position: absolute;
  padding: 1rem 2rem;
  background-color: #f5c415;
  border-radius: 10px;
  top: 35%;
  left: 30%;
  font-size: 1.5rem;
  text-align: center;
}

.lm__img-price p {
  margin: 0;
}

.lm__img-price p:last-child {
  color: red;
  font-size: 2rem;
}

.lm__text-btn {
  text-transform: uppercase;
  background-color: #f5c300;
  padding: 1rem;
  border-radius: 2rem;
  font-weight: 700;
  margin: 1rem auto;
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
  background: linear-gradient(to bottom, #ffdb05, #d69700);
  color: black;
}

#order_popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: #3333332c;
  backdrop-filter: blur(4px);
}
#order_popup .formFb {
  background-color: #fff;
}
.close_order_popup {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 30px;
  min-height: 30px;
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  z-index: 2;
  background-image: url(../img/close.svg);
  background-size: cover;
  font-size: 64px;
  color: rgb(172, 172, 172);
}
