main {
	width: 100%;
	padding: 40px 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#content-sn-s {
	width: 100%;
	margin-top: 20px;
	padding: 30px 20px 20px 20px;
	background-color: #ffffff;
	border: 1px solid #dadce0;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#form-datos-s {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#tipo-carga, #tipo-servicio, #c-o, #c-d, #ta-t, .campo {
	padding: 8px 22px;
	background-color: #E2E2E2;
	border-radius: 8px;
}

#form-datos-s>div {
	width: 90%;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#form-datos-s select {
	width: 100%;
	background-color: #E2E2E2;
	color: #717170;
	border: none;
	outline: none;
}

#form-datos-s svg {
	margin-right: 7px;
}

#form-datos-s input, #form-datos-s textarea {
	width: 100%;
	color: #000;
	background-color: #E2E2E2;
	border: none;
	outline: none;
}

#form-datos-s label {
	width: 100%;
}

#form-datos-s input::placeholder, #form-datos-s input::-moz-placeholder, #form-datos-s textarea::placeholder, #form-datos-s textarea::-moz-placeholder, #form-datos-s textarea::-webkit-input-placeholder {
	color: #717170;
}

textarea {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 100px;
	max-height: 150px;
	min-height: 100px;
	padding: 20px;
}

textarea::placeholder {
	color: #717170;
}

#f-v, #f-r, #cc-ns {
	flex-direction: column !important;
	justify-content: flex-start !important;
	align-items: flex-start !important;
}

#input-fv, #input-fr {
	width: 100%;
	padding: 8px 22px;
	color: #717170;
	background-color: #E2E2E2;
	border-radius: 8px;
	border: none;
	outline: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#cc-ns>div {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 8px 22px;
	background-color: #E2E2E2;
	border-radius: 8px;
}

#cc-ns h6 {
	color: #717170;
}

#cc-ns input {
	width: auto;
	margin: 7px;
	color: #717170;
	background-color: #E2E2E2;
	border: none;
	outline: none;
	display: flex;
	flex-direction: row;
}

#cc-ns label {
	margin: 0;
}

#cc-ns input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	border: 1px solid #039be5 !important;
	border-radius: 4px;
	outline: unset;
	appearance: none;
	position: relative;
}

#cc-ns input[type="checkbox"]:checked::after {
	content: "\2713";
	width: 100%;
	height: 100%;
	color: #000;
	font-size: 16px;
	border-radius: 2px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

#cc-ns input[type="checkbox"]:checked::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: transparent;
	transition: background-color .2s;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#enviar-form a {
	padding: 8px 22px;
	border-radius: 8px;
	color: #fff;
	font-weight: bold;
	background-color: #ffab00;
	text-decoration: none;
}

#enviar-form a:hover {
	color: #000;
}

/*********************************************************
	===================================================
		MEDIA QUERYS
	===================================================
*********************************************************/

/***
========================================================
	Large devices (desktops, 992px and up)
========================================================
***/

@media (min-width: 992px) {
	#content-sn-s {
		width: 60%;
		margin-top: 120px;
	}
}