/* Main form wrapper */
.fs-form-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	color: #fff;
}

.overview .fs-form-wrap {
	height: auto;
}

/* Title */
.fs-title {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 40px;
	width: 100%;
}

.fs-title h1 {
	margin: 0;
}

/* Form */
.fs-form {
	position: relative;
	text-align: left;
	font-size: 2.5em;
}

.no-js .fs-form {
	padding: 0 0 6em 0;
}

/* Views (fullscreen and overview)*/
.fs-form-full {
	top: 9rem;
	margin: 0 auto;
	width: 70%;
}

.fs-form-full,
.fs-message-error {
	max-width: 960px;
}

.fs-form-overview {
	padding: 2.5em 30% 6em;
	width: 100%;
	height: 100%;
	background: #7439b3;
	color: #fff;
	font-size: 1.2em;
}

.fs-form-overview .fs-fields::before {
	display: block;
	margin-bottom: 2.5em;
	color: #fff;
	content: 'Review & Submit';
	font-weight: 700;
	font-size: 1.85em;
}

/* Switch view animation (we hide the current view, switch the view class and show it again) */
.fs-form.fs-show {
	-webkit-animation: animFadeIn 0.5s;
	animation: animFadeIn 0.5s;
}

@-webkit-keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.fs-form.fs-show .fs-fields {
	-webkit-animation: animMove 0.5s;
	animation: animMove 0.5s;
}

@-webkit-keyframes animMove {
	from { top: 100px; }
}

@keyframes animMove {
	from { top: 100px; }
} /* we need to use top here because otherwise all our fixed elements will become absolute */

/* Visibility control of elements */
.fs-form-full .fs-fields > li,
.fs-nav-dots, 
.fs-progress,
.fs-numbers,
button.fs-continue,
button.fs-so,
.fs-message-error,
.fs-message-final {
	visibility: hidden;
}



.no-js .fs-form-full .fs-fields > li {
	visibility: visible;
}

.fs-show {
	visibility: visible !important;
}

.fs-nav-dots,
.fs-numbers {
	visibility: hidden !important;
}

/* Some general styles */
.fs-form-wrap button {
	border: none;
	background: none;
}

.fs-form-wrap button[disabled] {
	opacity: 0.3;
	pointer-events: none;
}

.fs-form-wrap input:focus,
.fs-form-wrap button:focus,
.fs-form-wrap select:focus {
	outline: none;
}

/* Hide the submit button */
.fs-form .fs-submit,
.fs-generate,
#potloader-submit,
.fs-startover {
	display: none;
}

button.fs-generate {
	margin-top: 3rem;
}

/* Fields */
.fs-fields {
	position: relative;
	margin: 0 auto;
	padding: 0;
	top: 5rem;
	list-style: none;
}

/* .fs-form-overview ol {
	max-width: 50px;
} */

.fs-fields > li {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
}

.fs-fields > li:hover {
	z-index: 999;
}

.js .fs-form-full .fs-fields > li {
	position: absolute;
	width: 100%;
}

.fs-form-overview .fs-fields > li,
.no-js .fs-form .fs-fields > li {
	margin: 1em 0 2em;
	padding: 0 0 2em 0;
	border-bottom: 2px solid rgba(0,0,0,0.1);
}

/* Labels & info */
.fs-fields > li label {
	position: relative;
}

.fs-fields > li label.fs-field-label {
	display: inline-block;
	padding: 0 5px 1em 0;
	font-weight: 700;
	pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]::after {
	position: relative;
	display: block;
	margin-top: 10px;
	content: attr(data-info);
	font-weight: 700;
	font-style: italic;
	font-size: 0.4em;
	color: #6a7b7e;
	line-height: 20px;
    pointer-events: none;
	min-width: 200px;
}

/* .fs-form-full .fs-fields > li label[data-info]::before {
    position: absolute;
    bottom: 100%;
   	left: 0;
    padding: 0 0 10px;
    min-width: 200px;
	content: attr(data-info);
	font-size: 0.4em;
	color: #6a7b7e;
    opacity: 1;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
    pointer-events: none;
} */

.fs-form-full .fs-fields > li label[data-info]:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.fs-form-full .fs-fields > li label:hover ~ .fs-info,
.fs-form-full .fs-fields > li .fs-info:hover {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	pointer-events: auto;
}



/* Inputs */
.fs-fields input,
.fs-fields select {
	display: block;
	margin: 0;
	padding: 0 0 0.15em;
	width: 100%;
	border: none;
	border-bottom: 2px solid rgba(121,131,136);
	background-color: transparent;
	color: #ffffff;
	text-overflow: ellipsis;
	font-weight: bold;
	font-size: 1.5em;
	border-radius: 0;
}

.fs-fields select {
	font-size: 1.0em;
}

.fs-fields input:invalid,
.fs-fields select:invalid {
	box-shadow: none; /* removes red shadow in FF*/
}

.fs-form-overview .fs-fields input,
.fs-form-overview .fs-fields select {
	border-bottom-color: transparent;
	color: #fff;
}

.fs-fields [required] {
	background-image: url(../img/abacusstar.svg);
	background-position: top right;
	background-size: 18px;
	background-repeat: no-repeat;
}

.fs-fields input:focus,
.fs-fields select:focus {
	background-color: #202123; /* Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input:focus,
.fs-form-overview .fs-fields select:focus {
	background-color: #7439b3; /* Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input,
.fs-form-overview .fs-fields select {
	font-size: 1.2em;
}

.fs-fields .fs-radio-custom input[type="radio"] {
	position: absolute;
	display: block;
	margin: 30px auto 20px;
	margin: 0 auto 20px;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.fs-fields > li .fs-radio-custom span {
	float: left;
	position: relative;
	margin-right: 3%;
	padding: 10px;
	max-width: 200px;
	width: 30%;
	text-align: center;
	font-weight: 700;
	font-size: 50%;
}

.fs-fields > li .fs-radio-custom span label {
	color: rgba(0,0,0,0.4);
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.fs-form-overview .fs-fields > li .fs-radio-custom span {
	max-width: 140px;
}

.fs-form-overview .fs-fields > li .fs-radio-custom span {
	font-size: 75%;
}

.fs-fields > li .fs-radio-custom label {
	display: block;
	padding-top: 100%;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.fs-fields .fs-radio-custom label::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background-position: 50% 0%;
	background-size: 85%;
	background-repeat: no-repeat;
	content: '';
	opacity: 0.5;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.fs-fields .fs-radio-custom label.radio-mobile::after {
	background-image: url(../img/mobile.svg);
}

.fs-fields .fs-radio-custom label.radio-social::after {
	background-image: url(../img/social.svg);
}

.fs-fields .fs-radio-custom label.radio-conversion::after {
	background-image: url(../img/conversion.svg);
}

.fs-fields .fs-radio-custom label:hover::after,
.fs-fields input[type="radio"]:focus + label::after,
.fs-fields input[type="radio"]:checked + label::after {
	opacity: 1;
}

.fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: #7439b3;
}

.fs-form-overview .fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: rgba(0,0,0,0.8);
}

.fs-fields textarea {
	padding: 0.25em;
	width: 100%;
	height: 200px;
	border: 2px solid rgba(0,0,0,0.2);
	background-color: transparent;
	color: #7439b3;
	font-weight: 700;
	font-size: 0.85em;
	resize: none;
}

.fs-form-overview .fs-fields textarea {
	height: 100px;
	color: rgba(0,0,0,0.5);
}

.fs-fields textarea:focus {
	outline: none;
}

.fs-form-overview .fs-fields textarea {
	padding: 0;
	border-color: transparent;
}

.fs-form-overview .fs-fields textarea:focus {
	background: #7439b3;
}

.fs-form div.cs-select.cs-skin-boxes {
	display: block;
}

.fs-form-overview .cs-skin-boxes > span {
	border-radius: 5px;
	width: 90px;
	height: 70px;
	font-size: 0.8em;
}

.fs-form-overview .cs-skin-boxes > span::before {
	padding-top: 50px;
	box-shadow: 0 20px 0 #292c30, inset 0 -5px #292c30;
}

.fs-fields input.fs-mark {
	padding-left: 1em;
	background-image: url(../img/dollar.svg);
	background-position: 0% 0.15em;
	background-size: auto 75%;
	background-repeat: no-repeat;
}

.fs-fields input.fs-mark[required] {
	background-image: url(../img/dollar.svg), url(../img/abacusstar.svg);
	background-position: 0% 0.15em, top right;
	background-size: auto 75%, 18px;
	background-repeat: no-repeat;
}

/* placeholder */
.fs-fields input::-webkit-input-placeholder,
.fs-fields textarea::-webkit-input-placeholder,
.fs-fields select::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.fs-fields input:-moz-placeholder,
.fs-fields textarea:-moz-placeholder,
.fs-fields select:-moz-placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.fs-fields input::-moz-placeholder,
.fs-fields textarea::-moz-placeholder,
.fs-fields select::-moz-placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.fs-fields input:-ms-input-placeholder,
.fs-fields textarea:-ms-input-placeholder,
.fs-fields select:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.3);
}

/* Hide placeholder when focused in Webkit browsers */
.fs-fields input:focus::-webkit-input-placeholder,
.fs-fields textarea:focus::-webkit-input-placeholder,
.fs-fields select:focus::-webkit-input-placeholder {
	color: transparent;
}

/* Dot navigation */
.fs-nav-dots {
	position: absolute;
	top: 50%;
	right: 60px;
	left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.fs-nav-dots button {
	position: relative;
	display: block;
	padding: 0;
	margin: 16px 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: transparent;
	-webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	cursor: initial;
}

.fs-nav-dots button::before,
.fs-nav-dots button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	content: '';
	text-indent: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fs-nav-dots button::after {
	background-color: rgba(0,0,0,0.4);
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button.fs-dot-current {
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button:hover::before,
.fs-nav-dots button:not(.fs-dot-current):not([disabled])::before,
.fs-nav-dots button.fs-dot-current::before {
	background: #7439b3;
}

/* Progress bar */
.fs-progress {
	position: absolute;
	top: 0;
	width: 0%;
	height: 0.5em;
	background: #7439b3;
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
}

/* Number indicator */
.fs-numbers {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.3);
	margin: 40px;
	width: 2em;
	font-weight: 700;
	font-size: 2em;
	cursor: default;
}

.fs-numbers:after {
	position: absolute;
	width: 100%;
	text-align: center;
	content: '/';
	font-weight: 300;
	opacity: 0.4;
	left: 0;
}

.fs-numbers span {
	float: right;
	width: 40%;
	text-align: center;
}

.fs-numbers .fs-number-current {
	float: left;
}

.fs-numbers .fs-number-new {
	position: absolute;
	left: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

/* Animations for numbers */
/* Show next number */
.fs-numbers.fs-show-next .fs-number-new {
	-webkit-animation: animMoveUpFromDown 0.4s both;
	animation: animMoveUpFromDown 0.4s both;
}

@-webkit-keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); transform: translateY(100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-next .fs-number-current {
	-webkit-animation: animMoveUp 0.4s both;
	animation: animMoveUp 0.4s both;
}

@-webkit-keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); }
}

@keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

/* Show previous number */
.fs-numbers.fs-show-prev .fs-number-new {
	-webkit-animation: animMoveDownFromUp 0.4s both;
	animation: animMoveDownFromUp 0.4s both;
}

@-webkit-keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-prev .fs-number-current {
	-webkit-animation: animMoveDown 0.4s both;
	animation: animMoveDown 0.4s both;
}

@-webkit-keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); }
}

@keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* Continue button and submit button */
button.fs-submit,
button.fs-generate,
button.fs-continue {
	padding: 0.6em 1.5em;
	border: 3px solid #7439b3;
	border-radius: 40px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.97)
}

button.fs-so {
	padding: 0.6em 1.5em;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.97)
}

button.fs-startover {
	padding: 0.6em 1.5em;
	border-radius: 40px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.97);
	float: right;
	font-size: 20px;
	margin-top: 9px;
}

button.fs-startover:hover,
button.fs-so:hover {
text-decoration: underline;
}

.fs-form-overview .fs-submit,
.fs-form-overview .fs-generate,
.no-js .fs-form .fs-submit  {
	display: block;
	float: right;
}

.fs-form-overview .fs-submit {
	border-color: #fff;
	color: #fff;
}

button.fs-submit,
button.fs-generate{
	float: right;
	font-size: 0.6em;
}

button.fs-continue,
button.fs-so {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0 40px 60px 0;
	font-size: 1.25em;
}

button.fs-so {
	right: 135px;
}

button.fs-submit:hover,
button.fs-submit:focus,
button.fs-generate:hover,
button.fs-generate:focus,
button.fs-continue:hover {
	background: #7439b3;
	color: #fff;
}

.fs-continue::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	line-height: 3;
	text-align: center;
	background: transparent;
	color: rgba(255, 255, 255, 0.97);
	content: 'or press ENTER';
	font-size: 0.65em;
	pointer-events: none;
}

/* Error message */
.fs-message-error {
	position: absolute;
	top: 16.5rem;
	left: 50%;
	z-index: 800;
	max-width: 960px;
	width: 70%;
	color: #eb7e7f;
	font-weight: 700;
	font-size: 1em;
	opacity: 0;
	-webkit-transform: translate3d(-50%,-5px,0);
	transform: translate3d(-50%,-5px,0);
}

.fs-message-error.fs-show {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translate3d(-50%,0,0);
	transform: translate3d(-50%,0,0);
}

/* Animation classes & animations */
.fs-form li.fs-current {
	visibility: visible;
}

.fs-form li.fs-hide,
.fs-form li.fs-show {
	pointer-events: none;
}

/* Hide current li when navigating to next question */
.fs-form .fs-display-next .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower,
.fs-form .fs-display-next .fs-hide .fs-anim-upper {
	-webkit-animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Show new li when navigating to next question */
.fs-form .fs-display-next .fs-show .fs-anim-lower,
.fs-form .fs-display-next .fs-show .fs-anim-upper {
	-webkit-animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-next .fs-show .fs-anim-lower {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Hide current li when navigating to previous question */
.fs-form .fs-display-prev .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-lower,
.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Show new li when navigating to previous question */
.fs-form .fs-display-prev .fs-show .fs-anim-lower,
.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}

/* Adjust form for smaller screens */
@media screen and (max-width: 52.5em) {
	body {
		min-height: 500px;
	}

	.fs-form-wrap {
		font-size: 75%;
	}

	.fs-form {
		top: 4em;
		right: 2em;
		left: 0;
		padding: 0 1.5em 0 1em;
		width: auto;
		font-size: 2em;
	}



.fs-fields {
	top: 3rem;
  }
  

	.fs-form.fs-form-overview {
		top: 0;
		right: 0;
		padding: 1.5em 1em 8em 1em;
		font-size: 1.5em;
	}

	.fs-title {
		padding: 20px;
	}

	.fs-numbers {
		margin: 20px;
	}

	.fs-nav-dots {
		right: 25px;
	}

	button.fs-continue,
	button.fs-so {
		right: 10px;
		bottom: 20px;
		margin: 0;
		/* padding: 50px 0 0 50px;
		width: 50px;
		height: 50px;
		border-radius: 50%; */
		font-size: 1.5em;
	}

	button.fs-so {
		right: 130px;
	}

	/* button.fs-continue::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		content: '\27A1';
		text-align: center;
		font-size: 1em;
		line-height: 50px;
	} */

	.fs-continue::after,
	.fs-so::after {
		content: '';
	}

	button.fs-submit,
	button.fs-generate{
		width: 100%;
		font-size: 0.8em;
	}
	

	.fs-message-error {
		top: 15rem;
		left: 0;
		padding: 0 0px 0 1em;
		width: 100%;
		font-size: 1.5em;
		-webkit-transform: translate3d(0,-5px,0);
		transform: translate3d(0,-5px,0);
	}

	.fs-message-error.fs-show {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
}

#ResponseContainer {
	background: transparent;
	font-size: 0.5em;
	font-weight: 700;
	color: #fff;
	border-radius: 25px;
	padding: 20px;
	position: relative;
	display: inline-block;
	width: 100%;
	max-width: 850px;
	border-radius: 5px;
	background: #1d1f22;
	box-shadow: 0 2px rgba(0,0,0,0.2);
	color: #fff;
	border: 0.5px solid #798388;
}

#apiResponseContainer4 {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px 40px;
	padding-left: 0;
}

.svgloading-animation {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
}

#btndiv{
	justify-content: center;
  display: flex;
  gap: 20px;
  margin-top: 5%;
}

#nextBtn1{
	padding: 0.6em 1.5em;
  border: 3px solid #7439b3;
  border-radius: 40px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.97);
}
#apiResponseContainer > div,
#apiResponseContainer2 > div,
#apiResponseContainer3 > div,
#apiResponseContainer5 > div   {
	background: transparent;
	font-size: 0.45em;
	font-weight: 700;
	color: #fff;
	border-radius: 25px;
	padding: 20px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	pointer-events: auto;
	word-wrap: break-word;
	white-space: pre-wrap;
	width: 100%;
	max-width: 850px;
	margin: 5px 7px 7px 0;
	border-radius: 5px;
	background: #1d1f22;
	box-shadow: 0 2px rgba(0,0,0,0.2);
	color: #fff;
	opacity: 1;
	border: 0.5px solid #798388;
    padding-right: 30px; /* Adjust this value based on the SVG size */
}

#apiResponseContainer > div svg,
#apiResponseContainer2 > div svg,
#apiResponseContainer3 > div svg,
#apiResponseContainer5 > div svg {
    position: absolute;
    top: 10px; /* Adjust this value to position the SVG vertically */
    right: 10px; /* Adjust this value to position the SVG horizontally */
    width: 15px; /* Adjust the width of the SVG */
    height: 15px; /* Adjust the height of the SVG */
    fill: #fff; /* Set the color of the SVG */
}

#apiResponseContainer > div:hover,
#apiResponseContainer2 > div:hover,
#apiResponseContainer3 > div:hover,
#apiResponseContainer5 > div:hover {
	cursor: pointer;
	word-wrap: break-word;
	background-color: #8b4cd1;
	border: 0.1px solid #8b4cd1;

}

#apiResponseContainer > div:focus-visible,
#apiResponseContainer2 > div:focus-visible,
#apiResponseContainer3 > div:focus-visible,
#apiResponseContainer4 > div:focus-visible,
#apiResponseContainer5 > div:focus-visible
#apiResponseContainer > div.active,
#apiResponseContainer2 > div.active,
#apiResponseContainer3 > div.active,
#apiResponseContainer4 > div.active,
#apiResponseContainer5 > div.active {
	cursor: pointer;
	border: 0.1px solid #8b4cd1;
	outline: none;
	word-wrap: break-word;
	background-color: #8b4cd1;
}

.marketingDoc,
.marketingEmail{
	display: none;
}

.marketingEmail {
  margin: 0;
  padding: 0 0 0.15em;
  width: 100%;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 2px solid rgba(121,131,136);
  background-color: transparent;
  color: #ffffff;
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 1.5em;
  border-radius: 0;
}

.marketingEmail [required] {
	background-image: url(../img/abacusstar.svg);
  background-position: top right;
  background-size: 18px;
  background-repeat: no-repeat;
}

.marketingEmail::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

  @keyframes l2 {
	0%,25% {
	  background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
	  background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   50% {
	  background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
	  background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   75% {
	  background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
	  background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
   }
   95%,100% {
	  background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
	  background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
   }
  }



  .bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/**/
/* main styles */
/**/
.pcss3t {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 0;
	text-align: left;
	display: none;
}
.pcss3t > input {
	position: absolute;
	left: -9999px;
}
.pcss3t > label {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	transition: all 0.1s;
	-o-transition: all 0.1s;	
	-ms-transition: all 0.1s;	
	-moz-transition: all 0.1s;	
	-webkit-transition: all 0.1s;
}
.pcss3t > label i {
	display: block;
	float: left;
	margin: 16px 8px 0 -2px;
	padding: 0;
	border: 0;
	outline: none;
	font-family: FontAwesome;
	font-style: normal;
	font-size: 17px;
}
.pcss3t > input:checked + label {
	cursor: default;
}
.pcss3t > ul {
	list-style: none;
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 13px;
}
.pcss3t > ul > li {
	position: absolute;
	width: 100%;
	overflow: auto;
	padding: 30px 40px 40px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	opacity: 0;
	transition: all 0.5s;
	-o-transition: all 0.5s;	
	-ms-transition: all 0.5s;	
	-moz-transition: all 0.5s;	
	-webkit-transition: all 0.5s;
	font-size: 15px;
}
.pcss3t > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t > .tab-content-6:checked ~ ul .tab-content-6,
.pcss3t > .tab-content-7:checked ~ ul .tab-content-7,
.pcss3t > .tab-content-8:checked ~ ul .tab-content-8,
.pcss3t > .tab-content-9:checked ~ ul .tab-content-9,
.pcss3t > .tab-content-last:checked ~ ul .tab-content-last {
	z-index: 1;
	top: 0;
	left: 0;
	opacity: 1;
	-webkit-transform: scale(1,1);
	-webkit-transform: rotate(0deg);
}


/*----------------------------------------------------------------------------*/
/*                                 EXTENSIONS                                 */
/*----------------------------------------------------------------------------*/

/**/
/* auto height */
/**/
.pcss3t-height-auto > ul {
	height: auto !important;
}
.pcss3t-height-auto > ul > li {
	position: static;
	display: none;
	height: auto !important;
}
.pcss3t-height-auto > .tab-content-first:checked ~ ul .tab-content-first,
.pcss3t-height-auto > .tab-content-2:checked ~ ul .tab-content-2,
.pcss3t-height-auto > .tab-content-3:checked ~ ul .tab-content-3,
.pcss3t-height-auto > .tab-content-4:checked ~ ul .tab-content-4,
.pcss3t-height-auto > .tab-content-5:checked ~ ul .tab-content-5,
.pcss3t-height-auto > .tab-content-last:checked ~ ul .tab-content-last {
	display: block;
}


/**/
/* grid */
/**/
.pcss3t .grid-row {
	margin-top: 20px;
}
.pcss3t .grid-row:after {
	content: '';
	display: table;
	clear: both;
}
.pcss3t .grid-row:first-child {
	margin-top: 0;
}
.pcss3t .grid-col {
	display: block;
	float: left;
	margin-left: 2%;
}
.pcss3t .grid-col:first-child {
	margin-left: 0;
}
.pcss3t .grid-col .inner {
	padding: 10px 0;
	border-radius: 5px;
	background: #f2f2f2;
	text-align: center;
}
.pcss3t .grid-col-1 {
	width: 15%;
}
.pcss3t .grid-col-2 {
	width: 32%;
}
.pcss3t .grid-col-3 {
	width: 49%;
}
.pcss3t .grid-col-4 {
	width: 66%;
}
.pcss3t .grid-col-5 {
	width: 83%;
}
.pcss3t .grid-col-offset-1 {
	margin-left: 19%;
}
.pcss3t .grid-col-offset-1:first-child  {
	margin-left: 17%;
}
.pcss3t .grid-col-offset-2 {
	margin-left: 36%;	
}
.pcss3t .grid-col-offset-2:first-child {
	margin-left: 34%;
}
.pcss3t .grid-col-offset-3 {
	margin-left: 53%;
}
.pcss3t .grid-col-offset-3:first-child {
	margin-left: 51%;
}
.pcss3t .grid-col-offset-4 {
	margin-left: 70%;
}
.pcss3t .grid-col-offset-4:first-child {
	margin-left: 68%;
}
.pcss3t .grid-col-offset-5:first-child {
	margin-left: 85%;
}


/**/
/* typography */
/**/
.pcss3t .typography {
	color: #fff;
	white-space: pre-wrap;
}
.pcss3t .typography h1,
.pcss3t .typography h2,
.pcss3t .typography h3,
.pcss3t .typography h4,
.pcss3t .typography h5,
.pcss3t .typography h6 {
	margin: 40px 0 0 0;
	padding: 0;
	text-align: left;
	color: #333;
}
.pcss3t .typography h1 {
	font-size: 40px;
	line-height: 60px;
	text-shadow: 3px 3px rgba(0,0,0,0.1);
}
.pcss3t .typography h2 {
	font-size: 32px;
	line-height: 48px;
	text-shadow: 2px 2px rgba(0,0,0,0.1);
}
.pcss3t .typography h3 {
	font-size: 26px;
	line-height: 38px;
	text-shadow: 1px 1px rgba(0,0,0,0.1);
}
.pcss3t .typography h4 {
	font-size: 20px;
	line-height: 30px;
}
.pcss3t .typography h5 {
	font-size: 15px;
	line-height: 23px;
	text-transform: uppercase;
}
.pcss3t .typography h6 {
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.pcss3t .typography p {
	margin: 20px 0 0 0;
	padding: 0;
	line-height: 20px;
	text-align: left;
}
.pcss3t .typography ul,
.pcss3t .typography ol {
	list-style: none;
	margin: 20px 0 0 0;
	padding: 0;
}
.pcss3t .typography li {
	position: relative;
	margin-top: 5px;
	padding-left: 20px;
}
.pcss3t .typography li ul,
.pcss3t .typography li ol {
	margin-top: 5px;
}
.pcss3t .typography ul li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 4px;
	background: #404040;
}
.pcss3t .typography ol {
	counter-reset: list1;
}
.pcss3t .typography ol > li:before {
	counter-increment:list1;
	content: counter(list1)'.';
	position: absolute;
	top: 0;
	left: 0;
}
.pcss3t .typography a {
	text-decoration: underline;
	color: #1889e6;
}
.pcss3t .typography a:hover {
	text-decoration: none;
}
.pcss3t .typography .pic {
	padding: 4px;
	border: 1px dotted #ccc;
}
.pcss3t .typography .pic img {
	display: block;
}
.pcss3t .typography .pic-right {
	float: right;
	margin: 0 0 10px 20px;
}
.pcss3t .typography .link {
	text-decoration: underline;
	color: #1889e6;
	cursor: pointer;
}
.pcss3t .typography .link:hover {
	text-decoration: none;
}
.pcss3t .typography h1:first-child,
.pcss3t .typography h2:first-child,
.pcss3t .typography h3:first-child,
.pcss3t .typography h4:first-child,
.pcss3t .typography h5:first-child,
.pcss3t .typography h6:first-child,
.pcss3t .typography p:first-child {
	margin-top: 0;
}
.pcss3t .typography .text-center {
	text-align: center;
}
.pcss3t .typography .text-right {
	text-align: right;
}


/**/
/* steps */
/**/
.pcss3t-steps > label {
	cursor: default;
}


/**/
/* animation effects */
/**/
.pcss3t-effect-scale > ul > li {
	-webkit-transform: scale(0.1,0.1);
}
.pcss3t-effect-rotate  > ul > li {
	-webkit-transform: rotate(180deg);
}
.pcss3t-effect-slide-top > ul > li {
	top: -40px;
}
.pcss3t-effect-slide-right > ul > li {
	left: 80px;
}
.pcss3t-effect-slide-bottom > ul > li {
	top: 40px;
}
.pcss3t-effect-slide-left > ul > li {
	left: -80px;
}



/*----------------------------------------------------------------------------*/
/*                                   LAYOUTS                                  */
/*----------------------------------------------------------------------------*/

/**/
/* top right */
/**/
.pcss3t-layout-top-right {
	text-align: right;
}


/**/
/* top center */
/**/
.pcss3t-layout-top-center {
	text-align: center;
}


/**/
/* top combi */
/**/
.pcss3t > .right {
	float: right;
}



/*----------------------------------------------------------------------------*/
/*                                    ICONS                                   */
/*----------------------------------------------------------------------------*/

/**/
/* icons positions */
/**/
.pcss3t-icons-top > label {
	text-align: center;
}
.pcss3t-icons-top > label i {
	float: none;
	margin: 0 auto -10px;
	padding-top: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-right > label i {
	float: right;
	margin: 0 -2px 0 8px;
}
.pcss3t-icons-bottom > label {
	text-align: center;
}
.pcss3t-icons-bottom > label i {
	float: none;
	margin: -10px auto 0;
	padding-bottom: 17px;
	font-size: 23px;
	line-height: 23px;
	text-align: center;
}
.pcss3t-icons-only > label i {
	float: none;
	margin: 0 auto;
	font-size: 23px;
}


/*----------------------------------------------------------------------------*/
/*                               RESPONSIVENESS                               */
/*----------------------------------------------------------------------------*/

/**/
/* pad */
/**/
@media screen and (max-width: 980px) {
	
}


/**/
/* phone */
/**/
@media screen and (max-width: 767px) {
	.pcss3t > label {
		display: block;
	}
	.pcss3t > .right {
		float: none;
	}
}



/*----------------------------------------------------------------------------*/
/*                                   THEMES                                   */
/*----------------------------------------------------------------------------*/

/**/
/* default */
/**/
.pcss3t > label {	
	padding: 0 15px;
	background: #e5e5e5;
	font-size: 15px;
	line-height: 49px;
	font-weight: 600;
}
.pcss3t > label:hover {
	background: #f2f2f2;
}
.pcss3t > input:checked + label {
	background: #303030;
}
.pcss3t > ul {
	background: #303030;
	text-align: left;
}
.pcss3t-steps > label:hover {
	background: #e5e5e5;	
}


/**/
/* theme 1 */
/**/
.pcss3t-theme-1 > label {
	margin: 0 5px 5px 0;
	border-radius: 5px;
	background: #1d1f22;
	box-shadow: 0 2px rgba(0,0,0,0.2);
	color: #fff;
	opacity: 0.8;
	border : 0.5px solid #303030;
}
.pcss3t-theme-1 > label:hover {
	background: #444343;
	opacity: 1;
}
.pcss3t-theme-1 > input:checked + label {
	margin-bottom: 0;
	padding-bottom: 5px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #9e72cc;
	opacity: 1;
}
.pcss3t-theme-1 > ul {
	border-radius: 5px;
	box-shadow: 0 3px rgba(0,0,0,0.2);
}
.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
	border-top-left-radius: 0;
}
@media screen and (max-width: 767px) {
	.pcss3t-theme-1 > label {
		margin-right: 0;
	}
	.pcss3t-theme-1 > input:checked + label {
		margin-bottom: 5px;
		padding-bottom: 0;
		border-radius: 5px;
	}
	.pcss3t-theme-1 > .tab-content-first:checked ~ ul {
		border-top-left-radius: 5px;
	}
}


/*----------------------------------------------------------------------------*/
/*                               CUSTOMIZATION                                */
/*----------------------------------------------------------------------------*/

/**/
/* height */
/**/
.pcss3t > ul,
.pcss3t > ul > li {
	height: 370px;
}

.pcss3t > ul > .copy-btn:hover {
	cursor: pointer;
}

.pcss3t > ul > .copy-btn {
	float: right;
  margin-right: 15px;
  margin-top: 7px;
  z-index: 9999;
  position: relative;
}

.pcss3t > ul > .copiedSpan {
display: none;
background: #202123;
  color: #fff;
  padding: 7px;
  border-radius: 5px;
  float: right;
  margin-right: 15px;
  margin-top: 35px;
  z-index: 9999;
  position: relative;
  left: 50px;
}


.square-container {
    list-style-type: none;
    display: flex;
    position: relative;
    justify-content: center;
    top: 3rem;
}

.square {
    margin: 4px;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    animation: rotating 2s ease infinite;
}

.square1 {
    background: #b59bd9; /* Lighter shade */
    animation-delay: 0.2s;
}

.square2 {
    background: #a078d0; /* Slightly darker */
    animation-delay: 0.4s;
}

.square3 {
    background: #8b54c7; /* Middle shade */
    animation-delay: 0.6s;
}

.square4 {
    background: #7631be; /* Darker shade */
    animation-delay: 0.8s;
}

.square5 {
    background: #7439b3; /* Darkest shade */
    animation-delay: 1s;
}


@keyframes rotating {
    0% {
        transform: rotate(0) scale(1);
    }
    50% {
        transform: rotate(90deg) scale(0.6);
    }
    100% {
        transform: rotate(90deg) scale(1);
    }
}


#myform .form-header {
    gap: 5px;
    text-align: center;
    font-size: .5em;
	display: flex;
  }


  #myform .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
	font-weight: 700;
  }


  #myform .form-header .stepIndicator.active {
    font-weight: 600;
  }



  #myform .form-header .stepIndicator.finish {
    font-weight: 600;
  }



  #myform .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #343537;
    border-radius: 50%;
    border: 3px solid #343537;
  }


  #myform .form-header .stepIndicator.active::before {
    /* background-color: #9e1f62; */
    background-color: #7439b3;
    border: 3px solid #ddb4fd;
  }



  #myform .form-header .stepIndicator.finish::before {
    background-color: #7439b3;
    border: 3px solid #7439b3;
  }


  #myform .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #343537;
  }



  #myform .form-header .stepIndicator.active::after {
    background-color: #a16ce0;
  }


  #myform .form-header .stepIndicator.finish::after {
    background-color: #652d90;
  }

  #myform .form-header .stepIndicator:last-child:after {
    display: none;
  }


  #myform .form-header .stepIndicator:first-child:before {
	background-color: #7439b3;
	border: 3px solid #7439b3;
  }
  


article.has-tabs {
	background: #303030;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
	padding: 1rem;
	margin: 1rem auto 4rem auto;
	border-radius: 3px;
	
  }

  .ootb-tabcordion {
	display: none;
  }

  .ootb-tabcordion.has-tabs .ootb-tabcordion--tabs {
	opacity: 1;
	height: auto;
	visibility: visible;
	margin: 0 5px 5px 0;
  padding: 0 20px;
  gap: 5px;
  }
  .ootb-tabcordion.has-tabs .ootb-tabcordion--entry {
	min-height: 0;
  }
  .ootb-tabcordion.has-tabs .ootb-tabcordion--entry::before {
	display: none;
  }
  .ootb-tabcordion.has-tabs .ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	opacity: 1;
	transition: opacity 400ms ease-in-out;
	width: 100%;
	overflow: auto;
	box-sizing: border-box;
	font-size: 15px;
	white-space: pre-wrap;
	border: 0.5px solid #303030;
	height: calc(350px - 25px);
  }
  .ootb-tabcordion.has-tabs .ootb-tabcordion--entry .ootb-tabcordion--entry-content {
	opacity: 0;
	transition: opacity 400ms ease-in-out;
	overflow: auto;
  height: 370px;
  }
  
  .ootb-tabcordion--tabs {
	opacity: 0;
	height: 0;
	visibility: hidden;
	display: flex;
	flex-flow: wrap;
	margin: 0;
	list-style: none;
	padding: 0;
  }
  .ootb-tabcordion--tabs .tab {
	display: block;
	background: #444;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 300;
	margin: 0 0 1px 0;
	border: none;
	border-right: 1px solid #202123;
	cursor: pointer;
  }
  .ootb-tabcordion--tabs .tab:hover, .ootb-tabcordion--tabs .tab:focus {
	background: #535353;
	outline: none;
  }
  .ootb-tabcordion--tabs .tab.is-active {
	background: #7439b3;
  }
  .ootb-tabcordion--tabs .tab.is-active:hover, .ootb-tabcordion--tabs .tab.is-active:focus {
	background: #7439b3;
  }
  
  .ootb-tabcordion--entry {
	overflow: hidden;
  }
  .ootb-tabcordion--entry::before {
	position: relative;
	content: attr(data-title);
	cursor: pointer;
	z-index: 1;
	background: #444;
	color: #fff;
	padding: 0.5rem 1rem;
	display: block;
	border-radius: 3px;
	font-size: 17px;
  }
  .ootb-tabcordion--entry:hover, .ootb-tabcordion--entry:focus {
	outline: none;
  }
  .ootb-tabcordion--entry:hover::before, .ootb-tabcordion--entry:focus::before {
	background: #535353;
  }
  .ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	margin-top: 0;
	height: auto;
	opacity: 1;
	transition: margin 400ms ease-out -100ms;
	font-size: 15px;
  white-space: pre-wrap;
  height: calc(350px - 25px);
  overflow: auto;
  }
  .ootb-tabcordion--entry.is-active::before {
	background: #7439b3;
  }
  .ootb-tabcordion--entry.is-active:hover::before, .ootb-tabcordion--entry.is-active:focus::before {
	background: #7439b3;
  }
  
  .ootb-tabcordion--entry-container {
	overflow: hidden;
	margin-bottom: 1px;
	position: relative;
  }
  
  .ootb-tabcordion--entry-content {
	position: relative;
	margin-top: -100%;
	height: 0;
	opacity: 0;
	transition: margin 500ms ease-in;
	padding: 1rem;
  }
  .ootb-tabcordion--entry-content a.more {
	color: #444;
  }
  .ootb-tabcordion--entry-content a.more:hover {
	color: #3bacff;
  }


.ootb-tabcordion--entry > .ootb-tabcordion--entry-container > .copy-btn {
    float: right;
    margin-right: 15px;
    margin-top: 7px;
    z-index: 9999;
    position: absolute;
    display: none;
	right: 0;
top: 0;
}

.ootb-tabcordion--entry.is-active > .ootb-tabcordion--entry-container > .copy-btn {
    display: block;
}

.ootb-tabcordion--entry > .ootb-tabcordion--entry-container > .copy-btn:hover {
    cursor: pointer;
}

.ootb-tabcordion--entry > .ootb-tabcordion--entry-container > .copiedSpan {
    display: none;
    background: #202123;
    color: #fff;
    padding: 7px;
    border-radius: 5px;
    float: right;
    margin-right: 15px;
    margin-top: 45px;
    z-index: 9999;
    position: absolute;
	right: 10px;
	font-size: 12px;
}

@media screen and (min-height: 667px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(150px - 25px);
	}
  }
  
  @media screen and (min-height: 760px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(240px - 25px);
	}
  }
  
  
  @media screen and (min-height: 800px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(280px - 25px);
	}
  }
  
  
  @media screen and (min-height: 812px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(300px - 25px);
	}
  }
  
  
  
  @media screen and (min-height: 883px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(360px - 25px);
	}
  }
  
  
  @media screen and (min-height: 896px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(380px - 25px);
	}
  }
  
  
  
  @media screen and (min-height: 926px) {
	.ootb-tabcordion--entry.is-active .ootb-tabcordion--entry-content {
	  height: calc(400px - 25px);
	}
  }