.parrotposter-input__group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.parrotposter-input {
	display: inline-flex;
	position: relative;
	flex-direction: column;
	gap: 8px;
	width: max-content;
	max-width: 100%;
}

.parrotposter-input--full,
.parrotposter-input--full .parrotposter-input {
	width: 100%;
}

.parrotposter-input--wide {
	width: 100%;
}

.parrotposter-input--footer {
	padding-top: 10px;
	padding-bottom: 0;
}

.parrotposter-input--row {
	flex-direction: row;
	padding-top: 16px;
}

.parrotposter-input--toggle,
.parrotposter-input--checkbox {
	display: inline-flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
}

.parrotposter-input > span {
	color: #000000;
}

.parrotposter-input input[type=text],
.parrotposter-input select {
	width: 270px;
	max-width: 100%;
}

.parrotposter-input--full input[type=text],
.parrotposter-input--full select {
	width: 100%;
}

.parrotposter-input--footer input[type=text] {
	width: auto;
}

.parrotposter-input--toggle > span {
	margin: 0;
}

.parrotposter-input--toggle input[type=checkbox] {
	display: inline-block;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	border: 0;
	outline: 0;
	cursor: pointer;
	width: calc(32px + 4px);
	height: calc(18px + 4px);
	box-shadow: none;
	margin: 0;
}

.parrotposter-input--toggle input[type=checkbox]:after {
	content: '';
	width: 32px;
	height: 18px;
	display: inline-block;
	border-radius: 100px;
	border: 2px solid #000;
	clear: both;
}

.parrotposter-input--toggle input[type=checkbox]:before {
	content: '';
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	margin: 0;
	left: 5px;
	top: 5px;
	border-radius: 50%;
	background: #000;
}

.parrotposter-input--toggle input[type=checkbox]:checked:before {
	margin: 0;
	left: 19px;
	background-color: #fff;
}

.parrotposter-input--toggle input[type=checkbox]:checked:after {
	background-color: #007CBA;
	border-color: #007CBA;
}

.parrotposter-input--toggle input[type=checkbox],
.parrotposter-input--toggle input[type=checkbox]:before,
.parrotposter-input--toggle input[type=checkbox]:after {
	transition: ease .3s;
	-webkit-transition: ease .3s;
	-moz-transition: ease .3s;
	-o-transition: ease .3s;
}

.parrotposter-input__help {
	position: absolute;
	left: calc(100% + 18px);
	top: 1em;
	width: max-content;
	max-width: 200px;
	padding: 16px;
	font-size: 14px;
	line-height: 20px;
	background-color: rgba(0, 0, 0, 0.9);
	color: #FFFFFF;
	transition: opacity 0.3s;
	opacity: 0;
	visibility: hidden;
	cursor: initial;
	word-break: break-word;
}
.parrotposter-input:hover .parrotposter-input__help,
.parrotposter-input:focus-within .parrotposter-input__help {
	width: max-content;
	opacity: 1;
	visibility: visible;
}
@media screen and (max-width: 500px) {
	.parrotposter-input__help {
		top: calc(100% + 18px);
		left: 0;
		width: calc(100% - 16px * 2) !important;
		max-width: initial;
		z-index: 1;
	}
}

.parrotposter-input__help:before {
	content: "";
	display: inline-block;
	position: absolute;
	right: 100%;
	top: 0;
	height: 100%;
	width: 20px;
}

.parrotposter-input__help:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 100%;
	top: 12px;
	border-top: 12px solid transparent;
	border-right: 12px solid rgba(0, 0, 0, 0.9);
	border-bottom: 12px solid transparent;
}

@media screen and (max-width: 500px) {
	.parrotposter-input__help:before {
		left: 0;
		right: initial;
		bottom: 100%;
		top: initial;
		width: 100%;
		height: 20px;
	}
	.parrotposter-input__help:after {
		top: initial;
		bottom: 100%;
		right: initial;
		left: 50%;
		border-top: 0;
		border-bottom: 12px solid rgba(0, 0, 0, 0.9);
		border-left: 12px solid transparent;
		border-right: 12px solid transparent;
	}
}

.parrotposter-input__note {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
	width: min-content;
	min-width: calc(100% - 24px);
	background-color: #FEF8EE;
}

.parrotposter-input__note ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style-type: none;
	margin: 0;
}

.parrotposter-input__note ul > li {
	margin: 0;
}

.parrotposter-input__note ul > li:before {
	content: "-";
	margin-right: 4px;
}

.parrotposter-input__item {
	display: flex;
	gap: 2px;
	align-items: start;
}

.parrotposter-input__row {
	display: flex;
	gap: 16px;
	align-items: end;
}

.parrotposter-input__row textarea {
	width: 80%;
	height: 96px;
	resize: both;
}

.parrotposter-input__info {
	color: #757575;
	/* margin-top: 4px; */
	font-size: 12px;
	line-height: 16px;
}

.parrotposter-input__info-btn {
	display: inline-block;
}

.parrotposter-input__info-btn:before {
	content: "i";
}
