
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	/*Image only BG fallback*/
	background: url('../img/gs.png');
	/*background = gradient + image pattern combo*/
	background:
		linear-gradient(rgba(196, 102, 0, 0.2), rgba(155, 89, 182, 0.2)),
		url('../img/gs.png');
}

body {
	font-family: montserrat, arial, verdana;
	background: transparent;
}

#year-type-other{
	font-size: 26px!important;
}

/*form styles*/
@media screen and (max-width:800px) {
  /* smaller screens */
	/*body {
	  	zoom: 1.5;
	    -moz-transform: scale(1.5);
	    -moz-transform-origin: 0 0;
	}*/

	#msform input,  #msform textarea {
		font-size: 26px!important;
	}

	.fs-title {
		font-size: 25px!important;
	}

	.fs-subtitle {
		font-size: 23px!important;
	}

	#progressbar li {
		font-size: 19px!important;
	}

	.btn {
		font-size: 24px!important;
	}

	.swal-text {
		font-size: 25px!important;
	}
}
@media screen and (max-width:480px){
	#bottombar3{
		display: block;
	}
	#bottombar2{
		display:none;
	}
}

#msform {
	width: 400px;
	margin: 50px auto;
	text-align: center;
	position: relative;
}

#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	/*box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
	padding: 2rem 2rem;
	box-sizing: border-box;
	width: 100%;
	/*margin: 0 10% 10% 10%;*/

	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}

#year-type-other::-webkit-input-placeholder {
	font-size: 14px;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	width: 100%;
	flex-shrink: 0;
	font-size: 15px;
}
/*buttons*/
#msform .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}

/*footer*/
#bottombar2 {
	background-color:#FFFFFF;
	height: 10%;
	width: 100%;
	position:absolute;
	bottom:0%;
	display: flex;
	flex-direction: row;
}
#bottombar2_left {
	background-color: #fff;
	width: 30%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bottombar2_blue {
	background-color: #D9F3F7;
	width: 40%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bottombar2_right {
	background-color: #fff;
	width: 30%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#bottombar3 {
	background-color:#FFFFFF;
	height: 10%;
	width: 100%;
	position:absolute;
	bottom:0%;
	display: flex;
	flex-direction: row;
}
#bottombar3_left {
	background-color: #fff;
	width: 30%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bottombar3_blue {
	background-color: #D9F3F7;
	width: 40%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bottombar3_right {
	background-color: #fff;
	width: 30%;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	filter: invert(75%) sepia(75%) saturate(235%) hue-rotate(138deg) brightness(87%) contrast(98%);
}
.bb-text {
	text-align: center;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	/*width: 33.33%;*/
	width: 10%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	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: #27AE60;
	color: white;
}

.item {
	background: #2279fd;
	font-weight: bold;
	color: white;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}

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

.panel {
	display: inline-block;
	border: 0px;
	margin: 5% 0;
	box-shadow: none;
}

.panel-collapse {
	margin: 10% 0;

}

.option {
	display: inline-block;
    /*width: calc(100% * (1/3) - 10px - 1px);*/
    margin: 2px 0;
}

.panal button {
	margin-bottom: 10px;
}

.check-with-label:checked + .label-for-check {
  	font-weight: bold;
	background-color: #1d6e86;

}

.selectedSubjectItem {
	display: inline-block;
    margin: 1px;
}

.subjectLanguageGroup {
    /*padding-left: 50px;*/
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.DurationGroup {
    padding: 0px 20px
}

.subjectLanguage {
    margin: 1px;
}

#my_popup {
	padding: 10px 50px;
    background: white;
    margin: 300px;
}

.slider {
	width: 200px;
}

.weekCal {
	margin: 10px 20px !important;
}

.stepTimepicker, .datePicker {
	width: 100px !important;
    height: 25px;
    margin: 2px 0px !important;
}

.purpose-label {
	margin: 2px;
}

.warning {
	color: red;
}

#summary {
	text-align: left;
	padding: 10;
}

#accept {
	width: auto !important;
}

.center {
	text-align: center;
}

.select2, .select2-search, .select2-search__field {
	width: 100%!important;
}

.select2-selection--multiple {
	border: 0px!important;
}

.disabled {
	cursor: not-allowed!important;
	background: grey!important;
}

.swal-modal {
	width: 320px !important;
}

fieldset {
	margin: 0;
}
