/*
 * Copyright (c) 2020 Signal Wow
 * ███████╗██╗ ██████╗ ███╗   ██╗ █████╗ ██╗         ██╗    ██╗ ██████╗ ██╗    ██╗
 * ██╔════╝██║██╔════╝ ████╗  ██║██╔══██╗██║         ██║    ██║██╔═══██╗██║    ██║
 * ███████╗██║██║  ███╗██╔██╗ ██║███████║██║         ██║ █╗ ██║██║   ██║██║ █╗ ██║
 * ╚════██║██║██║   ██║██║╚██╗██║██╔══██║██║         ██║███╗██║██║   ██║██║███╗██║
 * ███████║██║╚██████╔╝██║ ╚████║██║  ██║███████╗    ╚███╔███╔╝╚██████╔╝╚███╔███╔╝
 * ╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝╚═╝  ╚═╝╚══════╝     ╚══╝╚══╝  ╚═════╝  ╚══╝╚══╝
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to a commercial license from Signal Wow.
 * Use, copy, modification or distribution of this source file without written
 * license agreement from Signal Wow is strictly forbidden.
 * In order to obtain a license, please contact us: contact@signalwow.fr.
 *
 * @author Signal Wow <contact@signalwow.fr>
 * @copyright Copyright (c) Signal Wow
 * @license Commercial license
 */

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500&display=swap');

/* Variables */
:root {
    --gray-offset: rgba(0, 0, 0, 0.03);
    --gray-border: rgba(0, 0, 0, 0.15);
    --gray-light: rgba(0, 0, 0, 0.4);
    --gray-mid: rgba(0, 0, 0, 0.7);
    --gray-dark: rgba(0, 0, 0, 0.9);
    --body-color: var(--gray-mid);
    --headline-color: var(--gray-dark);
    --accent-color: #16A8FF;
    --error-color: red;
    --body-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 6px;
    --logo-image: url("https://storage.googleapis.com/stripe-sample-images/KAVHOLM.svg");
    --form-width: 343px;
}

/* Base */
* {
    box-sizing: border-box;
}

#enabled-accounts-section {
    font-family: var(--body-font-family);
    font-size: 16px;
    color: var(--body-color);
    -webkit-font-smoothing: antialiased;
}

#enabled-accounts-section h1,
#enabled-accounts-section h2,
#enabled-accounts-section h3,
#enabled-accounts-section h4,
#enabled-accounts-section h5,
#enabled-accounts-section h6 {
    margin-top: 2px;
    margin-bottom: 4px;
    color: var(--body-color);
}

#enabled-accounts-section h1 {
    font-size: 27px;
    color: var(--headline-color);
}

#enabled-accounts-section h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
}

/* Layout */
.sr-root {
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 980px;
    height: auto;
    min-height: 100vh;
    margin: 0 auto;
    padding: 48px;
}

.sr-header {
    margin-bottom: 32px;
}

.sr-payment-summary {
    margin-bottom: 20px;
}

.sr-main,
.sr-content {
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.sr-main {
    width: var(--form-width);
}

.sr-content {
    padding-left: 48px;
}

.sr-header__logo {
    width: 100%;
    height: 24px;
    background-image: var(--logo-image);
    background-repeat: no-repeat;
    background-size: contain;
}

.sr-legal-text {
    font-size: 13px;
    line-height: 17px;
    margin-top: 12px;
    text-align: center;
    color: var(--gray-light);
}

.sr-field-error {
    font-size: 13px;
    line-height: 17px;
    margin-top: 12px;
    text-align: left;
    color: var(--error-color);
}

/* Inputs */
.sr-input,
.sr-select,
#enabled-accounts-section input[type="text"] {
    width: 100%;
    height: 44px;
    padding: 5px 12px;
    transition: box-shadow 0.2s ease;
    color: #32325d;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius);
    background: white;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.sr-input:focus,
#enabled-accounts-section input[type="text"]:focus,
#enabled-accounts-section button:focus,
.focused {
    z-index: 9;
    outline: none;
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(50, 151, 211, 0.3);
}

.sr-input::placeholder,
#enabled-accounts-section input[type="text"]::placeholder {
    color: var(--gray-light);
}

/* Checkbox */
.sr-checkbox-label {
    position: relative;
    cursor: pointer;
}

.sr-checkbox-label input {
    margin-right: 6px;
    opacity: 0;
}

.sr-checkbox-label .sr-checkbox-check {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    background-color: white;
}

.sr-checkbox-label input:focus ~ .sr-checkbox-check {
    outline: none;
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(50, 151, 211, 0.3);
}

.sr-checkbox-label input:checked ~ .sr-checkbox-check {
    background-color: var(--accent-color);
    background-color: #16A8FF;
    background-image: url("https://storage.googleapis.com/stripe-sample-images/icon-checkmark.svg");
    background-repeat: no-repeat;
    background-position: -1px -1px;
    background-size: 16px;
}

/* Select */
.sr-select {
    display: block;
    height: 44px;
    margin: 0;
    background-image: url("https://storage.googleapis.com/stripe-sample-images/icon-chevron-down.svg");
    background-repeat: no-repeat, repeat;
    background-position: right 12px top 50%, 0 0;
    background-size: 0.65em auto, 100%;
}

.sr-select:after {
}

.sr-select::-ms-expand {
    display: none;
}

.sr-select:hover {
    cursor: pointer;
}

.sr-select:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(50, 151, 211, 0.3), 0 1px 1px 0 rgba(0, 0, 0, 0.07),
    0 0 0 4px rgba(50, 151, 211, 0.3);
}

.sr-select option {
    font-weight: 400;
}

.sr-select:invalid {
    color: var(--gray-light);
    background-opacity: 0.4;
}

/* Combo inputs */
.sr-combo-inputs {
    display: flex;
    flex-direction: column;
}

.sr-combo-inputs input,
.sr-combo-inputs .sr-select {
    border-bottom: 0;
    border-radius: 0;
}

.sr-combo-inputs > input:first-child,
.sr-combo-inputs > .sr-select:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.sr-combo-inputs > input:last-child,
.sr-combo-inputs > .sr-select:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 0 var(--radius) var(--radius);
}

.sr-combo-inputs > .sr-combo-inputs-row:last-child input:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 0 0 var(--radius);
}

.sr-combo-inputs > .sr-combo-inputs-row:last-child input:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 0 var(--radius) 0;
}

.sr-combo-inputs > .sr-combo-inputs-row:first-child input:first-child {
    border-radius: var(--radius) 0 0 0;
}

.sr-combo-inputs > .sr-combo-inputs-row:first-child input:last-child {
    border-radius: 0 var(--radius) 0 0;
}

.sr-combo-inputs > .sr-combo-inputs-row:first-child input:only-child {
    border-radius: var(--radius) var(--radius) 0 0;
}

.sr-combo-inputs-row {
    display: flex;
    width: 100%;
}

.sr-combo-inputs-row > input {
    width: 100%;
    border-radius: 0;
}

.sr-combo-inputs-row > input:first-child:not(:only-child) {
    border-right: 0;
}

.sr-combo-inputs-row:not(:first-of-type) .sr-input {
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Buttons and links */

#enabled-accounts-section a {
    transition: all 0.2s ease;
    text-decoration: none;
    color: #16A8FF;
}

#enabled-accounts-section a:hover {
    filter: brightness(0.8);
}

#enabled-accounts-section a:active {
    filter: brightness(0.5);
}

/* Code block */
.sr-callout {
    overflow: auto;
    max-height: 200px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--gray-offset);
}

#enabled-accounts-section code,
#enabled-accounts-section pre {
    font-family: "SF Mono", "IBM Plex Mono", "Menlo", monospace;
    font-size: 12px;
}

/* Stripe Element placeholder */
.sr-card-element {
    padding-top: 12px;
}

/* Responsiveness */
@media (max-width: 720px) {
    .sr-root {
        flex-direction: column;
        justify-content: flex-start;
        min-width: 320px;
        padding: 48px 20px;
    }

    .sr-header__logo {
        background-position: center;
    }

    .sr-payment-summary {
        text-align: center;
    }

    .sr-content {
        display: none;
    }

    .sr-main {
        width: 100%;
    }
}

.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    font-size: 22px;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0px auto;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    text-indent: -99999px;
    color: #ffffff;
    box-shadow: inset 0 0 0 2px;
}

.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}

.spinner:before {
    top: -0.2px;
    left: -0.2px;
    width: 10.4px;
    height: 20.4px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
    border-radius: 20.4px 0 0 20.4px;
    background: #16A8FF;
}

#enabled-accounts-section button:hover .spinner:before,
#enabled-accounts-section button:hover .spinner:after {
    background: #ff9916;
}

.spinner:after {
    top: -0.1px;
    left: 10.2px;
    width: 10.4px;
    height: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
    border-radius: 0 10.2px 10.2px 0;
    /*background: var(--accent-color);*/
    background: transparent;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.cvs-payment-label {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    color: #333;
}

.cvs-payment-or-container {
    margin-left: 23px;
}

.cvs-payment-container.cvs-payment-form-no-stored-card {
    margin-left: inherit;
}

#uniform-store_payment_method {
    display: inline-block;
}

.cvs-loader {
    position: absolute;
    z-index: 100;
    top: calc(50% - 250px);
    margin-left: 0;
    transform: translate(50%, 50%);
    text-align: center;
}

.cvs-loader-text {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    color: #333;
}

.cvs-loading {
    opacity: 0.3;
}

@media (max-width: 1200px) {
    .cvs-payment-or-container,
    .cvs-payment-container {
        margin-left: 19px;
    }

    .cvs-loader {
        margin-left: 0;
    }
}

#HOOK_PAYMENT > .row {
    position: relative;
}

@media (max-width: 992px) {
    .cvs-payment-or-container,
    .cvs-payment-container {
        float: left;
        margin-left: 0;
    }

    #HOOK_PAYMENT > .row {
        margin-right: 0;
        margin-left: 0;
    }

    .cvs-payment-or-container {
        margin-top: 0;
    }

    .cvs-payment-container.cvs-saved-card-container {
        padding-top: 15px;
    }

    .cvs-loader {
        top: calc(50% - 250px);
        float: none;
        transform: translate(0, 50%);
    }
}

/*
Card
 */

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0e.ttf) format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN8rsOUuhs.ttf) format('truetype');
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 324px;
    height: 205px;
    color: #fff;
    font: 21px/1 'Source Code Pro', monospace;
    background: #23189a;
    border: 1px solid #1e1584;
    -webkit-border-radius: 10px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 10px;
    -moz-background-clip: padding;
    border-radius: 10px;
    background-clip: padding-box;
    overflow: hidden;
    max-width: 100%;
}

.bank-name {
    float: right;
    margin-top: 15px;
    margin-right: 30px;
    font: 800 28px 'Open Sans', Arial, sans-serif;
}

.chip {
    position: relative;
    z-index: 1000;
    width: 50px;
    height: 40px;
    margin-top: 50px;
    margin-bottom: 10px;
    margin-left: 30px;
    background: #fffcb1;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #fffcb1), color-stop(100%, #b4a365));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #fffcb1 0%, #b4a365 100%);
    /* IE10+ */
    background: linear-gradient(135deg, #fffcb1 0%, #b4a365 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fffcb1", endColorstr="#b4a365", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    border: 1px solid #322d28;
    -webkit-border-radius: 10px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 10px;
    -moz-background-clip: padding;
    border-radius: 10px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    -moz-box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    box-shadow: 0 1px 2px #322d28, 0 0 5px 0 0 5px rgba(144, 133, 87, 0.25) inset;
    overflow: hidden;
}

.chip .side {
    position: absolute;
    top: 8px;
    width: 12px;
    height: 24px;
    border: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}

.chip .side.left {
    left: 0;
    border-left: none;
    -webkit-border-radius: 0 2px 2px 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0 2px 2px 0;
    -moz-background-clip: padding;
    border-radius: 0 2px 2px 0;
    background-clip: padding-box;
}

.chip .side.right {
    right: 0;
    border-right: none;
    -webkit-border-radius: 2px 0 0 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px 0 0 2px;
    -moz-background-clip: padding;
    border-radius: 2px 0 0 2px;
    background-clip: padding-box;
}

.chip .side:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 0px;
    margin: auto;
    border-top: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}

.chip .vertical {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 8.66666667px;
    height: 12px;
    border: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1), 0 0 4px rgba(0, 0, 0, 0.1) inset;
}

.chip .vertical.top {
    top: 0;
    border-top: none;
}

.chip .vertical.top:after {
    top: 12px;
    width: 17.33333333px;
}

.chip .vertical.bottom {
    bottom: 0;
    border-bottom: none;
}

.chip .vertical.bottom:after {
    bottom: 12px;
}

.chip .vertical:after {
    content: '';
    position: absolute;
    left: -8.66666667px;
    display: inline-block;
    width: 26px;
    height: 0px;
    margin: 0;
    border-top: 1px solid #322d28;
    -webkit-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(144, 133, 87, 0.25) inset, 0 0 5px rgba(144, 133, 87, 0.25), 0 0 4px rgba(0, 0, 0, 0.1);
}

.data {
    position: relative;
    z-index: 100;
    margin-left: 30px;
    text-transform: uppercase;
}

.data .pan,
.data .month,
.data .year,
.data .year:before,
.data .name-on-card,
.data .date {
    position: relative;
    z-index: 20;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000;
}

.data .pan:before,
.data .month:before,
.data .year:before,
.data .year:before:before,
.data .name-on-card:before,
.data .date:before,
.data .pan:after,
.data .month:after,
.data .year:after,
.data .year:before:after,
.data .name-on-card:after,
.data .date:after {
    position: absolute;
    z-index: -10;
    content: attr(title);
    color: rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.data .pan:before,
.data .month:before,
.data .year:before,
.data .year:before:before,
.data .name-on-card:before,
.data .date:before {
    top: -1px;
    left: -1px;
    color: rgba(0, 0, 0, 0.1);
}

.data .pan:after,
.data .month:after,
.data .year:after,
.data .year:before:after,
.data .name-on-card:after,
.data .date:after {
    top: 1px;
    left: 1px;
    z-index: 10;
}

.data .pan {
    position: relative;
    z-index: 50;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    font-size: 21px;
}

@media (max-width: 390px) {
    .data .pan {
        font-size: 16px;
    }
}

.data .first-digits {
    margin: 0;
    font: 400 10px/1 'Open Sans', Arial, sans-serif;
}

.data .exp-date-wrapper {
    margin-top: 5px;
    margin-left: 64px;
    line-height: 1;
    *zoom: 1;
}

.data .exp-date-wrapper:before,
.data .exp-date-wrapper:after {
    content: " ";
    display: table;
}

.data .exp-date-wrapper:after {
    clear: both;
}

.data .exp-date-wrapper .left-label {
    float: left;
    display: inline-block;
    width: 40px;
    font: 400 7px/8px 'Open Sans', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.data .exp-date-wrapper .exp-date {
    display: inline-block;
    float: left;
    margin-top: -10px;
    margin-left: 10px;
    text-align: center;
}

.data .exp-date-wrapper .exp-date .upper-labels {
    font: 400 7px/1 'Open Sans', Arial, sans-serif;
}

.data .exp-date-wrapper .exp-date .year:before {
    content: '/';
}

.data .name-on-card {
    margin-top: 10px;
}

.lines-down:before {
    content: '';
    position: absolute;
    top: 80px;
    left: -200px;
    z-index: 10;
    width: 550px;
    height: 400px;
    border-top: 2px solid #392db2;
    -webkit-border-radius: 40% 60% 0 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 40% 60% 0 0;
    -moz-background-clip: padding;
    border-radius: 40% 60% 0 0;
    background-clip: padding-box;
    box-shadow: 1px 1px 100px #4035b2;
    background: #2d21a6;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(45, 33, 166, 0)), color-stop(100%, #2d21a6));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(45, 33, 166, 0)", endColorstr="#2d21a6", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.lines-down:after {
    content: '';
    position: absolute;
    top: 20px;
    left: -100px;
    z-index: 10;
    width: 350px;
    height: 400px;
    border-top: 2px solid #392db2;
    -webkit-border-radius: 20% 80% 0 0;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 20% 80% 0 0;
    -moz-background-clip: padding;
    border-radius: 20% 80% 0 0;
    background-clip: padding-box;
    box-shadow: inset -1px -1px 44px #4035b2;
    background: #2d21a6;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(45, 33, 166, 0)), color-stop(100%, #2d21a6));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(45, 33, 166, 0)", endColorstr="#2d21a6", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.lines-up:before {
    content: '';
    position: absolute;
    top: -110px;
    left: -70px;
    z-index: 2;
    width: 480px;
    height: 300px;
    border-bottom: 2px solid #392db2;
    -webkit-border-radius: 0 0 60% 90%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0 0 60% 90%;
    -moz-background-clip: padding;
    border-radius: 0 0 60% 90%;
    background-clip: padding-box;
    box-shadow: inset 1px 1px 44px #4035b2;
    background: #4031b2;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, rgba(64, 49, 178, 0) 100%, #23189a 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(64, 49, 178, 0)), color-stop(100%, #23189a));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(64, 49, 178, 0) 100%, #23189a 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(64, 49, 178, 0) 44%, #23189a 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(64, 49, 178, 0) 44%, #23189a 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(64, 49, 178, 0) 44%, #23189a 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(64, 49, 178, 0)", endColorstr="#23189a", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.lines-up:after {
    content: '';
    position: absolute;
    top: -180px;
    left: -200px;
    z-index: 1;
    width: 530px;
    height: 420px;
    border-bottom: 2px solid #4035b2;
    -webkit-border-radius: 0 40% 50% 50%;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0 40% 50% 50%;
    -moz-background-clip: padding;
    border-radius: 0 40% 50% 50%;
    background-clip: padding-box;
    box-shadow: inset 1px 1px 44px #4035b2;
    background: #2d21a6;
    /* Old browsers */
    background: -moz-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(45, 33, 166, 0)), color-stop(100%, #2d21a6));
    /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 100%, #2d21a6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(45, 33, 166, 0) 44%, #2d21a6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(45, 33, 166, 0)", endColorstr="#2d21a6", GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.cart-container {
    position: relative;
    display: block;
    min-height: 205px;
}

/*
End Card
 */
