/* Styles */

body {
	font-family: 'Exo 2', sans-serif;
	/* height: 100vh; */
	/* background-image: linear-gradient(to bottom, #F9F9F9, #CFCFCF);
	background-size: cover;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover; */

}

.navbar {
	background-color: #102A3B;
	padding: 0.4rem 0rem;
}

.navbar-dark .navbar-nav .nav-link {
	color: white;
}

.nav-item.active {
	border-bottom: 3px solid #1f86b6;
}

.navbar-brand {
	width: 170px;
}

.navbar-brand img {
	width: 100%;
}

.box {
	width: 92%;
	background-color: #e9e8e8;
	text-align: center;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-bottom: 4%;
	padding-top: 1%;
	opacity: 1;
}

label {
	display: table-cell;
	text-align: center;
	font-size: 16px;
	font-weight: lighter;
}

.dropdown-menu {
	left: 50%;
	right: auto;
	text-align: center;
	transform: translate(-50%, 0);
}

main {
	/* scroll horizontally as needed */
	overflow-x: auto;

	/* center contents */
	text-align: center;
}

main .form-horizontal {
	/* center form controls */
	display: inline-table;

	/* override Bootstrap's 100% width for form controls */
	width: auto;
}

main img {
	/* constrain images on small screens */
	max-width: 100%;
}

#thanks,
#msform fieldset:not(.filepond--file-wrapper) {
	background: whitesmoke;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.15);
	text-align: center;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}

/*inputs*/
#step-1 input .form-text,
#step-2 input .form-text,
#step-1 textarea,
#step-2 textarea,
#step-1 select,
#step-2 select,
#step-5 #demos select {
	padding: 1.5%;
	border: 1px solid #ccc;
	border-radius: 3px;
	width: 90%;
	box-sizing: border-box;
	color: #2C3E50;
	background-color: whitesmoke;
	font-size: 15px;
	margin-right: auto !important;
	margin-left: auto !important;
	height: 110%;
}

/*form labels on audience*/
.form-check-label {
	font-family: 'Exo 2', sans-serif;
}


/*buttons*/
#msform .action-button {
	width: 100px;
	background: #5ABF59;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

.action-button[Value="Save"] {
	width: 100px;
	background: dodgerblue;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

.action-button[Value="Previous"] {
	background: gray;
}

.action-button:hover,
#msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #5ABF59;
}

.action-button[Value="Previous"]:hover,
#msform .action-button[Value="Previous"]:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px gray;
}

.action-button[Value="Save"]:hover,
#msform .action-button[Value="Save"]:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px gray;
}

#msform .alert {
	margin-left: auto !important;
	margin-right: auto !important;
	width: 90%;
}



.questions {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

.question {
	margin-left: auto !important;
	margin-right: auto !important;
}

.question-type {
	background-color: whitesmoke;
}

.row {
	margin-right: 0px;
	margin-left: 0px;
}

/*headings*/
.fs-title {
	font-size: 25px;
	color: #2C3E50;
	margin-bottom: 30px;
	margin-top: 30px;
}

.fs-subtitle {
	font-weight: normal;
	font-size: 20px;
	color: #666;
	text-align: center;
	margin-bottom: 20px;
}

.fs-body {
	font-size: 15px;
	color: #2C3E50;
	margin-bottom: 10px;
}

.form-text {
	font-size: 14px;
}

.text-muted {
	margin-top: 20px;
}

h2 {
	text-align: center;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	counter-reset: step;
}

#progressbar li {
	list-style-type: none;
	color: #02A0E7;
	text-transform: uppercase;
	font-size: 10px;
	width: 16%;
	float: left;
	position: relative;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: white;
	background: #F5AF1B;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1;
	/*put it behind the numbers*/
}

#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
	background: #5ABF59;
	color: white;
}

.input-group {
	display: block;
}

.questions {
	margin-bottom: 20px;
}

.question {
	margin-left: auto !important;
	margin-right: auto !important;
}

.question-answer {
	margin-left: auto !important;
	margin-right: auto !important;
	width: 500px !important;
}

.question-text {
	margin-left: auto !important;
	margin-right: auto !important;
	margin-bottom: 20px;
	margin-top: 20px;
}

#step-2 .box {
	margin-right: 10px;
	margin-left: 10px;
}

#step-5 ol {
	font-size: small;
}

#step-5 li .row {
	margin-bottom: 15px;
	margin-top: 15px;
}

@counter-style plus-sign {
	system: cyclic;
	symbols: "\002B";
	suffix: " ";
}

@counter-style minus-sign {
	system: cyclic;
	symbols: "\2212";
	suffix: " ";
}

summary {
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: auto !important;
	margin-bottom: auto !important;
	width: 90%;
	height: 50px;
	list-style-type: plus-sign;
}

details {
	background-color: #e9e8e8;
	margin-top: auto !important;
	margin-bottom: auto !important;
}

details[open] summary {
	margin-left: auto !important;
	margin-right: auto !important;
	width: 90%;
	list-style-type: minus-sign;
	background-color: #e9e8e8;
}

#infoModal .modal-dialog {
	overflow-y: initial !important
}

#infoModal .modal-body {
	height: 400px;
	overflow-y: auto;
}

/* FilePond */
.filepond--item {
	width: calc(50% - .5em);
	margin-left: auto !important;
	margin-right: auto !important;
}

.card-group {
	width: 90%;
	margin-right: auto !important;
	margin-left: auto !important;
	padding-bottom: 50px;
}

.card-body {
	font-size: 14px;
}

.card-title {
	font-size: 18px;
	margin-right: auto !important;
	margin-left: auto !important;
}

.form-group {
	margin-bottom: 1rem;
}


.popover {
	max-width: 40%;
}



.feature {
	height: 26vh;
	width: 28%;
	transition: ease-in-out 0.3s;
	vertical-align: top;
	padding-top: 2%;
	font-size: large;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.feature i {
	/* height: 30vh;
	width: 15vw; */
	transition: ease-in-out 0.3s;
	color: #246087;
	font-size: xx-large;
}

.feature:hover {
	background-color: #019FE7;
	color: white;
}

.feature:hover i {
	color: #c50024;

}

.container-table100 {
	background: #fff;

	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 33px 30px;
}

.wrap-table100 {
	width: 1170px;
}

/*//////////////////////////////////////////////////////////////////
[ Table ]*/
.table100 {
	background-color: #fff;
}

table {
	width: 100%;
}

th,
td {
	font-weight: unset;
	padding-right: 10px;
}

.column1 {
	width: 30%;
}

.column2 {
	width: 13%;
}

.column3 {
	width: 22%;
}


.table100-head th {
	padding-top: 18px;
	padding-bottom: 18px;
}

.table100-body td {
	padding-top: 16px;
	padding-bottom: 16px;
}

/*==================================================================
[ Fix header ]*/
.table100 {
	position: relative;
}

.table100-head {
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
}

.table100-body {
	max-height: 585px;
	overflow: auto;
}


table th {
	font-size: 18px;
	color: #fff;
	line-height: 1.4;
	background-color: #246087;
	/* background-color: #1A4561; */
	/* background-color: #6c7ae0; */
	width: 100%;
}

table td {
	font-size: 15px;
	color: #808080;
	line-height: 1.4;
}

table tr:nth-child(even) {
	background-color: #f6fbff;
}

/*---------------------------------------------*/

table {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
	-o-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
	-ms-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
}

table .ps__rail-y {
	right: 5px;
}

table .ps__rail-y::before {
	background-color: #ebebeb;
}

table .ps__rail-y .ps__thumb-y::before {
	background-color: #cccccc;
}
