.formFb {
  
    box-sizing: border-box;
    margin: 1.5rem 0;
 }
 .formFb {
  position: relative;
  max-width: 600px;
  font-size: 17px;
  padding: 0.6em 1em;
  display: flex;
  flex-direction: column;
  align-items: center   ;
  margin: 0 auto;
  background-color: #00ff7114;
  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: .5em;
 text-align: center;
 }
 .formFb__counter {
 font-size: .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: .5em;
 }
 .formFb__price--txt {
 margin-bottom: .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: .25em;
 }
 .formFb__timer .timer {
 display: flex;
 font-size: 2em;
 color: rgb(88, 88, 88);
 }
 .formFb__timer .timer .hour {
 margin-right: .15em;
 }
 .formFb__timer .timer .minute {
 margin: 0 .15em;
 }
 .formFb__timer .timer .second {
 margin-left: .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: .941175em;
 margin-bottom: .25em;
 }
 .formFb__inputs input {
font-size: .991175em; 
 display: block;
 border: 1px solid #3578e563;
 padding-left: 10px;
 padding: .5em .65em;
 width: 100%;
 margin: 0 auto;
 }
 .formFb__btn {
 display: block;
 width: 100%;
 max-width: 300px;
 padding: .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 .4s;
 }
 .formFb__btn:hover, .formFb__btn:active {
 transform: scale(.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: .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%;
 }
 blockquote {
    margin-bottom: 1rem;
 }

 * {
    box-sizing: border-box;
 }

 img + blockquote {
    margin-top: .5rem;
 }
