body {
	padding-top: 40px;
}

body, p {
    color: rgb(1, 14, 45);
    font-size: 15px;
    background-color: rgb(249, 250, 251);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6 .h6 {
    color: rgb(1, 14, 45);
}

a:not(.btn),
a:not(.btn):hover {
    color: rgb(1, 14, 45);
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
    color: #fff;
    font-weight: 500;
}

.btn.btn-primary:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 2px 8px rgba(0, 0, 0, 0.05), 0px 8px 16px rgba(0, 0, 0, 0.05);
}

a.text-primary {
	text-decoration: underline;
}

.btn {
    border-radius: 3px;
    text-align: center;
    padding: .375rem .75rem;
    justify-content: center; 
}

a.text-primary:hover {
	text-decoration: none;
}

.btn.disabled {
    background-color: rgb(246, 247, 248);
    border-color: rgb(246, 247, 248);
    color: #677294;
}

.card {
    border: 1px solid rgba(0, 0, 0, 0);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
}

.thumbnail-card {
    transition: 0.2s;
    border-radius: 0px;
    border: 2px solid rgb(240, 240, 240);
    flex: initial;
}

.thumbnail-card:not(.active):hover {
    border: 2px solid rgba(220, 220, 220);
    transition: 0.2s;
}

.thumbnail-card.active {
    border: 2px solid rgba(200, 200, 200);
    transition: 0.2s;
}

.thumbnail-card img {
	max-width: 100%;
	height: auto;
}

.step-2 img {
	max-width: 100%;
}

.ql-align-center {
    text-align: center;
}

.logo {
	max-width: 80px;
}

.form-control,
.form-control:focus {
	font: 300 15px "Poppins", sans-serif;
    color: #677294;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px rgba(12, 0, 46, 0.06);
    box-shadow: 0px 2px 4px rgba(12, 0, 46, 0.06);
    border: 1px solid transparent;
    height: 60px;
    padding: 0px 30px;
}

.form-control:focus {
	border-color: #f2effc;
    -webkit-box-shadow: 0px 2px 4px rgba(12, 0, 46, 0.06), 0px 5px 10px 0px rgba(12, 0, 46, 0.04);
    box-shadow: 0px 2px 4px rgba(12, 0, 46, 0.06), 0px 5px 10px 0px rgba(12, 0, 46, 0.04);
}

textarea.form-control,
textarea.form-control:focus {
	height: auto;
	padding: 20px 30px;
}

.py-2-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

/*.btn > span {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;	
}

.btn.border-thin > span {
	margin: 0 auto;
}

@media (min-width: 1400px){
	.container {
	    width: 1250px;
	}
}

.spinner {
	border-style: solid;
	border-width: 2px;
	border-color: rgb(247, 247, 247);

	border-left-style: solid;
	border-left-width: 2px;
	border-left-color: rgb(38, 86, 252);

	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.spinner--sm {
	height: 25px;
	width: 25px;
}

.spinner--xs {
	height: 20px;
	width: 20px;
}

.spinner--xxs {
	height: 15px;
	width: 15px;
}

.spinner--primary {
	border-color: #fff;
	border-left-color: rgb(38, 86, 252);
}

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

.btn-secondary {
	background-color: transparent;
}

.p-xl-5 {
    padding: 3rem!important;
}

.p-4-5 {
	padding: 2.25rem !important;
}

.mb-4-5 {
	margin-bottom: 2.25rem !important;
}*/

label {
    color: rgb(1, 14, 45);
    font-size: 14px;
    font-weight: 500;
}

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