


body * {
  box-sizing: border-box;
  font-family: 'Josefin Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.5em;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

b {
  font-weight: bold;
}

.showmore-link{
    color: #2939a0 ;
    text-decoration: none!important;
}
.showmore-link:hover{color: #ff2f59;
    text-decoration: underline !important;
}
.fas {
    color: #5862ff !important;
}
.back-link{
    color: #5862ff !important;
    text-decoration: none!important;
}

.back-link:hover{color: #2939a0 !important;
    text-decoration: underline !important;
}

.back-link-alt{
    color: #5862ff;
    text-decoration: none!important;
}

.back-link-alt:hover{color: #2939a0;
    text-decoration: underline !important;
}

a{color: #5862ff;
    text-decoration: none;
}
a:hover{color: #2939a0;
}

.app {
  background-color:#e4e7ef;
  width: 100%;
  height: 100%;
  overflow-x:hidden;
}

.app-container-75 {
  width: 75%;
  margin: 0 auto;
}

.app-container-60 {
  width: 60%;
  margin: 0 auto;
  max-width: 550px;
  min-width: 280px;
}

/* CARD */



.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-btn, button.card-btn {
  border-radius: 50px;
color: #2939a0;
padding: .5rem 2rem;
border-radius: 50px;
background: #e4e7ef;
box-shadow: 6px 6px 9px #a0a2a7,-6px -6px 9px #ffffff;
font-size:1.2rem;
}

.card-btn:hover {
     color: #2939a0;
    background: #e4e7ef;
    box-shadow: inset 6px 6px 9px #a0a2a7,inset -6px -6px 9px #ffffff;
}
}



.card-centered {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-centered .card-body {
  padding: 48px 24px;
}

.card .success-icon {
  color: #69ffcc;
  font-size: 60px;
}

.card .error-icon {
  color: #ff5252;
  font-size: 60px;
}

/* HEADERS + TEXT */
.header-uppercase {
  margin: 0px;
  text-transform: uppercase;
}

.header-white {
  color: white;
}

.header-blue {
  color: #5862ff;
  font-weight: 600;
}

.header-red {
  color: #ff5252;
  font-weight: 600;
}

.header-margin-bottom {
  margin-bottom: 24px;
}

.helper-text {
  color: #5862ff;
  line-height: 1.25;
  font-size: 16px;
}

.helper-text-small {
  color: #777777;
  line-height: 1.4;
  font-size: 14px;
}

/* PRICE */
.price {
  margin: 0px;
}

.price span { /* Interval */
  font-size: 18px;
  color: #757575;
}


/* INPUTS */
input, .StripeElement {
  border: none;
  padding: 12px;
  border-radius: 2px;
  background-color: #c1cffb;
  color: #2939a0;
  border-bottom: 2px solid transparent;
  -webkit-transition: border 250ms ease;
  transition: border 250ms ease;
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 600;
  width: 100%;
}

input::placeholder {
  color: #6099EE;
  font-weight: 600;
}

input:focus, button:focus {
  outline: none;
}



.StripeElement--invalid {
  border-color: #ff5252;
}

#card-errors {
  color: #ff5252;
}

/* LOADER */
.loader {
  display: inline-block;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #5862ff;
  width: 48px;
  height: 48px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* HIDDEN */
.hide {
  display: none;
}