.ajax-form.sending {
  opacity: 0.5;
  pointer-events: none;
}

.pds__thankyou {

}

.js-pds-mapa {
  width: 100%;
  height: 400px;
}

.pdpForm {
  display: flex;
  justify-content: space-between;
   flex-wrap: wrap;
  margin: 20px 10px;
  padding: 20px;
  background-color: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.15);
}

.pdpForm > * {
  /* flex: 1; */
}

.pdpForm > *:not(:last-child) {
  padding-right: 1rem;
}

.pdpForm__input input {
  max-width: 120px;
}

.pdpForm__input input[readonly] {
  background-color: rgba(0,0,0,0.05);
}

.pdpForm__check {
  display: inline-block;
  font-size: 14px;
  margin-top: 8px;
  padding-top: 0;

}

.pdpForm__check:first-child {
  margin-top: 0;
}

.pdpForm__btn {
  align-self: flex-end;
  margin-bottom: 0 !important;
  margin-left: auto;
}

.pdpForm__checks {

}

.pdpForm__argee {
  flex-basis: 100%;
  text-align: center;
  margin-top: 10px;
  order: 3;
}


@media only screen and (max-width: 768px) {
    .pdpForm__btn {
      flex-basis: 100%;
      margin-top: 10px;
      order: 3;
    }

    .pdpForm__checks {
      flex-basis: 100%;
      margin-bottom: 10px;
    }

    .pdpForm__argee {
      order: 2;
      margin: 10px 0;
    }

    .pdpForm__input {
      margin: 10px 0;
      flex-basis: 100%;
    }

    .pdpForm__input input{
      max-width: 100%;
    }
}


.pdpForm.is-loading {
  pointer-events: none;
  position: relative;
}

.pdpForm.is-loading * {
    opacity: 0.8;
  }

.pdpForm.is-loading:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    border: 4px solid #a5d6d6;
    border-top: 4px solid #419cfb;
    animation: spinner 0.6s ease-in-out infinite;
  }


  .successmark {
    pointer-events: none;
    position: relative;
  }

  .successmark  *:not(.pdpForm__messages) {
      opacity: .7;
    }

  .successmark:before{
      /*Add another block-level blank space*/
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      z-index: 10;
      display: block;

      /*Make it a small rectangle so the border will create an L-shape*/
        background-repeat: no-repeat;
        background-position: 50% 40%;
        background-size: 4rem 4rem;
        background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!--  --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='-23.313 -5.64 16 16' enable-background='new -23.313 -5.64 16 16' fill='%23a4cc00' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M-15.313-5.64c-4.418,0-8,3.582-8,8s3.582,8,8,8s8-3.582,8-8S-10.895-5.64-15.313-5.64z M-10.48,0.905 c-0.006,0.005-0.011,0.01-0.016,0.016l-5.323,5.489c-0.19,0.191-0.498,0.2-0.699,0.021l-3.589-3.306 c-0.193-0.172-0.21-0.469-0.038-0.662c0.005-0.005,0.012-0.012,0.018-0.019l0.685-0.7c0.195-0.186,0.499-0.195,0.705-0.021 l2.502,2.317l4.296-4.438c0.19-0.192,0.498-0.201,0.699-0.021l0.726,0.66C-10.323,0.414-10.309,0.711-10.48,0.905z'/%3E%3C/g%3E%3C/svg%3E");

    }





@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}



@keyframes scaleEaseInOutElastic {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(0.8);
	}

	80% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}

.js-pdp-total-steps.is-added {
  display: inline-block;
  animation-name: scaleEaseInOutElastic;
  animation-duration: 1s;
  animation-iteration-count: 2;
   animation-fill-mode: forwards;
}

.contentPage iframe {
  width: 100%;
}


.contentPage .btn {
  display: inline-flex;
  padding: 10px 20px;
  background-color: #ff8a00;
  color: #FFF;
  text-transform: uppercase;
  font-family: 'VafleTape';
  font-size: 20px;
}

.text-center {
  text-align: center;
}

.pdpForm__messages {
  order: 5;
  flex-basis: 100%;
  text-align: center;
  font-size: 18px;
  margin-top: 25px;
}