/* ---------- HEADER ---------- */
@media (max-width: 1310px) {
    header {
        width: 95vw;
        margin: 0;
        padding-right: 0;
        padding-left: 70px;
    }
}


header nav ul li {
    color: #282828;
    font-weight: 400;
    font-size: 1.3em;
    /*letter-spacing: 0.6em;*/
}

/*header nav ul li:nth-child(6) {
    color: #fff;
}*/

/* ---------- FOOTER ---------- */
footer .improving {
    background-color: #7850e4;
}

footer .improving .improving-content h2 {
    color: #fff;
}

footer .improving .improving-content .button {
    background-color: #fff;
    color: #7850e4;
}

/* ---------- MAIN ---------- */
body {
    background-color: #fafafa;
}

#main {
    margin-top: 70px;
}

#main #main-content h1,
#main #main-content h4,
#main #main-content p {
    text-align: center;
    margin-bottom: 15px;
}


#main #main-content p {
    width: 80%;
    margin: 0 auto;
}

#options {
    margin-top: 50px;
    background-color: #fff;
}

#options #options-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

#transaction-inquiry-paidwith {
    height:3.3rem !important;
    font-size:150%;
    border:none;
}

@media (max-width: 820px) {
    #options #options-content ul {
        flex-direction: column;
    }
}

#options #options-content ul li {
    text-transform: uppercase;
    font-size: 1.8rem;
    padding: 3px 15px;
    transition: background-color .3s, color .3s;
}

@media (max-width: 820px) {
    #options #options-content ul li {
        text-align: center;
        padding: 3px 0;
        width: 100%;
    }
}

.hightlightbg {
  background-color: #7850e4;
  color: #fff;

}

#options #options-content ul li:hover {
    cursor: pointer;
    background-color: #7850e4;
    color: #fff;
}

#options #options-content ul li:nth-of-type(2) {
    border-right: 1px solid black;
    border-left: 1px solid black;
}

@media (max-width: 820px) {
    #options #options-content ul li:nth-of-type(2) {
        border: none;
    }
}

#form-sizer {
  margin: 50px auto 50px auto;
}

#form-window {
    margin: auto;
    display: flex;
    flex-direction: row;
    max-width: 820px;
    justify-content: space-between;
}

#form-content {
    width: 50%;
    height: fit-content;
}

.left-column {
    width: 40%;
    height: fit-content;
    font-size: 1.5rem;
    font-weight: 300;
}

#form {
    width: 100%;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 17px 0px #ededed;
    position: relative;
    flex: 1;
    backface-visibility: hidden;
}

@media (max-width: 820px) {
    #form {
        width: 95%;
    }
}

#form label {
    text-transform: uppercase;
}

#interest #form-amount label,
#interest #form-paidwith label,
#interest #form-truncard label,
#interest #send {
    margin-top: 10px;
}

#form .form-item > .input-height {
    height: 3.3rem !important;
}

.form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
}

#form-textbox {
    height: 6rem;
}

.iframe-content {
  min-height: 140px;
}

#send button {
    display: block;
    background-color: #7850e4;
    color: #fff;
    margin: 0 auto;
    border: none;
}

#search-results {
    border: 0;
    height: 100%;
    width: 100%;
    min-height: 140px;
}

.flipper .back .close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    cursor: pointer;
    z-index: 999;
}

.input-height {
    border: 1px solid #E3E3E3;
    border-radius: 3px;
}

#send button:hover {
    background-color:#9979ee;
}

#transaction,
/*#interest*/ {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
}

@media (max-width: 600px) {
    #transaction,
    #interest {
        grid-template-columns: 100%;
    }
}

#transaction #form-textbox,
#transaction #send,
/*#interest #form-textbox,
#interest #send*/ {
    grid-column: 1 / -1;
}

  .form-main input,
  .form-main textarea,
  .form-main label {
    font-family: 'Hind',sans-serif;
    font-size: 16px;
    font-weight: 500;
    resize: none;
}


  .form-main .baseline {
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #cfd7df;
    -webkit-transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: background-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .form-main .field {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 5px 10px;
  }
  
  .form-main label {
    position: absolute;
    width: 100%;
    left: 0;
    top: 13px;
    color: #cfd7df;
    padding-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    cursor: text;
    -webkit-transition-property: color, -webkit-transform;
    transition-property: color, -webkit-transform;
    transition-property: color, transform;
    transition-property: color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .form-main .input {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-bottom: 7px;
    color: #32325d;
    background-color: transparent;
  }
  
  .form-main .input::-webkit-input-placeholder {
    color: transparent;
    -webkit-transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .form-main .input::-moz-placeholder {
    color: transparent;
    -webkit-transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .form-main .input:-ms-input-placeholder {
    color: transparent;
    -webkit-transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .form-main .input.StripeElement {
    opacity: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity;
  }
  
  .form-main .input.focused,
  .form-main .input:not(.empty) {
    opacity: 1;
  }
  
  .form-main .input.focused::-webkit-input-placeholder,
  .form-main .input:not(.empty)::-webkit-input-placeholder {
    color: #cfd7df;
  }
  
  .form-main .input.focused::-moz-placeholder,
  .form-main .input:not(.empty)::-moz-placeholder {
    color: #cfd7df;
  }
  
  .form-main .input.focused:-ms-input-placeholder,
  .form-main .input:not(.empty):-ms-input-placeholder {
    color: #cfd7df;
  }
  
  .form-main .input.focused + label,
  .form-main .input:not(.empty) + label,
  .form-main .input:focus + label,
  .form-main .input:hover + label {
    color: #7850E4;
    -webkit-transform: scale(0.85) translateY(-25px);
    transform: scale(0.85) translateY(-25px);
    cursor: default;
  }
  
  .form-main .input.focused + label {
    color: #7850E4;
  }
  
  .form-main .input.invalid + label {
    color: #ffa27b;
  }
  
  .form-main .input.focused + label + .baseline {
    background-color: #7850E4;
  }
  
  .form-main .input.focused.invalid + label + .baseline {
    background-color: #e25950;
  }
  
  .form-main input, .form-main button, .form-main textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-style: none;
  }
  
  .form-main input:-webkit-autofill {
    -webkit-text-fill-color: #777777;
    -webkit-transition: background-color 100000000s;
    transition: background-color 100000000s;
    -webkit-animation: 1ms void-animation-out;
  }
  
  .form-main .StripeElement--webkit-autofill {
    background: transparent !important;
  }
  
  .form-main input, .form-main button {
    -webkit-animation: 1ms void-animation-out;
  }
  
  .form-main label.filled {
    transition: all .3s;
    transform: scale(0.85) translateY(-25px);
    color: #7850E4;
  }

  @media (max-width: 820px) {
    #form-window {
      flex-direction: column;
      align-items: center;
    }
    #form-window .left-column {
      width: 90%;
      margin-bottom: 20px;
    }
    #form-window #form-content {
      width: 90%;
    }
  }

  @keyframes no-show {
    0% {
        transform: rotateY(0deg);
    height: auto;
    width: 100%;
    }

    49% {
        height: auto;
        width: 100%;
    }

    50% {
        height: 0;
        width: 0;
    }

    100% {
        transform: rotateY(180deg);
        height: 0;
        width: 0;
    }
}

@keyframes show {
    0% {
        transform: rotateY(-180deg);
        height: 0;
        width: 0;
    }

    49% {
        height: 0;
        width: 0;
    }

    50% {
        height: auto;
        width: 100%;
    }

    100% {
        transform: rotateY(0deg);
        height: auto;
        width: 100%;
    }
}

.flipper {
	position: relative;
}

.flipper .back {
  height: 0;
}

.front, .back {
	position: relative;
	perspective: 1000px;
	transform-style: preserve-3d;
	perspective-origin: top center;
  animation-duration: 500ms;
  animation-delay: -2s;
	animation-timing-function: linear;
	transition-property: transform;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	overflow: hidden;
}

.flipper.inactive .front {
	z-index: 2;
	transform: rotateY(0deg);
  animation-name: show;
  animation-delay: 0s;
}

.flipper.active .front {
  animation-name: no-show;
  animation-delay: 0s;
}

.front .inner {
	height: 300px;
	background: green;
}

.flipper.inactive .back {
	transform: rotateY(-180deg);
  animation-name: no-show;
  animation-delay: 0s;
}

.flipper.active .back {
  animation-name: show;
  animation-delay: 0s;
}

.back .inner {
	height: 400px;
	background: blue;
}
/*# sourceMappingURL=support.css.map */