.cc-form .error {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
    top: 100%;
    margin-top: 20px;
    left: 0;
    padding: 0 15px;
    font-size: 13px !important;
    opacity: 0;
    transform: translateY(10px);
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cc-form .error.visible {
    opacity: 1;
    transform: none;
}

.cc-form .error .message {
    font-size: inherit;
}

.cc-form .error svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: -1px;
    margin-right: 10px;
}

.cc-form .success {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
}

@media (min-width: 670px) {
    .cc-form .success {
        padding: 40px;
    }
}

.cc-form .success > * {
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(50px);
}

.cc-form .success .icon {
    margin: 15px 0 30px;
    transform: translateY(70px) scale(0.75);
}

.cc-form .success .icon svg {
    will-change: transform;
}

.cc-form .success .icon .border {
    stroke-dasharray: 251;
    stroke-dashoffset: 62.75;
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: spin 1s linear infinite;
}

.cc-form .success .icon .checkmark {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s;
}

.cc-form .success .title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cc-form .success .message {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6em;
}

.cc-form .success .message span {
    font-size: inherit;
}

.cc-form .success .reset:active {
    transition-duration: 0.15s;
    transition-delay: 0s;
    opacity: 0.65;
}

.cc-form .success .reset svg {
    will-change: transform;
}

.cc-form.cc-element {
    background-color: #fff;
}

.cc-form.cc-element * {
    font-size: 16px;
    font-weight: 500;
}

.cc-form.cc-element .row {
    display: -ms-flexbox;
    display: flex;
    margin: 0 5px 10px;
}

.cc-form.cc-element .field {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 10px;
}

.cc-form.cc-element .field.three-quarter-width{
    width:75%;
}

.cc-form.cc-element .field.half-width {
    width: 50%;
}

.cc-form.cc-element .field.quarter-width {
    width: calc(25% - 10px);
}

.cc-form.cc-element .field.one-third-width {
    width:33%;
}

.cc-form.cc-element .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);
}

.cc-form.cc-element 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);
}

.cc-form.cc-element .input {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-bottom: 7px;
    color: #32325d;
    background-color: transparent;
}

.cc-form.cc-element .input::-webkit-input-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cc-form.cc-element .input::-moz-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cc-form.cc-element .input:-ms-input-placeholder {
    color: transparent;
    transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cc-form.cc-element .input.StripeElement {
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity;
}

.cc-form.cc-element .input.focused,
.cc-form.cc-element .input:not(.empty) {
    opacity: 1;
}

.cc-form.cc-element .input.focused::-webkit-input-placeholder,
.cc-form.cc-element .input:not(.empty)::-webkit-input-placeholder {
    color: #cfd7df;
}

.cc-form.cc-element .input.focused::-moz-placeholder,
.cc-form.cc-element .input:not(.empty)::-moz-placeholder {
    color: #cfd7df;
}

.cc-form.cc-element .input.focused:-ms-input-placeholder,
.cc-form.cc-element .input:not(.empty):-ms-input-placeholder {
    color: #cfd7df;
}

.cc-form.cc-element .input.focused + label,
.cc-form.cc-element .input:not(.empty) + label {
    color: #aab7c4;
    transform: scale(0.85) translateY(-25px);
    cursor: default;
}

.cc-form.cc-element .input.focused + label {
    color: #0960bd;
}

.cc-form.cc-element .input.invalid + label {
    color: #ffa27b;
}

.cc-form.cc-element .input.focused + label + .baseline {
    background-color: #0960bd;
}

.cc-form.cc-element .input.focused.invalid + label + .baseline {
    background-color: #e25950;
}

.cc-form.cc-element input, .cc-form.cc-element button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-style: none;
}

.cc-form.cc-element input:-webkit-autofill {
    -webkit-text-fill-color: #e39f48;
    transition: background-color 100000000s;
    -webkit-animation: 1ms void-animation-out;
}

.cc-form.cc-element .StripeElement--webkit-autofill {
    background: transparent !important;
}

.cc-form.cc-element input, .cc-form.cc-element button {
    -webkit-animation: 1ms void-animation-out;
}

.cc-form.cc-element button {
    display: block;
    width: calc(100% - 30px);
    height: 40px;
    margin: 40px 15px 0;
    background-color: #0960bd;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.cc-form.cc-element input:active {
    /*
    background-color: #159570;
    */
}

.cc-form.cc-element .error svg {
    margin-top: 0 !important;
}

.cc-form.cc-element .error svg .base {
    fill: #e25950;
}

.cc-form.cc-element .error svg .glyph {
    fill: #fff;
}

.cc-form.cc-element .error .message {
    color: #e25950;
}

.cc-form.cc-element .success .icon .border {
    stroke: #abe9d2;
}

.cc-form.cc-element .success .icon .checkmark {
    stroke: #0960bd;
}

.cc-form.cc-element .success .title {
    color: #32325d;
    font-size: 16px !important;
}

.cc-form.cc-element .success .message {
    color: #8898aa;
    font-size: 13px !important;
}

.cc-form.cc-element .success .reset path {
    fill: #0960bd;
}