#msform {
	width: 400px;
    height: 270px;
	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: 20px 30px;
	
	width: 80%;
	margin: 0 10%;
	
	position: absolute;
}

.item:not(.active) #msform .input-simulator{
    height: 20px;
}

#msform fieldset:not(:first-of-type) {
	display: none;
}

#msform .action-button {
	width: 100px;
	background: #ff8c00;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 10px;
	cursor: pointer;
    font-size: 12px;
	padding: 10px 5px;
	margin: 10px 5px;
	outline: none;
}

.title-input {
	font-size: 18px;
	color: #121212;
	margin-bottom: 10px;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.featured-source{
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: #121212;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

#msform  .input-simulator {
  width: 100%;
  height: 35px;
  border-radius: 5px;
  box-shadow: none;
  border: 1px solid #ced6e0;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  padding: 5px 15px;
  background: none;
  color: #4d4b51;
  font-family: "Source Sans Pro", sans-serif;
  box-sizing: border-box;
  outline: none;
}

#msform  .input-simulator:hover, #msform  .input-simulator:focus {
  border-color: #ff8c00; 
}

#msform  .input-simulator:focus {
  box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35); 
}

#progressbar {
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
	counter-reset: step;
}

#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 20%;
	float: left;
	position: relative;
    border-radius: 50%;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
#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;
    border-radius: 50%;
}

#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; 
    
}
#progressbar li:first-child:after {
	content: none; 
}

#progressbar li.active:before,  #progressbar li.active:after{
	background: #ff8c00;
    border-radius: 50%;
	color: white;
}

/*Celulares e alguns tablets*/
@media (min-width: 320px) and (max-width: 499px) {
	#msform{
		width: 350px;
	}

	#msform fieldset{
		padding: 20px;
	}
}