﻿

.navbar:after {
    content: ' ';
    background-image: -webkit-gradient(linear,left top,left bottom,from(#565d71),to(#2b303f));
    background-image: linear-gradient(to bottom,#565d71,#2b303f);
    position: absolute;
    top: -400px;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    border-radius: 0;
}

.stripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.stripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.stripeElement--invalid {
    border-color: #fa755a;
}

.stripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

.selectedPlan {
    border: dotted 1.5px gray;
}

.stripeLogo {
    height: 50px;
}

.loadingButton:after {
    content: " ";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 50%;
    border-top-color: #ed5f74;
    animation: spin 0.9s ease-in-out infinite;
    -webkit-animation: spin 0.9s ease-in-out infinite;
    margin-left: 5px;
    float: right;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}



#subscriptionCreateSubmit {
    min-width: 320px;
}
