body {
	scrollbar-width: none;
	overflow-x: clip;
}

.fms-d-none {
	display: none;
}
.fms-d-show{
  transform: translateX('0%');
  opacity: 1 
}
.fms-w100 {
	width: 100% !important;
}
.fms-flex {
	display: flex;
}
.fms-column {
	flex-direction: column;
}
.fms-column--space {
	gap: 1.6rem;
}
.fms-columns {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 576px) {
	.fms-columns {
		flex-direction: column;
		gap: 1.6rem;
	}
}
.fms-columns .fms-wrapInput {
	width: calc(50% - 0.8rem);
}
@media screen and (max-width: 576px) {
	.fms-columns .fms-wrapInput {
		width: 100%;
	}
}
.fms-wrap-logo {
	position: fixed;
	left: 2.4rem;
	top: 3.3rem;
	width: 11.8rem;
	z-index: 1;
}
@media screen and (max-width: 576px) {
	.fms-wrap-logo::before {
		content: '';
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 9rem;
		background: linear-gradient(
			rgba(255, 255, 255, 0.75) 50%,
			rgba(255, 255, 255, 0) 100%
		);
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
	}
}
.fms-wrap-logo__logo {
	position: relative;
	display: block;
	width: 100%;
}
.fms-step {
	position: relative;
	top: 0;
	width: 100%;
}
.fms-title-opcional {
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
}
.fms-title-opcional::after {
	content: 'Opcional';
	display: inline-block;
	font-family: 'Acid';
	font-size: 12px;
	font-style: normal;
	font-weight: 100;
	line-height: 18px;
	color: #cc0014;
	background: rgba(204, 0, 20, 0.1);
	border-radius: 1em;
	padding: 0.33em 1.1em 0.15em 1em;
	transform: translateY(-0.1em);
}
.fms-textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 15.6rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Acid';
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 100;
	line-height: 2.4rem;
	padding: 1.3rem 1.2rem 1rem;
	background: rgba(25, 25, 25, 0.05);
	box-shadow: 0px 0px 2px 0px rgba(25, 25, 25, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border-radius: 0.8rem;
	border: 0px solid transparent;
	resize: none;
}
.fms-list {
	flex-wrap: wrap;
	gap: 1.6rem 0;
	align-items: unset !important;
}
.fms-uploads {
	display: flex;
	justify-content: space-between;
}
.fms-selectColor {
	margin-bottom: 0;
}
.fms-flag-container .country-list {
	width: 30.5vw;
	z-index: 15;
}
@media screen and (max-width: 768px) {
	.fms-flag-container .country-list {
		width: 84vw;
	}
}
@media screen and (max-width: 576px) {
	.fms-flag-container .country-list {
		width: 86vw;
	}
}
.fms-groupButtons {
	display: flex;
	gap: 1.6rem;
}
.fms-groupButtons .btn {
	flex: 1;
}
.fms-button {
	position: relative;
	border-radius: 0.8rem;
	box-shadow: 0px 0px 2px 0px rgba(25, 25, 25, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 0px;
	width: 4.8rem;
	height: 4.8rem;
	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 2;
	transition: var(--aniBtn);
}
.fms-button svg {
	width: 0rem;
	height: 0rem;
	width: 1.5rem;
	height: 1.5rem;
	transition-delay: 0.2s;
	transition-duration: 0.6s;
	transition: var(--aniEase);
}
.fms-button:hover {
	background: var(--colorWhite);
}
.fms-button-arrow svg {
	width: 1.5rem;
	height: 1.5rem;
}
.fms-button-close svg {
	width: 2.4rem;
	height: 2.4rem;
}
.fms-btn-estilo {
	cursor: pointer !important;
	transition: background 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.fms-btn-estilo:hover {
	background: var(--colorWhite);
}
.fms-mb-48 {
	margin-bottom: 4.8rem;
}
.fms-mb-16 {
	margin-bottom: 1.6rem !important;
}
.fms-mt-4 {
	margin-top: 0.4rem !important;
}
.fms-wrapInput > input {
	margin-top: 0;
}
.fms-wrapInput--control > input,
.fms-wrapInput--control > label {
	margin-bottom: 0;
}
.fms-wrapInput--control > .fms-control-input {
	width: 100%;
	display: none;
	color: var(--colorRed);
}
.fms-wrapInput--control > .fms-control-input:not(.mt-0) {
	margin-top: 1rem;
}
.fms-wrapInput--control.fms-wrapInput--warn > .fms-control-input {
	display: block;
}
.fms-wrapInput--warn > input {
	border-radius: 0.8rem;
	border: 1px solid var(--colorRed);
	box-shadow: 0px 0px 2px 0px rgba(25, 25, 25, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}
.fms-wrapInput--select {
	cursor: pointer !important;
}
.fms-wrapInput--select:hover {
	cursor: pointer !important;
}
.fms-wrapInput--select > select option {
	font-weight: 100;
}
.fms-wrapInput--ic-map,
.fms-wrapInput--ic-select,
.fms-wrapInput--ic-search {
	position: relative;
}
.fms-wrapInput--ic-map > input,
.fms-wrapInput--ic-select > input,
.fms-wrapInput--ic-search > input {
	padding-left: 4rem;
}
.fms-wrapInput--ic-map::before,
.fms-wrapInput--ic-select::before,
.fms-wrapInput--ic-search::before {
	content: '';
	display: block;
	position: absolute;
	top: 1.65rem;
	left: 1.5rem;
	width: 1em;
	height: 1em;
	background-image: url('../img/ic_map.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 1;
}
.fms-wrapInput--ic-select::before {
	content: '';
	display: block;
	position: absolute;
	top: 38%;
	left: auto;
	right: 1.2rem;
	width: 2rem;
	height: 2rem;
	transform: translateY(-50%);
	background-image: url('../img/arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.fms-wrapInput--ic-select > input {
	padding-right: 4rem;
	padding-left: 1.2rem;
}
.fms-wrapInput--ic-search > input {
	padding-left: 4.5rem;
}
.fms-wrapInput--ic-search::before {
	background-image: url('../img/ic_search.svg');
}
.fms-card-select label {
	height: 100%;
}
.fms-card-select__label {
	position: relative;
	height: 100%;
	flex-direction: column;
	gap: 0rem !important;
	padding: 0.4rem 0.4rem 0rem 0.4rem !important;
}
.fms-card-select__label::before,
.fms-card-select__label::after {
	position: absolute;
	top: 1.5rem;
	left: 1.2rem;
	z-index: 10;
}
.fms-card-select__image {
	width: 100%;
	border-radius: 0.8rem;
	aspect-ratio: 168/103;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top centers;
	object-position: top centers;
}
.fms-card-select__wrap-text {
	display: block;
	width: 100%;
	text-align: left;
	padding: 1.2rem 0.8rem 0.8rem;
}
.fms-card-select__wrap-text p.title {
	margin: 0.5rem 0 0;
	line-height: 1.2;
}
.fms-card-select__wrap-text p.subtitle {
	margin: 0.4rem 0 0.1rem;
	color: rgba(25, 25, 25, 0.4);
}
.fms-card-select__color {
	position: relative;
	display: block;
	aspect-ratio: 1/1;
}
.fms-card-select--color {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 30% !important;
}
.fms-card-upload {
	position: relative;
	cursor: pointer;
	width: calc(25% - 0.6rem);
	aspect-ratio: 1/1;
	border-radius: 0.8rem;
	background: rgba(25, 25, 25, 0.05);
	box-shadow: 0px 0px 2px 0px rgba(25, 25, 25, 0.2);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	padding: 1.3rem 1.2rem 1rem 1.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background 0.33s ease;
}
.fms-card-upload:hover {
	background: transparent;
}
.fms-card-upload:hover svg {
	transform: scale(1.2);
}
.fms-card-upload__ic {
	position: relative;
	display: block;
	width: 1.7rem;
	aspect-ratio: 1/1;
}
.fms-card-upload__ic.loading {
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	width: 2.1rem;
	transform: translate(-50%, -50%);
}
.fms-card-upload__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 0.8rem;
	z-index: 5;
	display: none;
}
.fms-card-upload__close {
	position: absolute;
	cursor: pointer;
	top: 0;
	right: 0;
	width: 2.1rem;
	height: 2.1rem;
	background: #757667;
	transform: translate(33%, -33%);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
	border-radius: 100%;
	display: none;
	transition: background 0.2s ease;
}
.fms-card-upload__close:hover {
	background: var(--colorRed);
}
.fms-card-upload__close svg {
	position: relative;
	display: block;
	width: 1.8rem;
	height: 1.8rem;
	transform: scale(1);
	transition: transform 0.2s ease;
}
.fms-card-upload__close svg path {
	fill: #fff;
}
.fms-card-upload__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: transparent;
	background: transparent;
	cursor: pointer;
}
.fms-card-upload__input::-webkit-file-upload-button {
	visibility: hidden;
}
.fms-card-upload--fill {
	cursor: default;
	transform: scale(1);
}
.fms-card-upload--fill:hover {
	transform: scale(1);
}
.fms-card-upload--fill .fms-card-upload__ic {
	display: none;
}
.fms-card-upload--fill .fms-card-upload__image {
	display: block;
}
.fms-card-upload--fill .fms-card-upload__close {
	display: flex;
}
.fms-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: #dedede;
}
.fms-modal__wrapper {
	position: relative;
	width: 100%;
	height: calc(100vh - 2.4rem);
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	background: white;
	border-radius: 0.8rem 0.8rem 0 0;
	padding: 1.6rem 1.6rem 0;
	margin-top: 2.4rem;
}
.fms-modal__header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fms-modal__header span {
	flex: 1;
	text-align: center;
}
.fms-modal__wrap-list {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(25, 25, 25, 0.2);
	overflow: auto;
	scrollbar-width: none;
	margin-bottom: 0;
}
.fms-modal__list {
	align-items: flex-start;
	margin-bottom: 1.6rem;
}
.fms-modal__margin-fix {
	flex: 1;
}
.fms-modal__btn {
	margin-bottom: 1.6rem;
} /*# sourceMappingURL=multistep.css.map */

@media screen and (max-width: 600px) {
  .fms-modal__btn {
    margin-bottom: 12rem;
  }
}