body {
    padding-top: 50px;
    font-family: lato, sans-serif;
    font-style: normal;
    font-weight: 300;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.sticky-footer {
  margin-top: auto;
  font-size: small;
}
h1 {
    font-family: lato, sans-serif;
    font-weight: bold;
}
#response {
    border: 1px solid #000;
    background-color: #f0f0f0;
    color: black;
    padding: 10px;
    margin-top: 20px;
}
.ellipsis {
    display: inline-block;
    font-size: 38%;
}

.ellipsis i {
    opacity: 0.4;
    animation: pulse 1.5s infinite;
}

.ellipsis i:nth-child(2) {
    animation-delay: 0.5s;
}

.ellipsis i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}
.user-link {
	color: inherit; /* This will inherit the color from parent element */
	text-decoration: none; /* This will remove the underline */
}
.plan-name {
	font-size: 1.2em; 
	font-kerning: 1;
	font-weight: bold;
	margin-bottom: 0;
}
.plan-description {
	font-size: 1em;
}
.plan-price {
	font-size: 1.5em;
	font-weight: bold;
}
.free-plan {
	color: #28a745;
}
.plan {
	border: 1px solid rgb(116, 116, 116);
	padding: 3px;
	margin: 3px;
}
#card-element {
	height: 40px;  /* or any other value that makes sense */
}