﻿.CheckoutContainer {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); }
  .CheckoutContainer .ValueChanging {
    animation: changing 3.5s; }

.example2 {
  align-items: center;
  margin-left: 0px;
  margin-right: -20px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  min-width: 100%;
  position: relative; }
  .example2.submitted .FormCtr,
  .example2.submitting .FormCtr {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9); }
  .example2 .FormCtr {
    max-width: 500px;
    position: relative;
    transition-duration: 0.35s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    margin-top: .25rem; }
  .example2 .FormCtr h3 {
    margin: .33em; }
  .example2 * {
    font-family: Source Code Pro, Consolas, Menlo, monospace;
    font-size: 16px;
    font-weight: 500; }
  .example2 .row {
    display: -ms-flexbox;
    display: flex;
    margin: 0 5px 10px; }
  .example2 .field {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 10px; }
  .example2 .field.half-width {
    width: 50%; }
  .example2 .field.half-height {
    height: 25px !important; }
  .example2 .field.third-width {
    width: 33%; }
  .example2 .field.thirty5p-width {
    width: 35%; }
  .example2 .field.fortyp-width {
    width: 40%; }
  .example2 .field.seventy5p-width {
    width: 75%; }
  .example2 .field.quarter-width {
    width: calc(25% - 10px); }
  .example2 .field.twentyp-width {
    width: calc(20% - 10px); }
  .example2 .field.fifteenp-width {
    width: calc(15% - 10px); }
  .example2 .field.twelvep-width {
    width: calc(12% - 10px); }
  .example2 .baseline {
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #cfd7df;
    transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .example2 label {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 8px;
    color: #cfd7df;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform-origin: 0 50%;
    cursor: text;
    transition-property: color, transform;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
  .example2 .input {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-bottom: 7px;
    color: #32325d;
    background-color: transparent; }
  .example2 .input::-webkit-input-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .example2 .input::-moz-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .example2 .input:-ms-input-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .example2 .input.StripeElement {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity; }
  .example2 .input.focused,
  .example2 .input:not(.empty) {
    opacity: 1; }
  .example2 .input.focused::-webkit-input-placeholder,
  .example2 .input:not(.empty)::-webkit-input-placeholder {
    color: #cfd7df; }
  .example2 .input.focused::-moz-placeholder,
  .example2 .input:not(.empty)::-moz-placeholder {
    color: #cfd7df; }
  .example2 .input.focused:-ms-input-placeholder,
  .example2 .input:not(.empty):-ms-input-placeholder {
    color: #cfd7df; }
  .example2 .input.focused + label,
  .example2 .input:not(.empty) + label {
    color: #aab7c4;
    transform: scale(0.85) translateY(-25px);
    cursor: default; }
  .example2 .input.focused + label {
    color: #d02700; }
  .example2 .input.invalid + label {
    color: #ffa27b; }
  .example2 .input.focused + label + .baseline {
    background-color: #d02700; }
  .example2 .input.focused.invalid + label + .baseline {
    background-color: #e25950; }
  .example2 input[type=button],
  .example2 input[type=text],
  .example2 input[type=tel],
  .example2 .example2 button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-style: none; }
  .example2 input[type=checkbox] {
    -webkit-appearance: default-button !important;
    -moz-appearance: default-button !important;
    appearance: default-button !important; }
  .example2 input:-webkit-autofill {
    -webkit-text-fill-color: #e39f48;
    transition: background-color 100000000s;
    -webkit-animation: 1ms void-animation-out; }
  .example2 .StripeElement--webkit-autofill {
    background: transparent !important; }
  .example2 input, .example2 .example2 button {
    -webkit-animation: 1ms void-animation-out; }
  .example2 button {
    display: block;
    height: 40px;
    margin: 40px 15px 0;
    background-color: #d02700;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer; }
  .example2 button.preview {
    width: calc(100% - 30px); }
  .example2 button.checkout {
    width: calc(50% - 30px); }
  .example2 .visible {
    animation: fadein 1.5s;
    animation-fill-mode: forwards; }
  .example2 .notvisible {
    animation: fadeout 1.5s;
    animation-fill-mode: forwards; }
  .example2 .error {
    display: flex;
    font-size: 13px !important;
    justify-content: center;
    left: 0;
    margin-top: 20px;
    opacity: 0;
    padding: 0 15px;
    position: absolute;
    top: 100%;
    transform: translateY(10px);
    transition-duration: 0.35s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%; }
  .example2 .error.visible {
    opacity: 1;
    transform: none; }
  .example2 .error svg {
    margin-top: 0 !important; }
  .example2 .error svg .base {
    fill: #e25950; }
  .example2 .error svg .glyph {
    fill: #fff; }
  .example2 .error .message {
    color: #e25950; }
  .example2 .success {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%; }
    .example2 .success > * {
      opacity: 0;
      transform: translateY(50px);
      transition-duration: 0.35s;
      transition-property: opacity, transform;
      transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .example2 .success .icon {
      margin: 15px 0 30px;
      transform: translateY(70px) scale(0.75); }
    .example2 .success .icon .border {
      stroke: #abe9d2; }
    .example2 .success .icon .checkmark {
      stroke: #d02700; }
    .example2 .success .title {
      color: #32325d;
      font-size: 16px !important; }
    .example2 .success .message {
      color: #8898aa;
      font-size: 13px !important; }
    .example2 .success .reset path {
      fill: #d02700; }
  .example2.submitted .success > * {
    opacity: 1;
    transform: none !important; }
  .example2 .CheckoutPreview {
    font-family: Verdana; }
    .example2 .CheckoutPreview h3 {
      font-weight: bold;
      color: #4D4D4D; }
  .example2 .CartPreview {
    margin-top: 4.5rem;
    border-top: 1px solid #CECECE; }

.Cards {
  display: inline-block;
  width: 11rem;
  height: 3rem;
  background-repeat: no-repeat;
  background-position: right top; }
  .Cards.american_express {
    background-image: url(Images/Icons/Payment-American_Express-64.png); }
  .Cards.diners_club {
    background-image: url(Images/Icons/Payment-Diners_Club-64.png); }
  .Cards.discover {
    background-image: url(Images/Icons/Payment-Discover-64.png); }
  .Cards.jcb {
    background-image: url(Images/Icons/Payment-JCB-64.png); }
  .Cards.mastercard {
    background-image: url(Images/Icons/Payment-MasterCard-64.png); }
  .Cards.unionpay {
    background-image: url(Images/Icons/Payment-UnionPay-64.png); }
  .Cards.visa {
    background-image: url(Images/Icons/Payment-Visa-64.png); }
  .Cards.unknown {
    background-image: url(Images/Icons/Payment-Unknown-64.png); }

.nostates .state {
  animation: fadeout 1.5s;
  animation-fill-mode: forwards; }

@keyframes fadeout {
  from {
    max-height: 999px;
    opacity: 1; }
  to {
    max-height: 0;
    opacity: 0; } }

@keyframes fadein {
  from {
    max-height: 0;
    opacity: 0; }
  to {
    max-height: 999px;
    opacity: 1; } }

@keyframes changing {
  from {
    background-color: #ffffff;
    font-weight: bold; }
  to {
    background-color: #f7f5bf;
    font-weight: normal; } }

.autocomplete {
  background: white;
  z-index: 1000;
  font: 14px/22px "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow: auto;
  box-sizing: border-box;
  border: 1px solid rgba(50, 50, 50, 0.6); }
  .autocomplete * {
    font: inherit; }
  .autocomplete > div {
    padding: 0 4px; }
  .autocomplete .group {
    background: #eee; }
  .autocomplete > div:hover:not(.group),
  .autocomplete > div.selected {
    background: #81ca91;
    cursor: pointer; }
