*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
	background-color: #fff;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
	color: #000;
}

#ai-wizard {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
}
.ai-loader-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: white;
	display: none;
	z-index: 99;
}

#particles-js {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.ai-prompter {
	width: 390px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}
.ai-prompt {
	width: 100%;
	padding: 20px;
	position: absolute;
}
.ai-prompt-question {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
}

.formDiv{min-width: 100%; min-height: 340px;}
.ast{color:#CC0000;}

.or-sep{
	font-size: 16px;
	height: 16px;
	color: #333;
	margin: 25px 0;
	width: 100%;
}
.or-sep .sep{
	height: 1px;
	margin-top: .5em;
	background-color: #999;
	width: 40%;
	float: left;
}
.or-sep .or-txt{
	text-align: center;
	width: 20%;
	line-height: 1em;
	height: 1em;
	font-size: 1em;
	float: left;
}

.field-wrap{
	margin: 20px auto;
	width: 100%;
}
.field-wrap label {
	display: block;
	margin-bottom: 5px;
}

.image-and-text {
	display: inline-block;
}

.input-thumbnail {
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	overflow: hidden;
	background-size: 100%;
	background-position: 50% 50%;
	display: inline-block;

	position: absolute;
	top: 50%;
	margin-top: -25px;
	left: 20px;
}

#img-preview {
	text-align: center;
}
#img-preview img {
	max-width: 45%;
	height: auto;
	margin: 2.5%;
}

.ws-orb{
	width: 180px;
	height: 180px;
	margin: 10% auto;
	background-image: url('/img2/orbtransparent.png');
	background-repeat: no-repeat;
	background-position: 56% 50%;
	background-size: 300px;
}

.signal {
	border: 5px solid #000000;
    border-radius: 100px;
    height: 100px;
    opacity: 0;
    margin: 100px auto;
    width: 100px;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
}

.signal-center {
	margin-top: -57.5px;
	margin-left: -57.5px;
	position: absolute;
	top: 50%;
	left: 50%;
}

.labels {
	display: flex;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.label-primary {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
    background-color: #03a9f4;
    cursor: pointer;
}

.plupload-progress {
	text-align: center;
	margin: 20px 0;
}

.plupload-progress .progress-text {
    display: inline;
    margin-right: 10px;
    margin-left: 5px;
}
.plupload-progress .text-muted {
    color: #777;
}

.plupload-progress .progress {
	display: block;
    width: 100%;
    margin: 0;
    height: 4px;
    margin-top: 20px;
    overflow: hidden;
    background-color: rgb(167, 202, 237);
    border-radius: 4px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.plupload-progress .progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background-color: #03a9f4;
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.checkbox-container {
	margin: 0 30px;
}

.search-field input::-webkit-input-placeholder {
	color: #999;
}

.search-field .dropdown-menu {
	overflow-y: scroll;
	max-height: var(--scroll-height);
}

.plain-popup.panel-modal .panel-window .panel-window-content .panel-window-content {
	box-shadow: none;
}
.plain-popup.panel-popup:not(.panel-dark).panel-primary .panel-window .panel-window-content .window-header {
	border-radius: 0;
	background-image: none;
	background-color: #fff;
}

.plain-popup.panel-popup .panel-window-content {
	border-radius: 0;
	border: 0;
	box-shadow: none;
}

.plain-popup .window-header .window-header-inner .title {
	color: #333;
}

.plain-popup .window-header .window-header-inner .window-header-buttons {
	color: #333;
}

@keyframes pulsate {
    0% {
      transform: scale(.01);
      opacity: 0.0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.2);
      opacity: 0;
    }
}

@media (max-width: 767px) {

	.ai-prompter {
		width: 100%;
	}

}
