body{
	background: #fff;
	color: #303030;
	font-size: 15px;
	line-height: 1.25;
	font-family: Arial;
}

.inner {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
}

.app-wrapper {
	padding: 75px 10px;
}

@media screen and (max-width: 768px){
	.app-wrapper {
		padding: 25px 10px;
	}
}

.app-card {
	min-width: 360px;
	background: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 30px 40px;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,.25);
	-moz-box-shadow: 0 5px 10px 0 rgba(0,0,0,.25);
	-webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.25);
}

.form-field {
	/* padding: 5px; */
	margin-bottom: 5px;
}

.input {
	width: 100%;
	border: none;
	border-bottom: 1px solid #cccccc;
	padding: 5px 10px;
	outline: none;
}

.app-card-title {
	font-size: 1.25rem;
	font-weight: bold;
	display: block;
}

.label-tip {
	font-size: .8rem;
    color: #757575;
    transform: translate(.5rem, .25rem);
    -moz-transform: translate(.5rem, .25rem);
    -webkit-transform: translate(.5rem, .25rem);
}

.btn-add {
	cursor: pointer;
	min-width: 200px;
	padding: .75rem 1.5rem;
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	display: inline-block;
	background: #aeaeae;
	border: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	outline: none;
}

.btn-submit {
	cursor: pointer;
	min-width: 250px;
	padding: 1rem 2rem;
	color: #fff;
	font-size: 1.25rem;
	text-align: center;
	display: inline-block;
	background: #c42033;
	border: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	outline: none;
}

.input-wrong {
	box-shadow: 0 5px 15px 0 red;
	-moz-box-shadow: 0 5px 15px 0 red;
	-webkit-box-shadow: 0 5px 15px 0 red;
}

.btn-open {
	cursor: pointer;
	width: 16px;
	height: 16px;
	background: url('../img/icon-minus.png') 0 0 no-repeat;
}
.collapsed .btn-open {
	background-image: url('../img/icon-plus.png');
}

.btn-remove {
	cursor: pointer;
	width: 12px;
	height: 14px;
	background: url('../img/icon-remove.png') 0 0 no-repeat;
	display: inline-block;
}

.vm-filled .btn-remove-wrapper {
	opacity: 0.1;
}

.fw-bold {
	font-weight: bold!important;
}
.fs-lil-bigger {
	font-size: 1.1em!important;
}
.fs-bigger {
	font-size: 1.25em!important;
}
.fs-even-bigger {
	font-size: 1.5em!important;
}
.fs-the-biggest {
	font-size: 2em!important;
}
.has-tip {
	position: relative;
}

.tip-icon-wrapper {
	position: absolute;
	display: inline-block;
	right: 0;
	top: 0;
}
.tip-inner {
	display: none;
	position: absolute;
	padding: .5rem;
	display: none;
	font-size: .75rem;
	z-index: 99;
	border-radius: .5rem;
	-moz-border-radius: .5rem;
	-webkit-border-radius: .5rem;
	background: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	width: 275px;
	
	right: 0;
}
.tip-icon-wrapper:hover .tip-inner {
	display: block;
}

.tip-icon {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: #fff;
	line-height: 25px;
	text-align: center;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
	cursor: pointer;
}

.tip-heading {
	padding: .5rem .5rem .25rem;
	font-size: 1.1em;
	font-weight: bold;
}
.tip-content {
	padding: .25rem .5rem .5rem;
	max-height: 350px;
	overflow: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.hidden-wrapper {
	visibility: hidden;
	-moz-visibility: hidden;
	-webkit-visibility: hidden;
	position: absolute;
	height: 0;
	width: 0;
}

.app-card-content .form-group-section {
	padding-left: 15px;
	padding-right: 10px;
}
.app-card-content {
	margin-left: -15px;
	margin-right: -10px;
}

.fc-red {color:red!important}

.app-familiarization {
	display: block;
	text-align: center;
	width: max-content;
	margin: 0 auto;
}

.form-loader {
    width: 24px;
    height: 24px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
	display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
	margin: 0 auto;
}

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

.btn-submit p {
	margin-bottom: 0px;
}