* {
}

html {
}

body {
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: #fff;
	max-width: 600px !important;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
	position: relative;
	margin: 0 auto;
	margin-bottom: 50px !important;
}

.container-heading {
	font-family: inherit !important;
	font-size: 20px !important;
	font-weight: 600;
	text-transform: none !important;
	text-align: left !important;
	line-height: 27px !important;
	margin-bottom: -15px !important;
	color: #000 !important;
	align-self: flex-start;
}

@media (max-width: 544px) {
	.container {
		margin: auto 20px;
		margin-bottom: 50px !important;
	}
}

.inputs {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
	width: 100%;
}

.input {
	width: 100%;
}

.dropdown {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.inputs .chars {
	font-size: 12px;
	font-weight: 500;
	color: #999;
	margin-bottom: 5px;
	margin-top: -10px;
	text-align: left;
}

.inputs .field {
	resize: none;
	font-family: inherit;
	font-size: 15px;
	width: 100%;
	height: 80px;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #999;
	transition: all 0.3s ease-in-out;
	scroll-behavior: smooth;
	overflow: auto;
	user-select: text !important;
}

.keywords-box {
	width: 66%;
}

.input.keywords-container {
	display: flex;
	justify-content: space-between;
	gap: 15px;
}

.inputs .field.keywords {
	width: 100%;
	height: 35px;
	padding: 5px;
	overflow: hidden;
}

.hashtags .chars {
	margin: 0 !important;
}

@media (max-width: 485px) {
	.hashtags .chars {
		margin-top: -10px !important;
	}
}

.inputs .field::placeholder {
	font-family: inherit;
	font-size: 15px;
	color: #999;
}

.inputs .field::selection {
	background-color: #d3d3d3 !important;
}

.inputs .field:focus {
	outline: 2px solid #333;
}

.input label {
	height: 30px;
}

.input select,
.hashtag-number {
	border: 2px solid #4f29a1 !important;
	border-radius: 5px !important;
	padding: 0 10px !important;
	cursor: pointer !important;
	width: auto !important;
	font-size: 15px !important;
	color: #000 !important;
}

.btn {
	text-align: center;
	border-radius: 5px;
	background-color: #4f29a1;
	transition: 0.4s ease;
	cursor: pointer;
	border: none;
	color: #fff;
	font-size: 14px;
	padding: 15px;
	margin-top: 20px;
}

.submit-btn {
	width: 80%;
}

.copybtn {
	display: none;
}

.btn:hover {
	transform: scale(1.02);
	opacity: 0.98;
}

.results {
	align-self: flex-start;
	margin-top: -10px;
}

.results .generated-results {
	font-size: 15px;
	line-height: 20px;
	margin: 20px 0;
	color: #000;
	text-align: left !important;
}

.text-copy {
	color: #f77737;
	font-size: 13px;
	font-weight: bold;
	transition: 0.3s ease-in-out;
	margin-top: 10px;
	margin-bottom: 0 !important;
}

.loader {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	border: 3px solid;
	border-color: #8e42be #8e42be transparent transparent;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	margin-bottom: 30px !important;
}

.loader::after,
.loader::before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 3px solid;
	border-color: transparent transparent #000 #000;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotationBack 0.5s linear infinite;
	transform-origin: center center;
}

.loader::before {
	width: 32px;
	height: 32px;
	border-color: #4f29a1 #4f29a1 transparent transparent;
	animation: rotation 1.5s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

.hidden {
	display: none;
}
