@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");

.multipay-form {
  max-width: 600px;
  margin: auto;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  /* ---------------------------
    BASE STYLES
  * ---------------------------*/
  /* ---------------------------
    PARSLEY STYLES
  * ---------------------------*/
  /* ---------------------------
    SECTIONS
  * ---------------------------*/
}

.multipay-form * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
  padding: 0;
  border: none;
  line-height: 1.4;
}

.multipay-form form {
  width: 100%;
  border: none;
}

.multipay-form img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

.multipay-form label {
  vertical-align: middle;
}

.multipay-form input:not([type="radio"]):not([type="checkbox"]),
.multipay-form .mpf-select-menu,
.multipay-form .mpf-button,
.multipay-form select {
  padding: 8px 10px;
  border: 1px solid #c2c2c2;
  border-radius: 3px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  font-size: inherit;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
}

.multipay-form input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.multipay-form .mpf-select-menu::-webkit-input-placeholder,
.multipay-form .mpf-button::-webkit-input-placeholder,
.multipay-form select::-webkit-input-placeholder {
  color: #c2c2c2;
}

.multipay-form input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.multipay-form .mpf-select-menu:-ms-input-placeholder,
.multipay-form .mpf-button:-ms-input-placeholder,
.multipay-form select:-ms-input-placeholder {
  color: #c2c2c2;
}

.multipay-form input:not([type="radio"]):not([type="checkbox"])::-ms-input-placeholder,
.multipay-form .mpf-select-menu::-ms-input-placeholder,
.multipay-form .mpf-button::-ms-input-placeholder,
.multipay-form select::-ms-input-placeholder {
  color: #c2c2c2;
}

.multipay-form input:not([type="radio"]):not([type="checkbox"])::placeholder,
.multipay-form .mpf-select-menu::placeholder,
.multipay-form .mpf-button::placeholder,
.multipay-form select::placeholder {
  color: #c2c2c2;
}

.multipay-form [type="radio"],
.multipay-form [type="checkbox"] {
  margin-right: 5px;
  /* margin-bottom: inherit; */
  background: #fff;
  position: relative;
  border: 2px solid #c2c2c2;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  overflow: hidden;
  height: 17px;
  width: 17px;
}

.multipay-form [type="radio"]:focus,
.multipay-form [type="checkbox"]:focus {
  outline: none;
  -webkit-box-shadow: 0 0 4px 1px #3b99fc;
  box-shadow: 0 0 4px 1px #3b99fc;
  border-color: #86c0fd;
}

.multipay-form [type="radio"]:after,
.multipay-form [type="checkbox"]:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.multipay-form [type="radio"]:checked:after,
.multipay-form [type="checkbox"]:checked:after {
  background: #1e90ff;
  border: 2px solid #fff;
}

.multipay-form [type="radio"],
.multipay-form [type="radio"]:after {
  border-radius: 50%;
}

.multipay-form select {
  height: 34px;
}

.multipay-form .mpf-button {
  padding: 18px 20px;
  background: #ff9900;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: 0;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  cursor: pointer;
}

.multipay-form .mpf-button:hover {
  background: #ffA910;
}

.multipay-form .mpf-select-menu {
  padding: 0;
  position: relative;
}

.multipay-form .mpf-select-menu:after {
  content: "";
  display: block;
  clear: both;
}

.multipay-form .mpf-select-menu select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  border-color: transparent;
  height: initial;
  padding: 7px 28px 7px 8px;
}

.multipay-form .mpf-select-menu:after {
  content: "";
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #1b1b1b;
  position: absolute;
  top: 15px;
  right: 10px;
  margin: auto;
}

.multipay-form .mpf-col > div, .multipay-form .mpf-col--2 > div, .multipay-form .mpf-col--3 > div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: block;
}

.multipay-form .mpf-col > div:not(:last-child), .multipay-form .mpf-col--2 > div:not(:last-child), .multipay-form .mpf-col--3 > div:not(:last-child) {
  padding-right: 5px;
}

.multipay-form .mpf-col:after, .multipay-form .mpf-col--2:after, .multipay-form .mpf-col--3:after {
  display: block;
  content: "";
  clear: both;
}

.multipay-form .mpf-col--2 > div {
  width: 50%;
}

.multipay-form .mpf-col--3 > div {
  width: 33.33%;
}

@media (max-width: 460px) {
  .multipay-form .mpf-col > div, .multipay-form .mpf-col--2 > div, .multipay-form .mpf-col--3 > div {
    float: none;
    width: 100%;
    padding: 0 !important;
  }
}

.multipay-form .mpf-section {
  padding: 10px 0;
}

.multipay-form .mpf-section-title {
  margin: 0 auto 10px;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 460px) {
  .multipay-form .mpf-section-title {
    font-size: 18px;
  }
}

.multipay-form input.parsley-error,
.multipay-form select.parsley-error,
.multipay-form textarea.parsley-error {
  color: #B94A48;
  border-color: rgba(255, 0, 0, 0.5) !important;
}

.multipay-form .parsley-errors-list {
  margin: 5px 0 10px;
  margin: 0;
  padding: 0 5px;
  list-style-type: none;
  font-size: 12px;
  color: #f00;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in;
  transition: opacity .3s ease-in;
  position: relative;
}

.multipay-form .parsley-errors-list:after {
  content: "";
  display: block;
  clear: both;
}

.multipay-form .parsley-errors-list li {
  position: absolute;
  background: #fff;
  top: -20px;
  left: 5px;
  padding: 0 5px;
}

.multipay-form .parsley-errors-list.filled {
  opacity: 1;
}

.multipay-form .mpf__payment-plan-select label {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  margin: auto;
  cursor: pointer;
  font-weight: 700;
}

.multipay-form .mpf__payment-plan-select p {
  font-size: 14px;
  margin: auto;
  padding: 5px 10px;
  font-weight: 300;
  text-align: center;
}

@media (max-width: 460px) {

  .multipay-form .mpf__payment-plan-select label,
  .multipay-form .mpf__payment-plan-select p {
    text-align: left;
  }

  .multipay-form .mpf__payment-plan-select label {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.multipay-form .mpf__selected-plan {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}

.multipay-form .mpf__coupon-code > label {
  display: block;
  margin-bottom: 8px;
}

.multipay-form .mpf__payment-type {
  display: block;
  font-weight: bold;
  font-size: 18px;
  border-radius: 3px;
  padding: 5px 10px;
}

.multipay-form .mpf__payment-type:not(:last-child) {
  margin-bottom: 5px;
}

.multipay-form .mpf__payment-type-title {
  display: inline-block;
  width: 130px;
}

.multipay-form .mpf__payment-type img {
  max-height: 25px;
}

@media (max-width: 460px) {
  .multipay-form .mpf__payment-type img {
    max-height: 20px;
  }

  .multipay-form .mpf__payment-type-title {
    font-size: 16px;
    width: 125px;
  }
}

@media (max-width: 460px) and (max-width: 330px) {
  .multipay-form .mpf__payment-type img {
    display: none;
  }

  .multipay-form .mpf__payment-type-title {
    width: 50%;
  }
}

.multipay-form .mpf__shipping-info {
  display: none;
  margin-top: 15px;
}

.multipay-form .mpf__shipping [name="address-different"]:not(:checked) ~ .mpf__shipping-info {
  display: block;
}

.multipay-form .mpf__security-icons {
  padding: 10px 0;
  text-align: center;
}

.multipay-form .mpf__security-icons img {
  max-height: 54px;
  margin: 0 auto;
}

.multipay-form .mpf__footer {
  text-align: center;
}

.multipay-form .mpf__footer p {
  margin: 20px auto;
}

.mpf_section2 {
  display: none
}

.mpf-2step-header {
  background-image: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#f3f3f3));
  background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
  background-image: -moz-linear-gradient(top, #fff, #f3f3f3);
  background-image: -o-linear-gradient(top, #fff, #f3f3f3);
  background-image: -ms-linear-gradient(top, #fff, #f3f3f3);
  background-image: linear-gradient(to bottom, #fff, #f3f3f3);
  border-bottom: 2px solid rgba(0, 0, 0, .1);
  font-family: 'Open Sans', sans-serif !important;
  display: block;
  overflow: auto;
  margin-bottom: 10px
}

.mpf-2step-step {
  padding: 15px;
  opacity: .7;
  transition: all 0.5s ease;
  width: 100%
}

.mpf-2step-1, .mpf-2step-2 {
  float: left;
  width: 50%
}

.clearfix:before {
  content: " ";
  display: table
}

.clearfix:after {
  clear: both
}

.mpf-2step-number {
  font-weight: 700;
  font-size: 27px;
  line-height: 37px;
  float: left;
  margin-right: 15px
}

.mpf-2step-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px
}

.mpf-2step-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px
}

.mpf-2step-subtitle {
  font-size: 12px
}

.mpf-2step-active {
  opacity: 1
}

.mpf-2step-active .mpf-2step-title {
  color: #279CEB
}

.mpf-2step-progress {
  clear: left;
  margin-left: 0;
  background-color: #1372A8;
  height: 5px
}

.arrow-up {
  width: 12px;
  height: 12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #1372A8;
  top: -12px;
  position: relative;
  transition: all 0.5s ease
}

.position-1 {
  margin-left: 15%
}

.position-2 {
  margin-left: 65%
}

.mpf_edit_contact {
  margin: 10px 0
}

.mpf_arrow {
  border: solid #888;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px
}

.mpf_right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg)
}

.mpf_left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg)
}

.mpf_backlink {
  font-size: 12px;
  color: #888;
  text-decoration: none;
  opacity: .7
}

.mpf_backlink:hover {
  text-decoration: underline
}

.multipay-form ::placeholder {
  color: #808080 !important;
  opacity: 1
}

.multipay-form :-ms-input-placeholder {
  color: red
}

.multipay-form ::-ms-input-placeholder {
  color: red
}

.mpf_oto {
  border: 3px dashed black;
  padding: 10px;
  background-color: rgb(252, 248, 227)
}

.mpf_oto_headline {
  padding: 1px 10px;
  margin-bottom: 10px;
  background-color: rgb(255, 255, 153);
  text-align: center
}

.mpf_oto_headline_arrow {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 0;
  min-height: 20px;
  padding-left: 20px;
  padding-top: 0;
  margin-top: -1px;
  vertical-align: middle;
  cursor: pointer
}

.mpf_oto_headline_arrow img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  float: left;
  position: relative;
  left: -25px;
  top: 2px
}

.mpf_oto_checkbox {
  margin: 4px 0 0 -20px;
  cursor: pointer;
  float: left
}

.mpf_oto_headline_msg {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0;
  min-height: 20px;
  padding-left: 20px;
  padding-top: 0;
  margin-top: -1px;
  vertical-align: middle;
  color: rgb(0, 153, 0);
  line-height: 30px
}

.mpf_oto_offer_content {
  font-size: 13px
}

.mpf_oto_offer {
  color: #C30;
  font-weight: 700;
  text-decoration: underline
}

.mpf_section3 {
  text-align: center;
}

.mpf_section3__text {
  padding: 1rem;
}

.mpf_section3__text p {
  font-size: 2.1rem;
}

.no-fill {
  display: none;
  text-align: center;
  margin: 1rem 0;
  color: red;
}

.mpf_section3 button {
  margin-bottom: 2rem !important;
}


.mpf__product-format-select-type {
  display: block;
  margin-bottom: 10px;
}

.mpf-section-subline {
  margin: 0 auto 20px;
}