
/* Header bar container */
.band {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: #fff;
	border-bottom: 1px solid #e0e0e0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	pointer-events: auto;
}

.brand {
	position: relative;
	background: transparent;
	padding: 0;
	top: auto;
	left: auto;
	z-index: 3;
	display: flex;
	align-items: center;
}

.brand::before {
	display: none;
}

.brand::after {
	display: none;
}

.logo {
	margin-right: 20px;
	margin-left: 0;
	max-width: 200px;
	height: auto;
}

.menu {
	position: relative;
	top: auto;
	right: auto;
	padding: 0;
	z-index: 2;
	background: transparent;
	border-radius: 0;
	display: flex;
	align-items: center;
}

.menu form {
	max-width: none;
	padding: 0;
	margin: 0;
}

.menu::before {
	display: none;
}

.menu::after {
	display: none;
}

.menu ul {
	display: flex;
	align-items: center;
	gap: 5px;
}
.menu li {
	padding: 0;
	margin: 0;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	list-style: none;
}

.menu a {
	color: #4a4a4a;
	padding: 10px 15px;
	margin: 0;
	letter-spacing: 1px;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.menu a:hover {
	color: #0090d0;
	background: transparent;
}

.account {
	position:absolute;
	top:20px;
	right: 20px;
	min-height: 70px;
	min-width: 300px;
	padding: 8px 20px;
	z-index:2;
	/* min-width:300px;
	min-width: 44vw; */
	background: #fff;
	border-radius: 0 0 0 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.account::before {
	content:'';
	position: absolute;
	top:0;
	display:block;
	background: radial-gradient(circle at bottom left, transparent 0, transparent 70%, #fff 70%, #fff 100%);
	left: -6px;
	width:6px;
	height:6px;
}

.account::after {
	content:'';
	position: absolute;
	bottom:-6px;
	display:block;
	background: radial-gradient(circle at bottom left, transparent 0, transparent 70%, #fff 70%, #fff 100%);
	right:0;
	width:6px;
	height:6px;
}

.support {
	position: fixed;
	bottom:0;
	right:0;
	z-index: 99;
}

.support a {
	display: block;
	background: linear-gradient(-45deg, #23A6D5, #23D5AB, #23A6D5, #23D5AB) !important;
	background-size: 400% 400% !important;
	padding: 10px 20px;
	color: #fff;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 200ms transform;
}

.support a:hover {
	background: linear-gradient(45deg, #23A6D5, #23D5AB, #23A6D5, #23D5AB) !important;
	background-size: 400% 400% !important;
	transform: scale(1.1)
}

.support a img {
	margin-right: 10px;
	max-width: 30px;
}

.main {
	display: flex;
	min-height: 100vh;
	padding-top: 70px;
}

.primary {
	flex: 3;
	background: linear-gradient(to left, rgba(204,204,204,1), rgba(204,204,204,0.75));
	padding: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 14vw;
	padding-top: 7vw;
	position: relative;
}

.primary.details {
	flex: 1;
	background: linear-gradient(180deg,rgba(0,72,130,.6),rgba(0,112,130,.9));
	padding-bottom:0;
	padding-top: 0;
}

.meta {
	color: #fff;
	border: 1px solid rgba(255,255,255, 0.5);
	text-align: center;
}

.meta-inner {
	padding: 20px;
}

.meta-label {
	border-bottom: 1px solid rgba(255,255,255, 0.5);
	text-transform: uppercase;
	background: rgba(255,255,255, 0.2);
	width: 100%;
	padding: 10px;
	letter-spacing: 2px;
}

.meta-remainder {
	font-size: 160px;
	line-height: 1.2;
}

.meta-context {
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 20px;
}

.meta-button.button {
	margin: 8px 0;
	display: block;
	min-width: 320px;
	min-width: 280px;
}

.content {
	max-width: 600px;
}

.background {
	pointer-events: none;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	/* z-index:-1; */
}

.background img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.panel {
	flex: 2;
	min-width: 300px;
	background: #333;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.panel-detail {
	/* flex: 2; */
	min-width: 300px;
	background: #333;
	padding: 40px;
	/* display: flex; */
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: auto;
	min-height: 100vh;
}

.panel h1 {
	text-align: left;
	width: 100%;
	max-width: 914px;
	text-transform: uppercase;
	font-size: 32px;
	letter-spacing: 3px;
	color: #fff;
	margin-left: 40px;
}

form {
	max-width: 500px;
	width: 100%;
	padding-bottom: 10vw;
	padding-top: 5vw;
}

form input {
	transition:140ms all;
}

form input:focus {
	/* transform: scale3d(1.02, 1.02, 1.02); */
	transform: scale(1.03);
}

.button {
	width: 100%;
	border: none;
	margin:20px 0;
	transition:140ms all;
}
.button:hover {
	/* transform: scale3d(1.01, 1.01, 1.01); */
	/* transform: perspective(1px) scale(1.02) */
	transform: scale(1.03);
}

.button-contained {
	height: 40% !important;
	width: auto;
	padding-left:40px;
	padding-right: 40px;
	margin-top: 0;
}

.is-ghost {
	border: 1px solid #fff;
	color: #fff;
}

.is-ghost:hover {
	color: #fff;
}

.notice {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	text-align: center;
}

.notice a {
	color: #23d0af;
	transition: 200ms all;
}

.notice a:hover{
	border-bottom: 1px solid #23d0af;
}

.notice input {
	cursor: pointer;
}

.field {
	width: 100%;
}

label {
	text-transform: uppercase;
	font-size: 14px !important;
	letter-spacing: 1px;
	font-weight: 300;
}

.mobile {
	width: 100%;
	display: none;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 40px;
}

.columns, .column {
	margin-bottom: 0 !important;
}

.select, select {
	width: 100% !important;
}

.box {
	position: relative;
	background: #fff;
	width: 100%;
	max-width:1200px;
	/* min-height: 750px; */
	border-radius: 0;
	color: #333;
	padding: 40px;
}

.box .delete {
	position: absolute;
	top:16px;
	right:16px;
}

.box textarea {
	width: 100%;
	min-height: 300px;
	padding: 20px;
}

.box .os {
	border: 1px solid #ccc;
	text-transform: uppercase;
	min-height: 200px;
	font-weight: 600;
	display:flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	letter-spacing: 2px;
}

.box .os img {
	display:block;
	width: 80px;
	margin-bottom: 10px;
}

.box .platform {
	border: 1px solid #ccc;
	text-transform: uppercase;
	min-height: 140px;
	font-weight: 600;
	display:flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	letter-spacing: 2px;
}

.box .platform:hover {
	background: #efefef;
	cursor: pointer;
}

.box .platform img {
	display:block;
	max-width: 300px;
	width: 100%;
}

.box p {
	max-width: 530px;
	margin: 0 auto;
}

.underlinked {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	border-bottom: 1px solid #23BDC1;
	padding-bottom: 4px;
	color: #23BDC1;
}

.underlinked:hover {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	border-bottom: 2px solid #23d0af;
	color: #23d0af;
}

.disable-link {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	border-bottom: 1px solid #B2BABB ;
	padding-bottom: 4px;
	color: #B2BABB ;
	pointer-events: none
}



.actions {
	/* margin-bottom: 20px; */
	/* max-width: 914px; */
	width: 100%;
	padding: 10px;
	display: flex;
}

.action {
	flex: 1;
	border: 1px solid #fff;
	margin: 10px;
	text-align: center;
	transition: 200ms all;
}

.action:hover {
	background: rgba(255,255,255,0.2);
	transform: scale(1.04);
}

.action a {
	display: block;
	padding: 40px;
	padding: 30px;
}

.action img {
	max-width: 80px;
}

.action p {
	margin: 0 auto;
	margin-top: 16px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	max-width: 160px;
	font-size: 14px;
}

.action:nth-of-type(1) p {
	max-width: 140px;
}


.action-logo {
	flex: 1;
	border: 1px solid #fff;
	margin: 10px;
	text-align: center;
	transition: 200ms all;
}

.action-logo a {
	display: block;
	padding: 40px;
	padding: 30px;
}

.action-logo img {
	max-width: 80px;
}

.action-logo p {
	margin: 0 auto;
	margin-top: 16px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	max-width: 160px;
	font-size: 14px;
}

.action-logo:nth-of-type(1) p {
	max-width: 140px;
}

.sub-actions {
	/* max-width:914px; */
	width: 100%;
	padding: 20px;
}

.sub-action {
	display: block;
	border: 1px solid #fff;
	width: 100%;
	margin-bottom: 14px;
	text-transform: uppercase;
	position: relative;
	transition: 200ms all;
}

.sub-action:hover {
	background: rgba(255,255,255,0.2);
	transform: scale(1.02);
}

.sub-action a {
	display: flex;
	padding: 10px;
	color: #fff;
	align-items: center;
}

.sub-action p {
	letter-spacing: 2px;
}

.sub-action-icon {
	max-width: 32px;
	margin-left:6px;
	margin-right:12px;
}

.sub-action-arrow {
	position: absolute;
	right:20px;
	top:16px;
	pointer-events: none;
}

.sideform {
	position:fixed;
	left:0;
	bottom:0;
	top:0;
	z-index: 5;
	max-width:660px;
	width: 100%;
	background: #ccc;
	overflow: auto;
	
}

.sideform .hbspt-form {
	width: 450px;
	margin: 0 auto;
}

.sideform-inner {
	position: relative;
	padding-top: 14px;
	padding-bottom: 60px;
}

.sideform-inner h1 {
	color: #58585B;
	max-width: 450px;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 32px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.sideform-inner .delete{
	position: absolute;
	top:20px;
	right: 20px;
}

.account-title {
	display: flex;
	max-width: 1000px;
	width: 100%;
	margin-bottom: 20px;
	padding-top: 5rem;
}

.account-title h1 {
	margin-left:0;
}

.return-home {
	display: flex;
	border: 1px solid #fff;
	max-width: 300px;
	width: 100%;
	align-items: center;
	transition: 140ms all;
}

.return-home:hover {
	transform: scale(1.02);
}

.return-home img {
	transform: rotate(180deg);
	margin-left: 20px;
	margin-right: 20px;
	transition: 200ms all;
}

.return-home:hover img {
	transform: rotate(180deg) translateX(10px);
}

.return-home p {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 1px;
}

.account-wrap {
	border: 1px solid rgba(255,255,255, 0.5);
	padding: 40px;
	max-width: 1000px;
	width: 100%;
}

.account-wrap form {
	padding: 0;
	max-width: 1200px;
	width: 100%
}

.delete-account {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 2px;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
}

.delete-account a {
	color: #fff;
	transition: 200ms all;
}

.delete-account a:hover {
	border-bottom: 1px solid #fff;
}

.tour {
	width: 100% !important;
	max-width: 1200px;
}

.steps {
	display: flex;
	justify-content: center;
	transform:translateY(-10px);
}

.dot {
	width: 8px;
	height: 8px;
	border: 1px solid #707070;
	border-radius: 10px;
	margin: 2px;
}

.dot.filled {
	background: #707070;
}

.tour-icon {
	width: 175px;
	height: 175px;
	display: block;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align:center;
}

.tour-icon img {
	max-width: 170px;
	margin: 0 auto;
}

.knowledge-icon {
	margin-bottom: 30px;
}

.box.knowledge-box p {
	max-width: 730px;
}

.tutorials {
	display: flex;
}

.tutorial {
	flex: 1;
	text-transform: uppercase;
	color: #23BEBF;
	border: 1px solid #ccc;
	margin: 14px;
	padding: 14px;
	transition: 100ms background;
}

.tutorial:not(.getting-started):hover p {
	color: #23BEBF;
}

.tutorial:hover {
	background: #efefef;
}

.tutorial.getting-started {
	color: #000;
	border-color: #000;
}

.tutorial p {
	margin-bottom: 10px !important;
	max-width: 160px;
	line-height: 1.2;
	font-size: 110%;
}

.getting-started p {
	max-width: 140px;
}

.tutorial img {
	margin-bottom: 8px;
}

.constrained-item {
	max-width: 800px; 
	margin:0 auto;
}

.constrained-item textarea {
	min-height: 180px;
}

.constrained-item.license-key {
	margin-top: 30px;
	margin-bottom: 40px;
}

.constrained-item.license-key textarea {
	min-height: 120px;
}

.topped {
	margin-top: 30px;
}

.license-key {
	position:relative;
	margin-bottom: 10px;
}
.license-key p {
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	top: 40%;
}
.license-key p .button {
	color: #333;
	border: 1px solid #333;
	background: #fff;
}

.hero {
	/* flex: 1; */
	background: linear-gradient(180deg,rgba(0,72,130,.6),rgba(0,112,130,.9));
	padding-bottom:0;
	padding-top: 0;
	height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
}


.hero h1 {
	text-align: left;
	width: 100%;
	text-transform: uppercase;
	text-align: center;
	font-size: 32px;
	letter-spacing: 3px;
	color: #fff;
	margin-left: 40px;
}

.vertical {
	flex-direction: column;
}

.layout {
	background: #333;
	width: 100%;
	display: flex;
	height: 70%;
}

.sidebar {
	flex: 1;
	padding-left: 80px;
	padding-top: 80px;
}

.platform-title {
	letter-spacing: 3px;
	text-transform: uppercase;
	padding-left: 10%;
  padding-top: 1%;
  display: none;
}

.platform-title span {
	color: rgba(0,112,130,.9);
	font-size: 1.5rem;
}

.platform-title hr {
	margin: 1rem 0 !important;
}


.sidebar-title {
	color: #23CDB2;
	font-size: 32px;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 20px;
}

.sidebar-product {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 3px;
	padding: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.sidebar-product img {
	margin-right: 10px;
  width: 40px;
}


.sidebar-product:hover {
	background: #4E4E4E;
	cursor: pointer;
}

.sidebar-product.active {
	background: #4E4E4E;
}

.options {
	flex: 3;
	background: #4E4E4E;
	padding: 15px;
}

.options-thankyou {
	flex: 3;
	padding: 60px;
}

.options-thankyou .link p {
	color: #fff;
	margin-bottom: 14px;
	font-size: 22px;
  text-align:center;
}

.interact {
	display: flex;
	max-width: 1220px;
}

.interact .meta {
	margin: 20px;
	margin-bottom: 34px;
	background: #333;
	border: 1px solid #333;
}

.product {
	display: flex;
	justify-content: space-between;
	max-width: 1220px;
	padding: 20px;
}

.product .name .hwp-icon {
	height: auto;
	max-width: 60%;
	padding-bottom: 15px;
}

.product .name .hnp-icon {
	height: auto;
	max-width: 50%;
	padding-bottom: 15px;
}

.product .name .product-icon {
	height: auto;
	max-width: 100%;
	padding-bottom: 15px;
}

.product .name p {
	color: #fff;
	margin-bottom: 14px;
	font-size: 22px;
}

.product .link {
	display: flex;
	flex-direction: column;
	justify-content: top;
}

.product .link p {
	color: #23CDB2;
	margin-bottom: 14px;
	font-size: 26px;
}

.product .link a {
	color: #fff;
	display: flex;
	align-items: center;
}

.product .link a span {
	color: #23CDB2;
	margin-right: 10px;
	font-size: 18px;
}

.product .link a img {
	max-width: 30px;
}

.more-info {
	display: flex;
	flex-direction: column;
	max-width: 1220px;
	margin: 0px 20px;
	margin-bottom: 34px;
}

.more-info p {
	color: #fff;
	margin-bottom: 14px;
	font-size: 22px;
}

.more-info a {
	color: #23CDB2;
	margin-bottom: 14px;
	font-size: 22px;
}

.more-info .link {
	margin-top: 14px;
	text-align: center;
}

/* @media (max-width: 768px) { 
	.primary {
		display: none;
	}
	.mobile {
		display: block;
	}
	.logo {
		max-width: 200px;
	}
} */

.interface {
	flex: 1;
}

.platform-tabs {
	position: absolute;
	bottom: 0;
	left:0;
	right: 0;
	align-items: center;
	justify-content: center;
  /* overflow:auto; */
}

.platform-tabs-flex {
	position: absolute;
	bottom: 0;
	left:0;
	right: 0;
	align-items: center;
	justify-content: center;
  /* overflow:auto; */
}

.platform-tab {
	background: #333;
	color: #fff;
	text-transform: uppercase;
    color: #fff;
    letter-spacing: 3px;
	padding: 20px;
	margin: 0 10px;
    display: flex;
    align-items: center;
}


.platform-tab.active {
	background: #4E4E4E;
}

.platform-tab img {
	width: 40px;
	position: static;
	opacity: 1;
	margin-right: 10px;
  vertical-align: middle;
}

.logout-btn{
	font-size: 0.9rem;
    letter-spacing: 3px !important;
    color: #333;
    margin-left: 10px !important;
    padding-left: 9px !important;
	max-width: fit-content;
	max-width: -moz-fit-content;
}

.hidden {
	display:none;
}

.platform-tab:hover{
	cursor: pointer;
}

.no-padding
{
	padding:0px;
}

.mobile-sdk
{
	text-align: center;
	font-size: 0.8rem;
	margin-top: 1.5rem;
}

.tour
{
	font-size: 1.2rem !important;
}

.contact-sale-trial-expire
{
	padding: 2rem 5rem;
	font-size: 1.5rem;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #333;
  color: #f5f5f5;
  cursor: pointer;
  padding: 20px;
  text-align: left;
  float: right;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-right: 5%;
  background-image: url(/images/triangle.svg);
  background-repeat: no-repeat;
  background-position: center;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion_active, .accordion:hover {
  transform: rotate(180deg);
}

.accordion_close, .accordion:hover {
  transform: rotate(0deg);
}

.desktop{
	display: block;
	text-align: left;
}

.deal-card{
	padding: 1rem;
	background-color: #fff;
	margin-bottom: 0.5rem;
}

.deal-card > .item > .item-name, .item-value{
	display: inline-block;
	margin-right: 1rem;
	vertical-align: text-top;
}

.deal-card > .item > .item-name{
	font-weight: bolder;
}

.deals_error
{
	padding: 1rem;
	background-color: #fff;
	color: #de0a26;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

@media (max-width: 1250px) and (min-width: 1041px) {
	.actions {
		flex-wrap: wrap;
	}
	.action {
		flex-basis: 43.1%;
		flex-grow: 0;
		flex-shrink: 0;
	}
}

@media (max-width: 1040px) {
	.primary {
		display: none;
	}
	.mobile {
		display: block;
	}
	.logo {
		max-width: 200px;
	}
	.panel h1 {
		margin-top: 80px;
	}
	.return-home {
		margin-top: 80px;
	}
	.account {
		min-height: 61px;
		min-width: 250px;
	}
	.actions {
		flex-direction: row;
	}
	.actions {
		flex-direction: column;
	}
	.meta {
		display: none;
	}
	.mobile .meta {
		display: block;
	}
	.product {
		flex-direction: column;
	}
	.product .link {
		margin-top: 40px;
	}

	.hero {
		/* flex: 1; */
		background: linear-gradient(180deg,rgba(0,72,130,.6),rgba(0,112,130,.9));
		padding-bottom:0;
		padding-top: 0;
		height: 50vh;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100%;
	}

	.hero h1 {
		text-align: left;
		width: 100%;
		text-transform: uppercase;
		text-align: center;
		font-size: 32px;
		letter-spacing: 3px;
		color: #fff;
		margin-left: 40px;
		margin-top: -10vh;
	}

	.desktop{
		display: none;
	}
	
}

@media (max-width: 900px) {
  .sidebar {
		display: none;
	}
  
  .platform-tabs-flex{
		display: none;
	}

  .platform-title {
    display: block;
  }

  .platform-tab {
    padding: 1% 0% 1% 10%;
    overflow: hidden;
    display: none;
  }
  
  .platform-tab img {
    width: 30px;
  }

  .platform-tabs {
    background:#333;
		display: block;
    max-height: 100%;
	}

  .actions {
		flex-direction: column;
	}
}

@media (min-width: 901px) and (max-width: 1700px) {
  .sidebar {
		display: none;
	}

	.platform-tabs {
		display: flex;
	}

  .platform-tabs-flex{
		display: flex;
	}
}

/* @media (max-width: 670px) {
	.account-title {
		flex-direction: column;
	}
	.return-home {
		margin-top: 10px;
		padding: 10px;
	}
}

@media (max-width: 900px) {
	.actions {
		flex-direction: column;
	}
} */


@media (min-width: 901px) and (max-width: 1400px) {
  .hero{
    height: 40vh !important;
    justify-content:normal;
  }

  .hero h1 {
    padding-top: 30%;
  }

  .platform-title {
    display: block;
    width: 50%;
  }

  .platform-tab {
    padding: 1% 0% 1% 10%;
    overflow: hidden;
    display: none;
  }

  .platform-tabs {
    background:#333;
    align-items: first baseline;
    justify-content: start;
	}
}

.hero.heroopen {
	height: 70vh !important;
}

.platform-tabs.platform-tabsopen {
	height: 40vh !important;
}

@media (min-width: 900px) and (max-width: 1040px) {
	.hero h1 {
    padding-top: 20%;
  }
}

@media (min-width: 1040px) and (max-width: 1200px) {
	.hero h1 {
    padding-top: 12%;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
	.hero h1 {
    padding-top: 8%;
  }
}

@media (max-width: 1700px) {

	.options .product {
		margin-left: auto;
		margin-right: auto;
	}

	.options .interact {
		margin-left: auto;
		margin-right: auto;
	}

	.options .more-info {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1701px) {
	.platform-tabs {
		display: none;
	}

	.platform-tabs-flex {
		display: none;
	}

	.hero {
		/* flex: 1; */
		background: linear-gradient(180deg,rgba(0,72,130,.6),rgba(0,112,130,.9));
		padding-bottom:0;
		padding-top: 0;
		height: 25vh;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100%;
	}
}

@media (min-width: 1080px) {
	.modal-card-extra{
		width: 840px;
	}
}

/* deal tables */

#deals h1, #licensed_products h1 {
	margin-left: 0px;
	margin-bottom: 20px;
}
.deal-table {
	width: 100%;
	background-color: white;
	margin-bottom: 50px;
}

.deal-table-cell {
	border: 1px solid gray;
	text-align: left;
	padding: 20px 20px;
}

.deal-table-cell .show-less {
	height: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.deal-table-cell .show-all {
	height:auto;
	overflow:visible;
	text-overflow: none
}

.deal-table-header {
	font-weight: bold
}

.deal-table-header.deal-table-cell {
	background-color: lightgray;
}

.deal-table-cell ul {
	padding-left: 20px;
	list-style-type: none; /* Remove bullets */
	padding: 0; /* Remove padding */
	margin: 0; /* Remove margins */
}

.deal-table-cell hr {
	margin: .5rem 0;
}

.deal-table-cell .button{
	margin: 0;
}

/* loading */
.lds-dual-ring {
	display: inline-block;
	width: 80px;
	height: 80px;
  }
  .lds-dual-ring:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
/* loading */

/* loading */
.lds-dual-ring-blue {
	display: inline-block;
	width: 80px;
	height: 80px;
  }
  .lds-dual-ring-blue:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #23A6D5;
	border-color: #23A6D5 transparent #23A6D5 transparent;
	animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring-blue {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }
/* loading */

.box textarea.license-key-input {
	min-height: 100px;
}

/* Ensure the close button is always visible in validate license modal */
#validate-license-modal .box {
	position: relative;
}

#validate-license-modal .box > .delete {
	position: sticky;
	top: 0;
	float: right;
	z-index: 10;
	margin: -20px -20px 0 0;
}

#validate-license-modal .modal-content {
	max-height: 80vh;
	overflow-y: auto;
}

/* Make generate license modal scrollable */
#generate-license-modal .modal-content {
	max-height: 85vh;
	overflow-y: auto;
}

#generate-license-modal .box {
	position: relative;
}

#generate-license-modal .box > .delete {
	position: sticky;
	top: 0;
	float: right;
	z-index: 10;
	margin: -20px -20px 0 0;
	background: #333;
}

textarea#validate-license-modal-data {
	min-height: 500px;
}
span#validate-license-modal-error {
	text-overflow: ellipsis;
	overflow: clip;
}
.box textarea#gen-license-key {
	min-height: 300px;
}

.license-key-container {
	position: relative;
}

.license-key-container textarea {
	padding-top: 40px;
	resize: none;
}

.copy-license-btn {
	position: absolute;
	top: 10px;
	right: 12px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 6px 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s, border-color 0.2s;
	z-index: 1;
}

.copy-license-btn:hover {
	background: #e0e0e0;
	border-color: #999;
}

.copy-license-btn:active {
	background: #ccc;
}

.copy-license-btn svg {
	color: #333;
}

.copied-feedback {
	position: absolute;
	top: 10px;
	right: 50px;
	background: #40E0D0;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s;
}

.copied-feedback.show {
	opacity: 1;
}
  
span.label {
	letter-spacing: 1px;
  	font-size: 14px;
  	text-transform: uppercase;
}

#download-modal-communicator .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}

#download-modal-exchange .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}

#download-modal-native .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}

#download-modal-publish .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}

#download-modal-visualize .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}

#download-modal-web .modal-card .content .constrained-item.license-key {
	margin-bottom: 10px;
}


