@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
.affiliate-catalog-container {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}


.affiliate-catalog-container > div {
	padding: 10px;
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	width: 300px;
	background-color: white;
}

.affiliate-catalog-container div.description {
	font-size: 0.9rem;
	opacity: 0.8;
	font-style: italic;
	margin-bottom: 1rem;
}
*{
    padding:0;
    margin:0
}
.wrapper{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}
.checkmark circle{
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: url(#seagreen-gradient);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}
.checkmark{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 0 auto;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}
.checkmark path{
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}
@keyframes stroke{
    100%{
        stroke-dashoffset: 0
    }
}
@keyframes scale{
    0%, 100%{
        transform: none
    }
    50%{
        transform: scale3d(1.1, 1.1, 1)
    }
}
@keyframes fill{
    100%{
        box-shadow: inset 0px 0px 0px 40px var(--seagreen);
    }
}

.clock {
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0);
	box-shadow: inset 0px 0px 0px 4px #555;
	border-radius: 50%;
	position: relative;
	margin: 0 auto;
}

.clock:after, .clock:before {
	position: absolute;
	content: "";
	transform-origin: 2px 2px;
	background-color: #555;
	height: 4px;
	top: 38px;
	left: 38px;
}

.clock:before {
	width: 34px;
	animation: spin_minute 667ms linear 3 forwards;
	transform: rotate(-30deg);
}

.clock:after {
	width: 27px;
	animation: spin_hour 2000ms linear 1 forwards;
	transform: rotate(30deg);
}

@keyframes spin_minute {
	to {
		transform: rotate(330deg);
	}
}

@keyframes spin_hour {
	to {
		transform: rotate(210deg);
	}
}

h1.hero.white.animatedHeadline {
	filter: drop-shadow(4px 4px 4px #01010180); 
	text-shadow: none;
}

h1.animatedHeadline span {
	display: inline-block;
	background-image: var(--light-blue-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-right: 3px;
}

h1.hero.white.animatedHeadline span {
	background-image: var(--light-gray-gradient);
}

h1.animatedHeadline span.typing {
	border-right: 1px solid var(--blue);
	animation: blink 0.8s;
	animation-iteration-count: infinite;
}
h1.hero.white.animatedHeadline span.typing {
	border-color: #eee;
}


@keyframes blink { 
	50% { border-color: transparent }  
}


.skeleton-table tr td, .skeleton-table tr th {
	padding: 4px;
}
.skeleton-table span {
	width: 100%;
	height: 15px;
	display: inline-block;
	background-image: linear-gradient(90deg, #e8e8e8 0px, #f8f8f8 40px, #e8e8e8 80px);
	background-size: 300px;
	animation: skeleton-lines 2.5s infinite linear
}
.skeleton-table tr td span {
	opacity: 0.6;
}

@keyframes skeleton-lines {
  0% { background-position: -100px }
  40%, 100% { background-position: 140px }
}



@keyframes heartbeat {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  12% {
    transform: scale(1.02); /* First pulse, slight increase */
    opacity: 0.9;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.03); /* Second pulse, more pronounced */
    opacity: 0.8;
  }
  70% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulsating {
  animation: heartbeat 1.2s infinite; /* Adjust time to control the speed */
}



@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotating {
  animation: rotateAnimation 0.9s linear infinite;
}
div.autocomplete {
	position: absolute;
	top: 61px;
	left: 0px;
	z-index: 99;
	border: 1px solid #444;
	background-color: white;
	max-height: 250px;
	overflow-y: scroll;
	border-radius: var(--border-radius);
	padding: 5px 0;
}

.app-menu div.autocomplete {
	top: 23px;
}

div.autocomplete a, div.autocomplete i {
	text-decoration: none;
	color: black !important;
	display: block;
	font-weight: var(--font-regular) !important;
	padding: 5px 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.autocomplete a:hover {
	color: var(--blue);
	text-decoration: underline;
	background-color: #f8f8f8;
}

div.autocomplete.light-border {
	border-color: #ccc;
}

div.autocomplete.hidden, div.autocomplete a.hidden, div.autocomplete i.hidden {
	display: none;
}

@media (max-width: 575px) {
	div.autocomplete {
		top: 77px;
		max-height: 350px;
	}
}
.banner-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 10px;
}

.banner-card {
	border: 1px solid #ccc;
	width: 200px;
	border-radius: var(--border-radius);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.banner-dashboard-image, .banner-card-image {
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
.banner-dashboard-image {
	height: 30px;
	width: 50px;
}
.banner-card-image {
	width: 100%;
	height: 198px;
	margin-bottom: 10px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}

.banner-card-size {
	font-weight: bold;
}

.banner-card-size, .banner-card-filesize, .banner-card-format, .banner-card-action {
	padding: 2px 10px;
	font-size: 0.9rem;
	line-height: 1.3;
}
.banner-card-action {
	margin-bottom: 10px;
}

.banner-common-size-container {
	margin-bottom: 1.5rem;
}

.banner-common-size {
	display: inline-block;
	font-size: 0.8rem;
	border: 1px solid #ccc;
	color: #888;
	border-radius: var(--border-radius);
	text-align: center;
	padding: 0px 5px;
	margin-right: 3px;
	margin-bottom: 3px;
}

.banner-common-size.banner-uploaded {
	border-color: var(--green);
	color: var(--green);
	background-color: #f8fff8;
	font-weight: bold;
}

.banner-common-size span.google-icon {
	display: none;
	color: var(--green);
	font-size: 0.9rem;
	position: relative;
	top: 2px;
	font-weight: bold;
}
.banner-common-size.banner-uploaded span.google-icon {
	display: inline;
}

.banner-common-size.main {
	font-size: 1rem;
	padding: 1px 6px;
}
.banner-common-size.main span.google-icon {
	font-size: 1.1rem;
}

.banner-group {
	padding-bottom: 30px;
	border-top: 1px solid #ccc;
	padding-top: 30px;
}

.banner-group-header-name {
	font-size: 1.1rem;
	font-weight: bold;
}

.banner-group-preview img {
	max-height: 200px;
	max-width: 100%;
	margin-top: 4px;
	box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
}

.banner-group-header-advertiser, .banner-group-header-created {
	margin-bottom: 0.5rem;
}
.banner-group-sizes .banner-common-size {
	cursor: pointer;
}



img.banner-image {
	cursor: pointer;
	height: 90px;
	margin-top: 30px;
	display: block;
}


@media (max-width: 575px) {
	.banner-card {
		width: calc(50% - 10px);
	}
}

@media (max-width: 991px) {
	.banner-group-preview {
		margin-bottom: 20px;
	}
}

.barchart-container {
	display: flex;
	gap: 1%;
	align-items: flex-end;
	position: relative;
}

.barchart-bar {
/*	flex-grow: 1; */
/*	width: 20px; */
	background-image: var(--blue-gradient);
	position: relative;
/*	border-radius: var(--border-radius); */
	cursor: default;
}
.barchart-bar:first-child {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
.barchart-bar:last-child {
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

.barchart-bar-container {
	display: flex;
	flex-direction: column-reverse;
	flex-grow: 1;
	width: 20px;
}

.barchart-label, .barchart-axis {
	padding: 6px;
	width: 100%;
	font-size: 0.8rem;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
}

.barchart-label {
	color: white;
}

.barchart-label.value2 {
	top: -28px;
	color: #222;
}

.barchart-axis {
	bottom: -24px;
	text-overflow: ellipsis;
	position: absolute;
}
.banner-block {
	min-height: 500px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.banner-block-icon {
	text-align: center;
}

.banner-block-icon img {
	height: 110px;
	opacity: 0.85;
}

.banner-block h2 {
	font-size: 2.4rem;
	border: none;
	padding: 0;
	margin: 0;
	margin-bottom: 2.5rem;
	text-align: center;
	hyphexns: auto;
}
.banner-block-header p {
	text-align: center;
}

.banner-block-cta {
	text-align: center;
}

div.banner-block-column-headline {
	font-family: var(--font-family-header);
	font-weight: var(--font-extrabold);
	font-size: 1.7rem;
	margin-bottom: 1rem;
}
div.banner-block-column-byline {
	font-weight: var(--font-bold);
	font-size: 1.3rem;
	margin-bottom: 0.8rem;
}

div.banner-block-column-shadow {
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
	background-color: white;
	padding: 3rem;
	height: 100%;
	border-radius: var(--border-radius);
}

@media (max-width: 575px) {
	.banner-block h2 {
		font-size: 1.5rem;
	}
	.banner-block {
		text-align: center; 
	}
	.banner-block p {
		font-size: 0.9rem;
	}
	div.banner-block-column-shadow {
		padding: 2rem;
	}
}
.faq-block {
	mxin-height: 600px;
	display: flex;
	flex-wrap: wrap;
}
.faq-block-header {
	text-align: center; 
}

.faq-block .faq .faq-question {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 1.1rem;
}
.faq-block .faq .faq-question .google-icon {
	font-size: 1.3rem;
	position: relative;
	top: 5px;
}

.faq-block .faq {
	border-bottom: 1px solid #aaa;
}
.faq-block .faq .faq-question {
	cursor: pointer;
	padding: 1.5rem 0;
}

.faq-block .faq:last-child {
	border-bottom: none;
}

.faq-block .faq .faq-answer {
	margin-top: -0.7rem;
	margin-bottom: 1.5rem;
	cursor: pointer;
}

.faq-block .faq .faq-question .google-icon::after {
	content: 'remove'
}
.faq-block .faq .faq-question.collapsed .google-icon::after {
	content: 'add'
}


.faq-block h2 {
	border: none;
	padding: 0;
	margin: 0;
	margin-bottom: 2.5rem;
	text-align: center;
	font-size: 2.4rem;
	hyphens: manual;
}

.app-container .faq-block .container {
	padding: 0;
}

@media (max-width: 575px) {
	.faq-block h2 {
		font-size: 1.5rem;
	}

	.faq-block .container {
		padding: 0;
	}

}
.four-boxes-block {
	min-height: 500px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.four-boxes-block-icon {
	text-align: center;
}

.four-boxes-block-icon img {
	height: 110px;
	opacity: 0.85;
}

.four-boxes-block h2 {
	border: none;
	padding: 0;
	margin: 0;
	margin-bottom: 2.5rem;
	text-align: center;
	font-size: 2.4rem;
	hyphens: manual;
}
.four-boxes-block-header p {
	text-align: center;
}

div.four-boxes-block-box p {
	font-size: 1rem;
}

div.four-boxes-block-box-headline {
	font-family: var(--font-family-header);
	font-weight: bold;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

div.four-boxes-block-box-shadow {
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
	background-color: white;
	padding: 2.5rem;
	height: 100%;
	border-radius: var(--border-radius);
}

@media (max-width: 575px) {
	.four-boxes-block h2 {
		font-size: 1.5rem;
	}
	.four-boxes-block {
		text-align: center; 
	}
	.four-boxes-block p {
		font-size: 0.9rem;
	}
	div.four-boxes-block-box-shadow {
		padding: 2rem;
	}
}
.image-text-block {
	text-align: center;
	margin: 0;
}

.image-text-block p {
	font-size: 1.1rem;
}

.image-text-block-header {
	margin-top: 5rem;
	margin-bottom: 2rem;
}

.image-text-block.container, .image-text-block .container {
	padding: 0;
}

.image-text-block h2 {
	border: none;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
	font-size: 2.4rem;
}
.image-text-block h3 {
	font-size: 1.6rem;
}

.image-text-block div.row {
	align-items: center;
}

.image-text-block div.imageSize-cover {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 500px;
	position: relative;
}

.image-text-block div.imageSize-contain {
	padding: 50px;
}

.image-text-block div.imageSize-contain img {
	width: 80%;
	max-width: 400px;
}

.image-text-block div.imageSize-two-thirds {
	padding: 50px 0;
}

.image-text-block div.imageSize-two-thirds img {
	width: 80%;
	max-width: 400px;

	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius);
}

.image-text-block div.row.imageSide-right {
	flex-direction: row-reverse;
}

.image-text-block div.column-text {
	padding: 80px;
	font-size: 1.1rem;
	text-align: left;
}

.image-text-block div.column-text.column-text-imageSize-two-thirds {
	padding: 40px;
}

.container .image-text-block div.column-text.column-text-imageSize-two-thirds {
	padding: 20px; 
}

.image-text-block div.column-text.column-text-imageSize-two-thirds h3 {
	margin-bottom: 1.2rem;
	font-size: 2rem;
	
}

.image-text-block-caption {
	font-size: 0.8rem;
	color: black;
	margin-top: 8px;
}

.imageSize-cover .image-text-block-caption {
	color: white;
	position: absolute;
	right: 20px;
	bottom: 20px;
	text-shadow: 2px 2px 2px #000000; 
}
.imageSide-left .imageSize-cover .image-text-block-caption {
	right: auto;
	left: 40px;
}
.image-text-block-cta {
	text-align: left;
}



@media (max-width: 575px) {
	.image-text-block-header {
		text-align: left;
	}
	.image-text-block .imageSide-right {
		flex-direction: row-reverse;
	}
	.image-text-block div.column-text {
		padding: 30px 20px 50px;
	}
	.image-text-block div.imageSize-cover {
		height: 300px;
	}
	.image-text-block div.imageSize-contain {
		padding: 20px;
	}
	.imageSide-left .imageSize-cover .image-text-block-caption {
		left: auto;
		right: 20px;
	}

	.image-text-block div.imageSize-two-thirds {
		padding-bottom: 0;
	}
	.image-text-block div.imageSize-two-thirds img {
		width: 100%;
		border-radius: 0;
		box-shadow: none;
	}
}
.short-info-block {
}

.short-info-block img {
	border-radius: var(--border-radius);
}

.short-info-block-header {
	font-size: 1.1rem;
	text-align: center;
}

.short-info-block h2 {
	border: none;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
	font-size: 2.4rem;
}

.short-info-block h3 {
	font-size: 1.6rem;
	margin-top: 1.3rem;
}

.short-info-block div.imageSize-cover {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	border-radius: var(--border-radius);
}

@media (max-width: 575px) {
	.short-info-block h2 {
	}

	.short-info-block {
		text-align: center; 
	}
}
.tab-block {
	margin-top: 2rem;
}

.tab-block ul.nav-tabs {
	margin-bottom: 1rem;
	border-bottom: none;
	gap: 8px;
	flex-wrap: nowrap;
}

.tab-block ul.nav-tabs a.nav-link {
	border-radius: var(--border-radius);
	font-weight: bold;
	color: #444;
	padding: 0.7rem 2rem;
	border-color: #888;
	text-align: center;
}

.tab-block ul.nav-tabs a.nav-link.active {
	background-image: var(--blue-gradient);
	color: white;
}

.tab-block ul.nav-tabs a.nav-link.active::before {
	content: "\2713\ ";
}

.tab-block .tab-content {
	border: none;
	padding: 0;
}

.app-content .tab-block .container {
	padding: 0;
}

@media (max-width: 575px) {
	.tab-block .nav-tabs .nav-item {
		width: 50%;
	}
	.tab-block .container {
		padding: 0;
	}
}
.testimonial-block {
	min-height: 550px;
	display: flex;
	align-items: center;
}

.testimonial-block h2 {
	border: none;
	font-size: 2.4rem;
	text-align: center;
}
.testimonial-block h3 {
	border: none;
	font-size: 1.6rem;
}

.testimonial-card > div {
	background-color: white;
	border-radius: var(--border-radius);
	color: black;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1)
}

.testimonial-card {
	font-size: 1rem !important;
}

.testimonial-image img, .testimonial-initials {
	width: 48px;
	height: 48px;
	border-radius: 24px;
}
.testimonial-initials {
	background-color: var(--gray);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: bold;
	color: #aaa;
}

.testimonial-block-header a {
	text-decoration: none;
	color: inherit;
}

.testimonial-card .testimonial-person b {
	font-size: 0.9rem;
	margin-bottom: 0;
}
.testimonial-card .testimonial-person {
	font-size: 0.8rem;
}

.testimonial-card b {
	font-size: 1.1rem;
	display: inline-block;
	margin-bottom: 0.3rem;
}

.testimonial-block-cta {
	text-align: center;
}

@media (max-width: 575px) {
	.testimonial-block-header {
		text-align: center; 
	}
}
.background-color-black {
	background-image: var(--black-gradient);
}
.background-color-white {
	background-color: white;
}
.background-color-gray {
	background-color: var(--gray);
}

.background-color-blue {
	background-image: var(--blue-gradient);
}



.text-color-black {
	color: inherit;
}
.text-color-white {
	color: white;
}


.headline-color-black {
	color: var(--headline-blue);
}
.headline-color-white {
	color: white;
}
.headline-color-blue {
	background-image: var(--light-blue-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
div.blogpost-container {
	display: flex;
	gap: 60px 40px;
}

article.blogpost-content {
	width: 100%;
	max-width: 550px;
}
article.blogpost-content h1 {
	margin-bottom: 1rem;
}
article.blogpost-content h2 {
	border: 0;
}
article.blogpost-content h3 {
	font-size: 1.4rem;
}

article.blogpost-content p, article.blogpost-content li {
	font-size: 1.15rem;
}


aside.blogpost-sidebar {
	width: 350px;
}

div.blogpost-ingress {
	font-weight: var(--font-semibold);
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

div.blogpost-preview-header {
	font-family: var(--font-family-header);
	font-weight: var(--font-extrabold);
	color: var(--headline-blue);
	font-size: 2rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

div.blogpost-preview-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
	gap: 20px;
}

div.blogpost-preview-container > div {
	height: 25rem;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-size: cover;
	background-position: center;
	padding: 20px;
	text-align: center;
	cursor: pointer;
	border-radius: var(--border-radius);
	color: white;
}


div.blogpost-preview-container a {
	color: white;
	font-family: var(--font-family-header);
	font-weight: var(--font-extrabold);
	font-size: 1.4rem;
	line-height: 1.2;
	text-decoration: none;
	text-shadow: 4px 4px 4px #01010180;
}
div.blogpost-date {
	font-size: 0.8rem;
	margin-bottom: 8px;
}

div.blogpost-categories {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

div.blogpost-categories a, div.blogpost-categories span.blogpost-categories-label {
	border-radius: 15px;
	height: 30px; 
	line-height: 30px;
	display: inline-block;
	text-decoration: none;
	color: #444;
	padding: 0;
}

div.blogpost-categories a {
	background-color: var(--gray);
	padding: 0 20px;
}

div.blogpost-categories a.selected {
	background-color: #eee;
	font-weight: bold;
}
div.blogpost-categories a.selected:after {
	content: "\00a0\00a0✕";
}

div.blogpost-breadcrumbs {
	color: #888;
	font-size: 0.8rem;
	text-align: left;
	margin-top: 0.3rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

div.blogpost-breadcrumbs a {
	color: #888;
}

div.blogpost-summary-section {
	background-color: #f2f7ff;
	font-size: 1.15rem;
	border-left: 10px solid #2a395a;
}

div.blogpost-author {
	background-color: #f2f7ff;
	font-size: 1.15rem;
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 10px 20px;
	border-radius: var(--border-radius);
}

div.blogpost-author div.profile-image {
	width: 80px;
	height: 80px;
	border-radius: 50px;
}
span.blogpost-author-name {
	font-family: var(--font-family-header);
	font-weight: var(--font-bold);
	color: var(--headline-blue);
	font-size: 1.3rem;
}

div.blogpost-author-small {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 16px;
}

div.blogpost-author-small div.profile-image {
	width: 36px;
	height: 36px;
	border-radius: 16px;
}
span.blogpost-author-title {
}

@media (max-width: 575px) {
	div.blogpost-preview-container {
		flex-wrap: wrap;
	}
	div.blogpost-container {
		flex-wrap: wrap;
	}

	div.blogpost-preview-container > div {
		height: 15rem;
	}
	div.blogpost-categories {
		justify-content: space-between;
		gap: 5px;
	}
	div.blogpost-categories span.blogpost-categories-label {
		width: 100%;
	}
	div.blogpost-categories a {
	}
	aside.blogpost-sidebar {
		width: 100%;
	}
	aside.blogpost-sidebar.stick {
		position: auto;
		top: 0;
	}

}
.board {
	display: flex;
	gap: 20px;
}
.board-column {
	flex: 1;
	padding: 10px;
	border-radius: 6px;
	border-color: 1px solid #ccc;
}
.board-column h2 {
	text-align: center;
}
.board-card {
	margin: 15px 0;
	padding: 10px;
	border-radius: 4px;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
	width: 100% !important;
}
.button {
	border-radius: var(--button-border-radius);
	display: inline-block;
	background: black;
	color: white;
	text-decoration: none;
	text-align: center;
	transition: transform .1s;
	font-weight: 600;
	text-shadow: none;
	height: 3.8rem;
	line-height: 3.7rem;
	font-size: 1.4rem;
	padding: 0 3rem;
	/* border: 2px solid transparent; */
	border: none;
	vertical-align: bottom;
	cursor: pointer;
	white-space: nowrap;
}

.button:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.button.primary {
	background: var(--blue);
	background-image: var(--blue-gradient);
}

.button.primary.seagreen {
	background: var(--seagreen);
	background-image: var(--seagreen-gradient);
}

.button.small {
	height: 3rem;
	line-height: 2.9rem;
	font-size: 1.1rem;
	padding: 0 2rem;
}

.button.supersmall {
	height: 2.3rem;
	line-height: 2.2rem;
	font-size: 0.9rem;
	padding: 0 1.5rem;
}

.button.supersupersmall {
	height: 1.6rem;
	line-height: 1.4rem;
	font-size: 0.6rem;
	padding: 0 1rem;
}

.button.secondary.white {
	background: white;
	border: 2px solid black;
	color: black;
}
.button.secondary.inverted {
	background: black;
	border: 2px solid white;
	color: white;
}
.button.secondary.discreet {
	background: transparent;
	border: none;
	color: #555;
}

.button.danger {
	background: white;
	border: 2px solid var(--alert-red);
	color: var(--alert-red);
}

.button.green {
	background: var(--green);
	background-image: var(--green-gradient);
}

.statusbar .button {
	min-width: 70px;
	height: 24px;
	line-height: 24px;
	font-size: 10px;
	margin-left: 20px;
}


a.button:hover:not(a.button.disabled), input.button:hover:enabled {
	transform: scale(1.05);
	opacity: 0.9;
}

a.button:hover, input.button:hover {
	color: white;
}

a.button.secondary.white:hover, input.button.secondary.white:hover:enabled {
	color: black;
}

a.button.danger:hover, input.button.danger:hover:enabled {
	color: var(--alert-red);
}

.openai-button {
	display: flex;
	margin-bottom: 0.3rem;
	margin-top: 2rem;
	flex-wrap: nowrap;
	column-gap: 1.2rem;
	align-items: center;
	background-color: #0fa67d;
	color: white;
	cursor: pointer;
	padding: 1rem;
	border-radius: var(--border-radius);
	width: 100%;
	max-width: var(--max-form-width);
}

.openai-button:hover {
	opacity: 0.9;
}

.openai-button b {
	font-size: 14px;
}
.openai-button span {
	font-weight: bold;
}

.openai-button img {
	width: 36px;
	height: 36px;
}


button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


@media (max-width: 575px) {
	.wideOnMobile {
		width: 100%;
	}
	#signupModalContent a.button::first-child {
		margin-left: 0;
	}
}
div.calendar-day {
	width: 4.5rem;
	display: inline-block;
	margin-right: 2rem;
}

div.calendar-day-top {
	background-color: #dc3238;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	height: 1rem;
	color: white;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.6rem;
	text-align: center;
	padding-top: 1px;
}

div.calendar-day-bottom {
	background-color: #f8f8f8;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	font-size: 1.8rem;
	font-weight: bold;
	color: #666;
	height: 3.5rem;
	line-height: 3.4rem;
	text-align: center;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
input[type="checkbox"] {
	accent-color: var(--accent-dark);
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	margin-right: 0.5rem;
	top: 2px;
}
input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-content: center;
	justify-content: center;
	padding: 3px;
	border: 1px solid #bbb;
	border-radius: 7px;
}
input[type="checkbox"]::before {
	content: "";
	width: 1rem;
	height: 1rem;
	clip-path: polygon(16% 36%, 39% 55%, 84% 7%, 100% 25%, 41% 88%, 0 56%);
	clip-path: polygon(14% 36%, 18% 36%, 39% 54%, 82% 9%, 86% 9%, 99% 23%, 99% 27%, 43% 87%, 39% 87%, 1% 56%, 1% 52%);
	transform: scale(0);
	background-color: var(--green);
}

input[type="checkbox"]:checked {
	border-color: #aaa;
}

input[type="checkbox"]:checked::before {
	transform: scale(1);
}

input[type="checkbox"]:disabled {
	background-color: #f8f8f8;
}

input[type="checkbox"]:focus {
	background-color: white;
	border-color: #aaa;
}
html.chrome-extension {
	font-size: 13px !important;
}

html.chrome-extension body {
	margin: 20px;
}

html.chrome-extension img.logo {
	width: 150px;
}

html.chrome-extension div.section {
	margin-bottom: 12px;
}
html.chrome-extension div.section.flex-row {
	flex-wrap: nowrap;
}
html.chrome-extension div.section.flex-row > div {
	flex: 1;
}

html.chrome-extension .form-input {
	height: 40px;
	line-height: 40px;
}
html.chrome-extension .form-input-inline-icon, html.chrome-extension .form-input-prefix {
	height: 38px;
	line-height: 38px;
}

html.chrome-extension textarea.form-input {
	height: 75px;
	line-height: 18px;
}

html.chrome-extension div.menu {
	gap: 20px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
}

html.chrome-extension div.menu div.active a {
	text-decoration: none;
	color: #888;
}
html.chrome-extension #modal_signup {
	margin-top: 25px;
}
html.chrome-extension #modal_signup ul.nav-tabs {
	padding-left: 0px;
	padding-right: 0px;
}

html.chrome-extension .footer {
	padding-left: 0px;
	margin-top: 20px;
	height: 300px;
	vertical-align: middle;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	padding: 50px;
}
html.chrome-extension div.account-selector {
	text-align: left;
}
html.chrome-extension div.account-selector table tr {
	border-top: 1px solid #ccc;
}
html.chrome-extension div.account-selector table tr td {
	padding: 10px;
}
.cke_top {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.cke_inner {
	border-radius: 8px;
}

.cke_bottom, .cke_contents {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	height: 400px;
}


.cke {
	border-radius: 8px;
	width: var(--max-form-width);
}

body.cke_editable {
	margin: 15px;
}

body.cke_editable.disabled, body.cke_editable.disabled * {
	color: #999;
	background-color: #f3f3f3;
}

body.cke_editable p {
    padding-bottom: 6px;
}

body.cke_editable ul {
    padding-left: 26px;
    margin-block-end: 13px;
}

body.cke_editable li {
    padding-bottom: 6px;
}

.cke_browser {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
	gap: 12px;
	margin-top: 20px;
}

.cke_browser_item {
	border: 1px solid #ccc;
	cursor: pointer;
	border-radius: var(--border-radius);
	text-align: center;
	padding: 4px;
}
.cke_browser_item:hover {
	transform: scale(1.04);
}

.cke_browser_image {
	width: 100%;
	height: 150px;
	background: white no-repeat center center;
	background-size: contain;
}
.cke_browser_fileinfo {
	font-size: 0.8rem;
}

.draggable-block {
	border: 1px solid #cccccc;
	margin: 1px;
	display: inline-block;
	cursor: move;
	background-color: var(--gray);
	border-radius: var(--border-radius);
	padding: 5px 3px;
	font-size: 0.8rem;
}

.draggable-block::selection {
  background: inherit;
  color: inherit;
}
.dashboard-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
	column-gap: 10px;
}

.dashboard-tables-container > div {
	width: fit-content;
	margin-top: 30px;
	height: fit-content;
}

.dashboard-card {
	border: 1px solid #ccc;
	padding: 15px;
	margin-bottom: 10px;
	background-color: white;
	border-radius: var(--border-radius);
	overflow-x: scroll;
	position: relative;
}

.dashboard-card > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.dashboard-card-title {
	font-size: 1.2rem;
	font-weight: var(--font-bold);
	display: block;
	margin-bottom: 8px;
}

.dashboard-card-description {
	margin-bottom: 8px;
	font-size: 0.8rem;
	line-height: 1.4;
	display: block;

}

.dashboard-card-bignumber {
	font-size: 1.8rem;
	font-weight: var(--font-bold);
}
.dashboard-card-report a {
	font-size: 0.8rem;
	text-decoration: none;
}

.dashboard-card-graph {
	display: block;
}

.dashboard-card-close-icon {
	text-align: right;
	position: absolute;
	right: 7px;
	top: -9px;
}
.dashboard-card-close-icon a {
	text-decoration: none;
	color:  #888;
	font-size: 2rem;

}


@media (max-width: 575px) {
	.dashboard-tables-container > div {
		width: 100%;
	}
}
div.daterange-arrows span.google-icon {
	background: var(--gray);
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	margin-left: 2px;
	margin-bottom: 8px;
	border-radius: var(--border-radius);
	position: relative;
}
.dashboard-date-pickers div.daterange-arrows span.google-icon {
	border: 1px solid #ddd;
}

#dateRange-textfield {
	min-width: 188px;
	max-width: 188px;
}

.daterangepicker td.in-range {
	background-color: var(--superlight-blue) !important;
}

.daterangepicker .ranges li.active, .daterangepicker td.active, .daterangepicker td.active:hover {
	background-color: var(--blue) !important;
	font-weight: var(--font-semibold);
}

#daterange-presets {
	position: absolute;
	top: -22px;
	left: 0px;
	z-index: 99;
	-webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
	box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
}
#daterange-presets div {
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
	padding: 6px 10px;
	cursor: pointer;
	background-color: white;
}
#daterange-presets .close-icon {
	position: absolute;
	right: 14px;
	top: -5px;
	font-size: 35px;
	opacity: 0.5;
	cursor: pointer;
}

.daterangepicker .drp-calendar {
	max-width: 270px;
}

@media (max-width: 575px) {
	div.input-container.input-container-daterange .input-container {
		width: 32%;
	}

	div.daterange-arrows span.google-icon {
		height: 50px;
		width: 50px;
		line-height: 50px;
	}
	.daterangepicker .drp-calendar {
		max-width: 100% !important;
	}

	.daterangepicker {
		width: calc(100% - 28px) !important;
	}

	.daterangepicker .ranges li {
		font-size: 14px !important;
	}

	.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
		height: 32px !important;
		font-size: 14px !important;
	}
}
span.flag {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-left: 4px;
	/* box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.1); */
}

span.flag-size-small {
	width: 15px;
	height: 15px;
	margin-right: 5px;
}

span.flag-shape-rect {
	width: 13px;
	height: 9px;
	top: 0px;
	position: relative;
	margin-left: 0;
	margin-right: 5px;
}

span.flag-size-small.flag-shape-rect {
	width: 11px;
	height: 8px;
}

span.flag-size-big {
	width: 50px;
	height: 50px;
}
span.flag-shape-round {
	border-radius: 100px;
}
html {
	font-size: 13px;
}

html, body, td, input, select, textarea, button {
	font-family: var(--font-family-normal);
	font-weight: var(--font-regular);
	line-height: 1.6;
	color: black;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.small {
	font-size: 0.8rem;
}


b, strong {
	font-weight: var(--font-bold);
}

th {
	font-size: 1.1rem;
	font-weight: var(--font-bold);
}

h1, h2, h3, div.animatedHeadline {
	font-family: var(--font-family-header);
	font-weight: var(--font-extrabold);
	color: var(--headline-blue);
}

h1, div.animatedHeadline, h2.page-header {
	margin-bottom: 0;
	font-size: 2.5rem;
}

h2 {
	display: block;
	border-bottom: 1px solid #ccc;
	font-size: 1.7rem;
	margin-top: 3.5rem;
	margin-bottom: 0.8rem;
	padding-bottom: 5px;
}

h2.noborder {
	border: 0;
}

h3, h4 {
	font-size: 1.2rem;
	margin-top: 2.2rem;
	margin-bottom: 0.8rem;
}
h4 {
	font-weight: var(--font-bold);
}

h1.hero {
	font-size: 3rem;
}

div.hero-byline {
	font-size: 1.5rem;
	font-weight: var(--font-bold);
}

h1.hero.white, h1.banner.white, div.hero-byline.white {
	color: white;
	text-shadow: 4px 4px 4px #01010180; 
}

h1.hero.black, h1.banner.black, div.hero-byline.black {
	color: black;
	font-size: 4rem;
}

.main-content p {
	font-size: 1.15rem;
}
.main-content p.small {
	font-size: 0.9rem;
}

span.guide {
	font-size: 0.7rem;
	font-weight: var(--font-bold);
	color: #444;
	display: block;
}

span.guide::after {
	content: ":";
}


code, tt {
	font-size: .8rem;
	background-color: #f8f8f8;
	color: var(--dark-blue);
	padding: 3px;
	border-radius: var(--border-radius);
	font-family: var(--font-family-mono);
	white-space: pre-wrap;
	position: relative;
	max-width: 960px;
}
code {
	padding: 10px;
	display: block;
}

.google-icon {
	display: inline-block;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24
}
.google-icon-fill {
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24
}


@media (max-width: 575px) {
	html {
		font-size: 17px;
	}

	.cke_editable p, .cke_editable li {
		font-size: 13px !important;
	}

	h1.hero {
		font-size: 2.2rem;
		hyphens: manual;
	}
	h1 {
		font-size: 1.8rem;
		hyphens: manual;
	}

	h2 {
		font-size: 1.4rem;
	}
}
.gauge-container{
	width:10rem;
	height:5rem;
	position: relative;
	overflow: hidden;
	margin: auto;
}

.gauge-a{
	z-index: 1;
	position: absolute;
	background-color: rgba(0, 0, 0, .1);
	width: 100%;
	height: 100%;
	top: 0;
	border-radius:500px 500px 0px 0px ;
}
.gauge-b{
	z-index: 3;
	position: absolute;
	background-color: white;
	width: 60%;
	height: 60%;
	top: 40%;
	margin-left: 20%;
	margin-right: 20%;
	border-radius:500px 500px 0px 0px ;
}
.gauge-c{
	z-index: 2;
	position: absolute;
	background-color: var(--alert-red);
	width: 100%;
	height: 100%;
	top: 100%;
	border-radius:0px 0px 500px 500px ;
	transform-origin:center top;
	transition: all 1.3s ease-in-out;
}

.gauge-data {
	z-index: 4;
	position: absolute;
	line-height: 1.1;
	width: 100%;
	top: 50%;
	text-align: center;
}
.grabbable > * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: grab;
}
.grabbable:active > * {
	cursor: grabbing;
}

.grabbable > .grabbable-dummy {
	border: 1px solid #d4d4d4;
	background: repeating-linear-gradient( -45deg, #fff, #fff 4px, #d4d4d4 4px, #d4d4d4 5px );
}
.hero-video {
	position: relative;
	/* pointer-events: none; */
	width: 100%;
}

.hero-video-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}

.hero-video-container > div {
	overflow: hidden;
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--dark-blue);
/*	background-image: var(--black-gradient); */
}

.hero-cta a {
	pointer-events: auto;
	width: 180px;
	margin: 1rem 1.5rem;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}
.hero-cta a:hover {
	opacity: 1 !important;
}


.hero-video video {
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

@media (max-width: 575px) {
	.hero-cta a.button.primary {
		width: 200px;
		height: 3rem;
		line-height: 2.9rem;
		font-size: 1.1rem;
		padding: 0 2rem;
	}
}
}
.highcharts-figure,
.highcharts-data-table table {
  min-width: 360px;
  max-width: 2000px;
  margin: 1em auto;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

.highcharts-credits {
	display: none !important;
}
/* SELECT */
select, .marketpicker-input, .multiselect-box {
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSIjNjY2Ij48cGF0aCBkPSJNMCA3LjMzbDIuODI5LTIuODMgOS4xNzUgOS4zMzkgOS4xNjctOS4zMzkgMi44MjkgMi44My0xMS45OTYgMTIuMTd6Ii8+PC9zdmc+) no-repeat calc(100% - 10px) 52%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-size: 10px;
	text-overflow: ellipsis;
	padding-right: 28px !important;
	color: black;
}

.radio-container .form-input, .checkbox-group-container .form-input {
	height: auto;
}


div.input-container.disabled label {
	color: #888;
	background-color: #f8f8f8;
	background-image: linear-gradient(to bottom, white 0%, white 45%, #f8f8f8 50%, #f8f8f8 100%);
}
div.input-container.disabled input, div.input-container.disabled select, div.input-container.disabled textarea, div.input-container.disabled .radio-container, div.checkbox-group-container.disabled {
	color: #888;
	background-color: #f8f8f8;
}

div.input-container.validation-error label {
	color: var(--alert-red);
	background-color: #fff8f8;
	background-image: linear-gradient(to bottom, white 0%, white 45%, #fff8f8 50%, #fff8f8 100%);
}
div.checkbox-group-item-container.disabled {
	opacity: 0.5;
}

.checkbox-container {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.checkbox-container.disabled {
	opacity: 0.5;
}


div.input-container {
	margin-bottom: 8px;
	max-width: var(--max-form-width);
	position: relative;
	white-space: nowrap;
}

div.input-container.maxwidth-none {
	width: 100%;
	max-width: 980px;
}

div.input-container.hidden {
	display: none;
}
div.input-container label.switch, div.input-container span.switch {
	margin-top: 20px;
	margin-bottom: 5px;
}
div.checkbox-group-container label.switch {
	top: 3px;
}

table tr td div.input-container label.switch, div.input-container span.switch {
	margin-top: 6px;
	margin-bottom: -2px;
}

td div.input-container.no-margin {
	margin: 0;
}

div.input-container.no-margin label.switch {
	margin-top: 0;
	margin-bottom: 0;
}

div.input-container.noborder > div {
	border: none;
	margin: 0;
	padding: 8px 0;
}
div.input-container.noborder > label {
	font-size: 1.0rem;
	font-weight: var(--font-bold);
	left: 0;
	padding: 0;
	top: 0;
}

div.input-container.input-container-daterange {
	width: 100%;
	max-width: 100%;
	align-items: flex-end;
	gap: 8px;
}


div.input-container input[type="file"] {
	padding-top: 11px;
	height: 52px;
	line-height: 2;
}

div.app-menu div.input-container {
	margin-top: 0;
}



/* TEXTAREA */
textarea.form-input {
	height: 75px;
	line-height: 18px;
	padding-top: 10px;
	resize: none;
	margin-bottom: -5px;
}

textarea.form-input.double-height {
	height: 150px;
}


/* RATING */
.form-input-rating {
	display: inline-block;
	border-radius: var(--border-radius);
	background-color: white;
	height: 45px;
	line-height: 40px;
	border: 1px solid #ccc;
	padding: 0 15px;
}

.form-input-rating img {
	width: 24px;
	height: 24px;
}



/* CHECKBOX GROUP */
.checkbox-group-container.form-input {
	height: auto;
	line-height: 25px;
	padding-top: 10px;
}
.checkbox-group-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.checkbox-group-grid .input-container {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding-right: 8px;
}

.toggle-all-checkboxes-link {
	font-size: 0.85rem;
}



/* RADIO BUTTON GROUP */
.radio-container {
	display: flex;
	column-gap: 20px;
	height: auto !important;
	flex-wrap: wrap;
}

.radio-container .radio-item {
	line-height: 52px;
}

.radio-container-vertical {
	flex-direction: column;
}
.radio-container-vertical label {
	width: 100%;
}



/* STYLISH RADIO BUTTON GROUP */
.radio-container-stylish {
	gap: 10px;
	padding: 15px;
}

.radio-container-stylish .radio-item {
	line-height: normal;
}

.radio-container-stylish .radio-item input[type='radio'] {
	display: none;
}


.radio-container-stylish .radio-item label {
	display: inline-block;
	padding: 6px 12px;
	font-weight: var(--font-semibold);
	border-radius: var(--border-radius);
	background-color: #fafafa;
	color: #bbb;
	cursor: pointer;
}

.radio-container-stylish .radio-item label:hover {
	background-color: #f9f9f9;
}

.radio-container-stylish input[type="radio"][value="rejected"]:checked + label {
	border-color: var(--status-denied-bgcolor);
	background-color: var(--status-denied-bgcolor);
	color: var(--status-denied-color);
}

.radio-container-stylish input[type="radio"][value="approved"]:checked + label {
	border-color: var(--status-active-bgcolor);
	background-color: var(--status-active-bgcolor);
	color: var(--status-active-color);
}

.radio-container-stylish input[type="radio"][value="pending"]:checked + label {
	border-color: var(--status-pending-bgcolor);
	background-color: var(--status-pending-bgcolor);
	color: var(--status-pending-color);
}


/* FORM INPUTS */
.form-input, .radio-container {
	border-radius: var(--border-radius);
	background-color: white;
	height: 40px;
	line-height: 40px;
	border: 1px solid #ccc;
	padding: 0 15px;
}

.form-input:focus {
	background-color: #f8f8f8;
	border-color: black;
}

.form-input-inline-icon {
	font-size: 20px;
	position: absolute;
	cursor: pointer;
	opacity: 1;
	color: #888;
	background: #fcfcfc;
	width: 38px;
	line-height: 38px;
	border-left: 1px solid #ccc;
	margin-top: 1px;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	right: 1px;
	text-align: center;
}

.form-input-inline-icon.form-input-inline-icon-textarea {
	border-bottom: 1px solid #ccc;
	border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

.form-input-inline-icon.form-input-inline-icon-select {
	right: 25px;
	background-image: linear-gradient(to right, #FCFCFC 70%, white 100%);
}

.form-input-inline-icon.form-input-inline-icon-code {
	top: 0;
	height: 36px;
	background-color: #f8f8f8;
}

.form-input-clear-icon {
	font-size: 14px;
	position: absolute;
	cursor: pointer;
	opacity: 1;
	color: #888;
	width: 38px;
	line-height: 38px;
	margin-top: 2px;
	right: -4px;
	text-align: center;
}

.form-input-clear-icon-select {
	right: 14px;
}

.form-input-clear-icon-marketpicker {
	margin-top: -39px;
	right: 14px;
}

.form-input-clear-icon-autocomplete {
	right: 32px;
}

.form-input-clear-icon-multiselect {
	right: 14px;
}

.form-input-inline-icon-padding {
	padding-right: 45px;
}

.form-input-prefix {
	position: absolute;
	padding: 0 15px;
	direction: rtl;
	color: #555;
	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	background: #fcfcfc;
	display: inline;
	line-height: 38px;
	border-right: 1px solid #ccc;
	margin-top: 1px;
	border-radius: var(--border-radius) 0 0 var(--border-radius);
	left: 1px;
}

.form-input.validation-error:focus {
	border-color: #cc0020;
	background-color: #fef2f4;
}

.input-container.token {
	margin-bottom: 0;
}

.input-container.token .form-input {
	width: 290px;
	height: 32px;
	border: none;
	background: none;
	padding-left: 0;
}

.input-container.token .form-input-inline-icon {
	line-height: 30px;
	border: none;
	background: none;
}

.form-input-slider {
	min-width: 200px;
}
.form-input-slider-container {
	display: flex;
	column-gap: 2rem;
}

input.form-input.compact, select.form-input.compact {
	height: 32px;
	line-height: 32px;
}

div.callback-parameters input.form-input {
	height: 30px;
	font-size: 12px;
}
div.callback-parameters span.google-icon.inline-icon {
	top: 6px;
	font-size: 1.5rem;
}


label.switch + span.input-description {
	padding-left: 44px;
	margin-top: 0;
}


/* ERROR MESSAGE */
span.validation-error {
	color: var(--alert-red);
	display: none;
	margin-bottom: 12px;
	margin-top: 4px;
	padding: 0 16px;
	line-height: 13px;
	font-size: 10px;
	/* width: var(--max-form-width);
	text-overflow: ellipsis;
	width: 100%;
	white-space: nowrap;
	overflow: hidden; */
	white-space: normal;
}

.form-input.validation-error {
	border-color: var(--alert-red);
	background-color: #fff8f8;
}



/* APP MENU */
.app-menu select.form-input {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJ3aGl0ZSI+PHBhdGggZD0iTTAgNy4zM2wyLjgyOS0yLjgzIDkuMTc1IDkuMzM5IDkuMTY3LTkuMzM5IDIuODI5IDIuODMtMTEuOTk2IDEyLjE3eiIvPjwvc3ZnPg==);
}

.app-menu select.form-input, .app-menu input[type=text] {
	height: 22px;
	background-size: 6px;
	background-color: transparent;
	color: white;
	font-size: 0.85rem;
	border-color: rgb(255, 255, 255, 0.2);
	padding-left: 6px;
	line-height: 23px;
}
.app-menu select:focus, .app-menu input[type=text]:focus {
	background-color: transparent;
	border-color: rgb(255, 255, 255, 0.2);
}
.app-menu select.form-input, .app-menu input[type=text] {
}

.app-menu select.form-input option {
	background-color: white;
	color: black;
}
div#input-container-appmenu-keyword span.form-input-inline-icon {
	background: unset;
	color: #ccc;
	width: 21px;
	line-height: 21px;
	font-size: 16px;
	border-left: none;
}
.app-menu .input-container {
	display: inline-block;
	margin-bottom: 0;
}



.sticky-button-container {
	position: fixed;
	bottom: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 28px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 9999;
	margin: 0;
	left: 219px;
}



/* MOBILE DESIGN */
@media (max-width: 575px) {

	.form-input, .radio-container {
		height: 50px;
		line-height: 50px;
	}
	.checkbox-group-container {
		height: auto;
		line-height: 25px;
	}
	input.form-input.compact, select.form-input.compact {
		height: 42px;
		line-height: 42px;
	}
	.form-input-slider-container {
		display: block;
	}
	.app-menu select.form-input, .app-menu input[type=text] {
		font-size: 13px;
		height: 36px;
		line-height: 36px;
	}
	.form-input-rating {
		height: 68px;
		line-height: 60px;
	}

	.form-input-rating img {
		width: 42px;
		height: 42px;
	}
	.form-input-prefix, .form-input-inline-icon {
		line-height: 48px;
	}
	.form-input-clear-icon {
		line-height: 48px;
	}
	.input-container.token .form-input {
		width: 325px;
	}
	.sticky-button-container {
		left: 0;
	}

}
.invoice-section {
	margin-bottom: 20px;
	max-width: 700px;
}
.jobbox-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 15px;
	margin: 2rem 0;
}

.jobbox-headline {
	margin-top: 5px;
	font-weight: bold;
	font-size: 1.1rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.jobbox {
	padding: 10px;
	box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.1);
	background-color: white;
	border-radius: var(--border-radius);
	cursor: pointer;
}
.jobbox-image {
	height: 150px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.jobbox-content span.inline-icon {
	font-size: 18px;
}


@media (max-width: 991px) {
	.jobbox-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 575px) {
	.jobbox-container {
		grid-template-columns: 1fr;
	}
}
img.join-logo {
	max-width: 300px;
	max-height: 80px;
}

.joinpage-signup-block {
	display: flex;
	gap: 40px;
	margin-top: 30px;
	padding: 30px 0;
}

.joinpage-bullet-list {
	display: block;
	border-right: 1px solid #ddd;
}

#joinpage-bullet-1::after {
	content:' \279D';
}

.joinpage-bullet-list table tr td {
	padding: 16px 8px 0 0;
}

.joinpage-bullet-number {
	display: inline-block;
	background: var(--blue);
	background-image: var(--blue-gradient);
	margin-right: 5px;
	font-weight: bold; 
	font-size: 18px;
	text-align: center;
	color: white;
	border-radius: 18px;
	width: 36px;
	height: 36px;
	line-height: 36px;
}

.joinpage-review {
	text-align: center;
	margin-top: 6rem;
}
#app-content .joinpage-review {
	text-align: left;
	padding: 0;
}

.joinpage-review h2 {
	border: none;
	margin-bottom: 20px;
}
#app-content .joinpage-review h2 {
	border-bottom: 1px solid #ccc;
}

.joinpage-review div.profile-image {
	width: 150px;
	height: 150px;
	min-width: 150px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 75px;
	display: inline-block;
}

.joinpage-review div.profile-name {
	font-size: 0.9rem;
	text-alixgn: center;
	margin-top: 0.5rem;
	line-height: 1.1;
}

.joinpage-review div.rating-stars {
	margin-bottom: 2rem;
	margin-top: 0.4rem;
}

.joinpage-review div.review-content {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
}
#app-content .joinpage-review div.review-content {
	font-size: 1.0rem;
}



@media (max-width: 575px) {
	img.join-logo {
		max-width: 100%;
	}
	.joinpage-review {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	.joinpage-signup-block {
		display: block;
	}
	.joinpage-bullet-list {
		border: none;
		margin-bottom: 4rem;
	}
	.joinpage-review div.review-content {
		font-size: 1.1rem;
	}
	#app-content .joinpage-review div.review-content {
		font-size: 1.0rem;
	}

	#joinpage-bullet-1::after {
		content:' \2B63';
	}
}
div.marketpicker-container {
	width: 100%;
        max-width: var(--max-form-width);
	min-width: 150px;
}
div.marketpicker-input, div.marketpicker-list {
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
}
div.marketpicker-input.selected {
	border: 1px solid #444;
}

div.marketpicker-list {
	position: absolute;
	top: 61px;
	left: 0px;
	z-index: 100;
	max-height: 250px;
	overflow-y: scroll;
	padding: 5px 0;
	border: 1px solid #444;
	background-color: white;
	width: 100%;
	border-radius: var(--border-radius);
}
div.marketpicker-list > div {
	padding: 5px 15px;
	border-bottom: 1px solid #f8f8f8;
	overflow: hidden;
	white-space: nowrap;
}
div.marketpicker-list > div:hover {
	background-color: #fafafa;
	border-bottom: 1px solid #f0f0f0;
}

div.marketpicker-list a:hover {
	color: var(--blue);
	text-decoration: underline;
	background-color: #f8f8f8;
}

div.marketpicker-list.light-border {
	border-color: #ccc;
}

div.marketpicker-list.hidden {
	display: none;
}

@media (max-width: 575px) {
	div.marketpicker-list > div {
		padding: 10px 15px;
	}
	div.marketpicker-list {
		top: 77px;
	}
}


div.marketpicker-list::-webkit-scrollbar {
	width: 3px;
	height: 3px;
	background: transparent;
}
div.marketpicker-list::-webkit-scrollbar-thumb {
	background: #eee;
}
.ad-container, .ad-page {
	max-width: 820px;
}

.ad-row {
	border-radius: var(--border-radius);
	background-color: white;
	display: flex;
	margin-bottom: 20px;
	gap: 20px;
	padding: 15px;
	border: 1px solid #eee;
	cursor: pointer;
}

.ad-image {
	border-radius: var(--border-radius);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	background-color: #f8f8f8;
}

.ad-row .ad-image {
	min-width: 250px;
	height: 150px;
}
.ad-page .ad-image {
	width: 100%;
	height: 350px;
}

.ad-data {
	display: flex;
	gap: 20px;
	margin-top: 1.3rem;
	flex-wrap: wrap;
}


@media (max-width: 575px) {
	.ad-container, .ad-page {
		width: 100%;
	}
	.ad-row {
		flex-wrap: wrap;
	}
	.ad-row .ad-image {
		width: 100%;
		height: 200px;
	}
}
.messages-header {
	height: 120px;
}

.messages-container {
	display: flex;
	flex-wrap: nowrap;
	height: calc(100vh - 140px);
}

.messages-container h3 {
	margin: 0;
}
.threads-header {
	margin-left: 30px;
	margin-bottom: 15px;
}


.threads {
	width: 230px;
	border-right: 1px solid #ccc;
	white-space: nowrap;
	overflow-y: scroll;
	flex-shrink: 0;
	margin-left: -30px;
}

.thread {
	padding: 15px 15px 15px 30px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}

.thread:hover {
	background-color: #f8f8f8;
}

.thread.selected {
	background-color: #f8f8f8;
}
.thread.selected:hover {
	background-color: #f5f5f5;
}

.thread.unread {
	font-weight: bold;
	border-left: 5px solid #1c4ab0;
}

.thread-preview-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.messages {
	width: 100%;
	max-width: 700px;
	display: flex;
	flex-direction: column;
}

.messages-account {
	padding: 15px;
	padding-left: 30px;
	padding-top: 0;
	border-bottom: 1px solid #ddd;
	display: flex;
	align-items: center;
	column-gap: 2rem;
}
.messages-account a span.google-icon {
	color: black;
	font-size: 2rem;
}

.messages-area {
	overflow-y: scroll;
	padding-left: 30px;
	height: 100%;
}

.messages-compose {
	border-top: 1px solid #eee;
	background-color: #f8f8f8;
	padding: 15px 30px 7px 30px;;
	margin-top: 15px;
	margin-right: -30px;
}

.message {
	margin-top: 15px;
}

.thread-account {
	font-weight: bold;
}

.thread-date, .message-date {
	font-size: 0.9rem;
	color: #444;
}
.message-readicon {
	cursor: default;
	line-height: 0;
}

.message-readicon span {
	font-size: 1.2rem;
	opacity: 0.5;
}

.message.my-message {
	text-align: right;
	margin-left: auto;
}


.message-bubble {
	background-color: #eee;
	border-radius: var(--border-radius);
	padding: 10px;
	max-width: 70%;
	width: fit-content;
	text-align: left;
}

.message.my-message .message-bubble {
	background-color: #1c4ab0;
	color: white;
	margin-left: auto;
}

.message.alert-red .message-bubble {
	background-color: #fff8f8;
}

.message.alert-red.my-message .message-bubble {
	background-color: var(--alert-red);
}

.message.alert-red .message-date {
	color: var(--alert-red);
}

.messages-account .profile-image {
	width: 50px;
	height: 50px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 25px;
}

#composeText {
	min-height: 75px;
	resize: none;
	overflow-y: hidden;
	max-height: 300px;
}


@media (max-width: 575px) {
	.messages-header {
		height: 76px;
	}
	.threads {
		width: 100%;
		margin: 0;
		border: none;
	}
	.threads-header {
		margin-left: 0;
	}

	.thread {
		padding-left: 0;
		padding-right: 0;
	}
	.messages-account {
		column-gap: 1rem;
	}
	.messages-account, .messages-area {
		padding-left: 0;
	}
	.messages-compose {
		margin-left: -15px;
		margin-right: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.messages-area {
		padding: 0;
	}
	.messages-header a {
		position: absolute;
		top: 64px;
		right: 15px;
	}
}
.amodal-container {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	background-color: rgba(0,0,0,0.5);
}

.amodal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 600px;
	max-width: 90%;
	height: auto;

	max-height: 95vh;
	overflow-y: auto;

	font-size: 1rem;

	padding: 40px;
	background-color: white;
	-webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
	box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
	border-radius: var(--border-radius);

	white-space: normal;
}

.amodal h2 {
	margin-top: 0;
	margin-bottom: 25px;
}

.amodal-container.closed {
	display: none;
}

.amodal-close-icon {
	text-align: right;
	position: absolute;
	right: 16px;
	top: 0px;
}

.amodal-close-icon a {
	text-decoration: none;
	color:  #888;
	font-size: 2.5rem;

}

.modal-error h2 {
	color: var(--alert-red);
}

.modal-buttons-container {
	display: flex;
	justify-content: flex-end;
}

#modal_signup .amodal {
	min-height: 0 !important;
	width: 800px;
}

#modal_signup h2 {
	border: none;
}


#modal_signup ul.nav-tabs {
	margin-bottom: 1rem;
	border-bottom: 1px solid #ccc;
	padding-left: 8px;
	padding-right: 8px;
	gap: 8px;
	flex-wrap: nowrap;
}

#modal_signup li.nav-item {
}

#modal_signup a.nav-link {
	padding: 0;
	min-width: 100px;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	border-bottom-right-radius: 0;
	border: 1px solid #ccc;
	border-bottom: none;
	margin-bottom: -1px;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	vertical-align: bottom;
	color: black;
	height: 2.3rem;
	line-height: 2.2rem;
	font-size: 0.9rem;
	background: #fbfbfb;
	color: #888;
	width: 100%;
	box-shadow: inset 0 -10px 20px -20px rgba(0, 0, 0, 0.5);
}

#modal_signup a.nav-link.active {
	background: white;
	color: #222;
	border-color: #aaa;
	box-shadow: none;
}

#modal_signup ul.nav-tabs.big-tabs {
	border-bottom: none;
	padding: 0;
}

#modal_signup ul.nav-tabs.big-tabs a.nav-link {
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	height: 6rem;
	line-height: 5.7rem;
	font-size: 1.2rem;
	padding: 0 40px;
}
#modal_signup ul.nav-tabs.big-tabs a.nav-link:hover {
	background-color: white;
	color: black;
}

#modal_signup div.signup-description {
	display: none;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

#modal_signup div.signup-description.big-tabs {
	display: block;
}

#modal_signup a.nav-link.not(.active) {

}

#modal_signup a.nav-link.active::before {
	content: "\2713\ ";
}

#modal_signup .tab-content {
	border: none;
	padding: 0;
}

#modal_signup .signup-select-type {
	row-gap: 1.5rem;
	flex-wrap: nowrap;
}

#modal_signup .signup-select-type-button {
	cursor: pointer;
	padding: 1.3rem;
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	wxidth: calc(33.3% - 2rem);
	background-color: #fcfcfc;
}
#modal_signup .signup-select-type-button h3 {
	margin-top: 0.2rem;
}



@media (max-width: 575px) {
	.amodal {
		min-height: 65%;
	}
	.amodal h2 {
		font-size: 2.0rem;
	}
	.amodal .button {
		width: 100%;
	}
	#modal_signup .amodal {
		txop: 20px;
		hxeight: calc(100vh - 40px);
	}
	#modal_signup li.nav-item {
		width: 100%;
	}

	#modal_signup ul.nav-tabs.big-tabs a.nav-link {
		padding: 0 10px;
	}
	#modal_signup .signup-select-type-button {
		width: 100%;
	}
	#modal_signup .signup-select-type {
		row-gap: 1.5rem;
		flex-wrap: wrap;
	}
}
.multiselect-container {
}
.multiselect {
	max-height: 400px;
	overflow-y: auto;
}

.multiselect-container.form-input {
	height: auto;
}

.multiselect-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	margin-right: -15px;
}

.multiselect-image {
	width: 40px;
	height: 40px;
	background-position: center center;
	background-size: contain;
	margin-right: 6px;
	border-radius: var(--border-radius);
}

.multiselect ul {
	list-style-type: none;
	padding: 0;
}

.multiselect ul li {
	padding: 3px 4px;
	line-height: normal;
	border-top: 1px solid #eee;

}
.multiselect ul li:hover {
	background-color: #f8f8f8;

}


.multiselect label {
	font-weight: 400;
	display: flex;
	align-items: center;
	height: 40px;
}

.multiselect input[type="checkbox"] {
	margin-right: 10px;
}

.multiselect .selected {
	background-color: #f0f0f0;
}

.multiselect-counter {
	font-size: 0.9rem;
	border-radius: 100px;
	padding: 0 20px;
	line-height: 33px;
	margin: 12px 0px;
	background-color: #eee;
	color: #888;
}

.multiselect-counter.selected {
	background: var(--blue-gradient);
	color: white;
}

.multiselect-visible-counter {
	line-height: 1;
	margin-bottom: 20px;
	font-style: italic;
	font-size: 0.9rem;
	opacity: 0.7;
	padding: 10px 4px;
	border-top: 2px solid #eee;
}
.multiselect-option-list {
	margin-bottom: 0;
}

.multiselect-select-all-label {
	padding: 3px 4px;
}
#app-menu li.notifications {
	background-color: rgba(255,255,255,0.1);
	margin-bottom: 17px;
	margin-top: 6px;
}
#app-menu div.notifications {
	margin: 10px 0;
}

div.notification-row {
	line-height: 1.2;
	cursor: pointer;
	color: black;
}

div.notifications div.notification-row {
	padding: 15px;
	background-color: white;
	margin-bottom: 0;
	border-left: 7px solid #ddd;
	border-bottom: 1px solid #eee;
}

#app-menu div.notifications div.notification-row {
	padding: 10px;
	box-shadow: 3px 0px 5px rgba(0, 0, 0, 0.2);
	margin-bottom: 8px;
	border-radius: var(--border-radius);
	border-bottom: none;
}

div.notifications div.notification-row:hover {
	background-color: #f8f8f8;
}

div.notification-row.unread {
	opxacity: 1 !important;
}

div.notification-message {
	font-size: 1rem;
	margin-bottom: 3px;
}

div.notification-time {
	font-size: 0.8rem;
	font-weight: normal;
}

#app-menu div.notification-message {
	font-size: 0.9rem;
}

#app-menu div.notification-time {
	font-size: 0.7rem;
}

div.notification-row.read > div {
	opacity: 0.5;
}
div.notifications div.notification-row.unread {
	border-left-color: var(--light-seagreen) !important;
}
div.notifications div.notification-row.unread div.notification-message {
	font-weight: bold;
}
	

span.notifications-badge {
	background-color: var(--alert-red);
	color: white;
	font-size: 8px;
	width: 14px;
	height: 14px;
	overflow: hidden;
	border-radius: 8px;
	line-height: 14px;
	text-align: center;
	padding: 0;
	margin-left: 5px;
	display: inline-block;
	top: 2px;
	position: relative;
	font-weight: bold;
}

span.bell-animation {
	-webkit-animation-name: bell;
	-webkit-animation-duration: 0.4s;
	-webkit-animation-iteration-count: 20;
	-webkit-animation-direction: normal;
	-webkit-transform-origin: 50% 0%;
	-webkit-animation-timing-function: linear;  /* or make your custom easing */
}
@-webkit-keyframes bell {
	0%   { -webkit-transform: rotate(0deg);   }
	25%  { -webkit-transform: rotate(10deg);  }
	75%  { -webkit-transform: rotate(-10deg); }
	100% { -webkit-transform: rotate(0deg);   }
}
.payout-section {
	margin-bottom: 20px;
	width: 100%;
}

.payout-section.payout-header h1, .payout-section.payout-header h3 {
	margin-top: 0;
	padding-top: 0;
}
.payout-section.payout-header table {
	width: 100%;
}
.payout-section.payout-header table td {
	vertical-align: top;
}

.payout-rows {
	min-height: 300px;
}

.payout-sums {
	border-top: 1px solid #ccc;
	width: 100%;
}
.payout-sums table {
	width: 100%;
}

.product-catalog {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 10px;
}

.product-catalog-card {
	border: 1px solid #ccc;
	width: 200px;
	border-radius: var(--border-radius);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-catalog-card-image {
	width: 100%;
	height: 150px;
	margin-top: 10px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}

.product-catalog-card-text {
	padding: 4px 10px;
	font-size: 0.9rem;
	line-height: 1.4;
}
.product-catalog-card-advertiser {
	color: #888;
}

.product-catalog-card-actions {
	justify-content: space-between;
	background-color: #f3f3f3;
	width: 100%;
	padding: 10px;
	display: flex;
	cursor: pointer;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	height: 50px;
	align-items: center;
	font-size: 0.9rem;
}
.product-catalog-card-actions p {
	margin: auto;
}

.product-catalog-card-action-button.button.supersmall {
	width: 40px;
	height: 30px;
	line-height: 36px;
	padding: 0;
}

.product-catalog-card-action-button span.google-icon {
	font-size: 15px;
}

.product-catalog-card-action-button.disabled {
	opacity: 0.4;
	cursor: no-drop;
}
.product-catalog-card .product-catalog-card-flag {
	height: 9px;
	top: -2px;
	position: relative;
}
.price {
	font-weight: bold;
}

.sales-price {
	font-weight: bold;
	color: var(--alert-red);
}

.original-price {
	text-decoration: line-through;
	font-size: 0.7rem;
	color: #888;
	position: relative;
}

.product-catalog-card .original-price {
	top: -2px;
}

@media (max-width: 575px) {
	.product-catalog-card {
		width: calc(50% - 10px);
	}
}
progress {
	border: none;
}
progress::-webkit-progress-bar {
	background-color: #e3e3e3;
	border-radius: 4px;
}
progress::-webkit-progress-value {
	background-color: #91d0ff;
	border-radius: 4px;
}
progress::-moz-progress-bar {
	background-color: #e3e3e3;
	border-radius: 4px;
}


.review-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
	margin-bottom: 40px;
}

.review-thumbnail {
	width: 300px;
	border: 1px solid #ccc;
	padding: 15px;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: white;
}

.review-thumbnail-content {
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	flex-grow: 1;
}
.review-thumbnail-content.expanded {
	display: block;
}

.review-thumbnail .flex-row {
	column-gap: 10px;
	align-items: center;
}

.review-thumbnail .profile-image {
	width: 42px;
	height: 42px;
	background-size: cover;
	border-radius: 21px;
}

.review-dashboard {
	max-width: 400px;
	min-width: 200px;
	width: 100%;
	margin-top: 30px;
}
.review-dashboard .review-thumbnail {
	margin-bottom: 30px;
}

.review-hero-widgets {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 60px;
	margin-top: -30px;
}

.review-hero-widget-text {
	color: white;
	font-weight: bold;
}

@media (max-width: 575px) {
	.review-thumbnail {
		width: 100%;
	}
	.review-hero-widgets {
		display: block;
		margin-top: -20px;
	}
	.review-hero-widget:not(:first-child) {
		display: none;
	}
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 19px;
  margin-right: 8px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--blue)
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--blue);
}

input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

.checkbox-placeholder {
	width: 44px;
	display: inline-block;
}
span.switch .slider {
	cursor: default;
}

@media (max-width: 575px) {
	.switch {
		width: 42px;
		height: 23px;
	}

	.slider:before {
		height: 19px;
		width: 19px;
	}

	input:checked + .slider:before {
		-webkit-transform: translateX(19px);
		-ms-transform: translateX(19px);
		transform: translateX(19px);
	}
	.checkbox-placeholder {
		width: 52px;
	}

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

html {
	overflow: scroll;
	overflow-x: hidden;
}


*:focus {
	outline: none;
}

body {
	margin: 0;
	margin-bottom: -1px;
	margin-left: -1px;
}

a {
	color: var(--blue);
}

footer {
	background: var(--blue-gradient);
	color: white;
	padding-top: 40px;
	font-size: 13px;
	line-height: 22px;
	margin-top: 3rem;
}

footer a {
	color: white;
	text-decoration: none;
}
footer a.logo img {
	width: 80%;
	max-width: 200px;
}

footer .content {
	margin-bottom: 20px;
	min-height: 130px;
}
footer a:hover {
	color: #ccc;
}

footer .copyright {
	background-color: rgba(0, 0, 0, 0.3);
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-size: 0.95rem;
	min-height: 40px;
	line-height: 40px;
}
footer .copyright a {
	color: rgba(255, 255, 255, 0.8);
	margin-left: 30px;
}

footer .footer-icon, .lead-type-icon {
	display: inline-block;
	width: 15px;
	height: 15px;
	position: relative;
	top: -1px;
	margin-right: 4px;
}

footer .footer-icon img {
	width: 100%;
}
footer .footer-icon img {
	filter: invert(1);
	opacity: 0.9;
}

.lead-type-icon {
	width: 12px;
	height: 12px;
	opacity: 0.5;
	top: -1px;
	margin-right: 4px;
}

.lead-avatar {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: white;
	border-radius: 50%;
	font-size: 15px;
	font-weight: var(--font-extrabold);
	text-align: center;
	user-select: none;
	text-transform: uppercase;
}

li {
	padding-bottom: 6px;
}

a.filterchip {
	display: inline-block;
	border-radius: var(--border-radius);
	margin: 0;
	margin-right: 5px;
	padding: 4px 10px;
	font-size: 0.6rem;
	background-color: #eee;
	color: #666;
	font-weight: var(--font-extrabold);
	text-decoration: none;
}

a.filterchip:after {
	content: "\00a0\00a0✕";
}

span.epc-data-chip {
	display: inline-block;
	border-radius: var(--border-radius);
	margin: 5px;
	margin-left: 0;
	background-color: #f8f8f8;
	font-size: 0.8rem;
	padding: 3px 5px;
	color: #666;
	font-weight: var(--font-extrabold);
}

span.id_color_sample, span.id_in_table, span.type-chip {
	display: inline-block;
	position: relative;
	top: -1px;
	border-radius: 2px;
	margin: 0;
}

span.type-chip {
	font-weight: var(--font-medium);
	font-size: 0.6rem;
	text-transform: uppercase;
}

td span.type-chip {
	width: 100%;
	text-align: center;
}

span.id_color_sample {
	width: 20px;
	height: 13px;
}

span.id_in_table, span.type-chip {
	padding: 2px 5px;
	font-size: 0.6rem;
	background-color: #f8f8f8;
	color: #666;
	text-decoration: none;
}
.alert-red span.id_in_table, .alert-red span.type-chip, span.id_in_table.alert-red, span.type-chip.alert-red {
	color: var(--alert-red);
}

tr.alert-red, tr.alert-red td, span.alert-red span.id_in_table {
	background-color: #fff8f8;
	color: var(--alert-red);
}
tr.alert-orange, tr.alert-orange td, span.alert-orange span.id_in_table {
	background-color: #fff0dc;
}

span.id_in_table:before {
	content: "ID ";
}

.nolink {
	color: inherit;
	text-decoration: none;
}

a.nolink:hover {
	color: inherit;
}

div.bg-gray {
	background-color: #eee;
}

.container {
	max-width: 960px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 20px;
}

.container-fullscreen {
	width: calc(100vw);
	margin-left: calc(-50vw + 50%);
}
.app-container .container-fullscreen, .app-container .container {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.prepayouts {
	background: url(/images/prepayouts.png) no-repeat center left 14px;
	background-size: 50px 40px;
}
.fast-payouts {
	background: url(/images/fast_payouts.png) no-repeat center left 14px;
	background-size: 50px 50px;
}

.fast-payouts, .prepayouts {
	min-height: 50px;
	width: 320px;
	margin: 0;
	padding: 14px;
	padding-left: 80px;
	line-height: 1.1;
	margin-top: 12px;
	background-color: #f8faff;
	border-radius: var(--border-radius);
}
.fast-payouts b, .prepayouts b {
	display: inline-block;
	margin-bottom: 3px;
}

span.icon-bar {
	background-color: black;
}

img.icon {
	width: 30%;
	margin-bottom: 2rem;
}

div.banner, div.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
div.hero.gradient {
	background-image: var(--black-gradient);

}

div.banner {
	min-height: 600px;
}
div.hero {
	min-height: 460px;
	min-height: 67vh;
}

div.banner div {
	max-width: 700px;
}


div.main-content {
	min-height: calc(100vh - 373px);
}

.fullwidth {
	width: 100%;
	max-width: var(--max-form-width);
}
.force100width {
	width: 100%!important;
}

.halfwidth {
	width: 50%;
	max-width: 200px;
}

.quarterwidth {
	width: 25%;
	max-width: 100px;
}
.pagewidth {
	width: 100%;
	max-width: none !important;
}

div.sort-row {
	cursor: move;
}


div.app-page-header {
	max-width: 80%;
}

div.app-page-header h1 {
	margin-bottom: 12px;
}


form div.row {
	max-width: calc(var(--bs-gutter-x) + var(--max-form-width));
}
form div.row.pagewidth {
	max-width: 100%;
}


label.input-label {
	margin-bottom: 2px;
	font-weight: var(--font-bold);
}

label.inline-input-label {
	top: 10px;
	position: relative;
	left: 12px;
	background-color: white;
	padding: 0 4px;
	font-size: 0.8rem;
	margin-top: -10px;
	font-weight: var(--font-regular);
	z-index: 2;
	border-radius: var(--border-radius);
	left: 12px;
	display: inline-block;
}

label.inline-input-label img.flag {
	position: relative;
	height: 0.7rem;
	top: -1px;
	margin-right: 4px;
}

span.channel {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-right: 5px;
	opacity: 0.5;
}

span.channel-size-small {
	top: 1px;
	width: 11px;
	height: 11px;
	margin-right: 5px;
}

span.channel-size-big {
	top: 9px;
	width: 30px;
	height: 30px;
}

span.inline-input-icon {
	position: absolute;
	background-color: white;
	border-radius: 30px;
	padding: 2px;
	width: 1.5rem;
	height: 1.5rem;
	z-index: 2;
	margin: 0;
	top: 0.9rem;
	right: 12px;
}

span.halfwidth-inline-input-icon {
	right: calc(64% - 12px) !important;
}

span.inline-input-icon span.google-icon {
	font-size: 1.25rem;
	color: #aaa;
	position: relative;
}
span.inline-input-tooltip span.google-icon {
	cursor: default;
}
span.inline-input-translate span.google-icon, span.inline-input-scheduled-change span.google-icon {
	cursor: pointer;
}


.feedback-icon {
	position: fixed;
	right: 20px;
	font-size: 11px;
	bottom: 0;
	height: 32px;
	width: 75px;
	color: white;
	font-weight: var(--font-bold);
	text-align: center;
	cursor: pointer;
	line-height: 32px;
	background: var(--seagreen-gradient);
	z-index: 998;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

ol.compact {
	margin: 0;
	font-size: 0.9rem;
	margin-top: 5px;
}

ol {
	counter-reset: item;
}

ol, ul {
	padding-left: 2rem;
	margin-block-end: 1rem;
}

ol > li {
	counter-increment: item;
}

ol ol > li {
	display: block;
}

ol ol > li:before {
	content: counters(item, ".") ". ";
	margin-left: -20px;
}

div.option-group {
	margin: 0;
	padding: 0;
}

div.option-group, div.expandable-group {
	display: block;
}

div.option-group.hidden, div.expandable-group.hidden {
	display: none;
}

div.expandable-link {
	cursor: pointer;
	display: block;
	margin-bottom: 5px;
	margin-top: 18px;
}

span.expandable-arrow {
	position: relative;
	top: 5px;
	font-size: 20px;
}


.warningBox {
	border: 1px solid #ff3350;
	border-radius: 8px;
	background-color: #fff8f8;
	padding: 10px;
	color: #ff3350;
	font-size: 12px;
}


label {
	/* font-weight: var(--font-bold); */
}


div.epc-list-item {
}

div.epc-list-item.horizontal {
	margin-right: 20px;
	display: inline-block;
}
div.epc-list-item.vertical {
	margin-top: 4px;
}

span.epc-list-number {
	display: inline-block;
	height: 20px;
	width: 20px;
	line-height: 19px;
	background-image: var(--blue-gradient);
	color: white;
	font-size: 0.9rem;
	font-weight: var(--font-bold);
	text-align: center;
	margin-right: 5px;
	position: relative;
	top: -1px;
	border-radius: 10px;

}

div.epc-data-table {
	width: 100%;
	overflow: scroll;
	overflow-x: auto;
}

.sanity-check-topic {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.sanity-check-bubble {
	color: var(--alert-red);
	background-color: #fff8f8;
	border: 1px solid red;
	border-radius: var(--border-radius);
	padding: 20px;
	width: 300px;
}
.cr-alert-bubble {
	border: 1px solid #ffd59d;
	background-color: #fffaf3;
	border-radius: var(--border-radius);
	padding: 20px;
}

.errorMessage {
	color: var(--alert-red);
	margin-bottom: 12px;
	margin-top: 3px;
	font-size: 12px;
	display: block;
}
span.input-description {
	color: #888;
	margin-bottom: -4px;
	margin-top: 4px;
	padding: 0 16px;
	line-height: 0.9rem;
	font-size: 0.8rem;
	max-width: var(--max-form-width);
	display: block;
	white-space: wrap;
}

.loader-wrapper {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: default;
}

span.bankdata {
	display: block;
	font-size: 10px;
	color: darkgreen;
	padding: 0 16px;
	margin-bottom: 12px;
	margin-top: 4px;
}

.alert-red, .alert-red a {
	color: var(--alert-red);
}
.alert-orange {
	color: var(--alert-orange);
}

.google-icon.inline-icon.seagreen {
	color: var(--seagreen);
}

.nowrap {
	white-space: nowrap;
}

.public-advertiser-page {
	padding: 0 16px;
	font-size: 0.8rem;
	margin-top: -5px;
}

img {
	border: none;
}
img.responsive {
	max-width: 90%;
	max-height: 200px;
}


nav.bg-light {
	background-color: white !important;
}
nav {
	border-bottom: 1px solid #eee;
}
.nav {
	display: flex;
	list-style: none;
}

.navbar {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s padding ease-out;
}

.navbar.thinner {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.navbar.thinner .navbar-brand img {
	height: 24px;
}

ul.navbar-nav {
	align-items: center;
}

ul.navbar-nav > li.nav-item {
	margin: 0 12px;
}

ul.nav-tabs > li.nav-item {
	padding-bottom: 0;
	white-space: nowrap;
}

.navbar-collapse {
	position: relative;
} 

ul.navbar-nav > li.nav-item > a.nav-link {
	color: black;
	font-weight: var(--font-bold);
}

ul.navbar-nav > li.nav-item > a.nav-link:hover {
	color: #b4b4b4;
	border-color: #b4b4b4;
	background: none;
}

.navbar-brand img {
	height: 30px;
	transition: 0.3s height ease-out;
}

.navbar-toggler {
	border: none;
}
.navbar-toggler:focus {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

div.app-container {
	display: flex;
	flex-direction: row;
	margin: 0;
	width: 100%;
	overflow: auto; 
	background: white;
	background: linear-gradient(117deg, rgba(246,249,255,1) 0%, rgba(255,255,255,1) 70%);
	background-size: 100vw 100vh;
	background-repeat: no-repeat;
	background-blend-mode: multiply;

	/*	flex: auto; */
	/*	align-items: stretch; */
}

div.app-container.page-dashboard {
	background-color: var(--gray);
}

div.app-content {
	margin: 20px 30px;
	flex: 1 1 auto;
	min-width: 0;
}

div.app-inner-content {
	min-height: calc(100vh - 150px);
}

div.app-menu {
	background: var(--blue);
	background-image: var(--blue-gradient);
	color: white;
	font-size: 0.95rem;
	padding: 20px;
	flex: 0 0 auto;   /* Menu should never descrease in width */
	width: 220px;
	min-height: 100vh;
}

div.app-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

div.app-menu ul li {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-left: -20px;
	padding-left: 20px;
	margin-right: -20px;
	padding-right: 20px;
	cursor: pointer;
}


div.app-menu ul li.sub-menu-item {
	padding-left: 40px;
}

div.app-menu ul li.sub-menu-group, div.app-menu ul li.menu-item {
	position: relative;
	cursor: pointer;
}
div.app-menu ul li.sub-menu-group:hover, div.app-menu ul li.menu-item:hover, #adArea a:hover {
	opacity: 0.8;
}
div.app-menu ul li.menu-item.disabled {
	cursor: default;
}
div.app-menu ul li.menu-item.disabled:hover {
	opacity: 1.0;
}

div.app-menu ul li.sub-menu-group span.google-icon.menu-arrow {
	position: absolute;
	right: 20px;
	font-size: 1.5rem;
	opacity: 0.9;
}

div.app-menu ul li.sub-menu-group.open span.google-icon.menu-arrow.collapsed {
	display: none;
}

div.app-menu ul li.sub-menu-group span.google-icon.menu-arrow.expanded {
	display: none;
}

div.app-menu ul li.sub-menu-group.open span.google-icon.menu-arrow.expanded {
	display: inline-block;
}

div.app-menu ul.sub-menu {
	display: none;
}

div.app-menu li.sub-menu {
	display: none;
	padding-top: 0;
	padding-bottom: 0;
}

div.app-menu ul.sub-menu.open {
	display: block;
}

div.app-menu li.sub-menu.open {
	display: block;
}

div.app-menu ul li.selected {
	background-color: rgba(0, 0, 0, 0.1);
}

div.app-menu ul li a, div.mobilebar a, #adArea a {
	font-weight: var(--font-semibold);
	color: white;
	text-decoration: none;
}
div#forTheSelectedInterval {
	font-size: .8rem;
	border-top: 1px solid #eee;
	padding-top: 10px;
	margin-top: 20px;
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 20px;
	margin-bottom: 3px;
}

div.dashboard-scorecard-container {
	background: var(--blue);
	background-image: var(--blue-gradient);
	border-radius: var(--border-radius);
	width: 100%;
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 20px;
}
div.dashboard-scorecard-container.light {
	background-image: var(--light-gray-gradient);
}

div.dashboard-scorecard-container div.dashboard-scorecard {
	color: white;
	background-color: rgba(0,0,0,0.1);
	border-radius: var(--border-radius);
	text-align: center;
	font-size: 0.7rem;
	padding: 20px;
	flex-grow: 1;
}
div.dashboard-scorecard-container.light div.dashboard-scorecard {
	background-color: rgba(255,255,255,0.3);
	color: #666;
	border: 1px solid #eee;
}

div.dashboard-scorecard-container div.dashboard-scorecard span.big-number {
	font-size: 2rem;
	font-family: var(--font-family-header);
	font-weight: var(--font-extrabold);
}

div.dashboard-date-pickers {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	margin-bottom: 12px;
}
div.dashboard-date-pickers > div {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
}

div.dashboard-date-pickers div.dashboard-combined-checkbox {
	flex-grow: 1;
	margin-top: -10px;
	margin-bottom: -12px;
}

div.dashboard-date-pickers div.dashboard-date-picker {
	width: 155px;
	display: inline-block;
}

div.dashboard-tables-container {
	display: flex;
	column-gap: 2rem;
	flex-wrap: nowrap;
}

div.admin-only-section {
	border-radius: var(--border-radius);
	padding: 20px;
	padding-top: 10px;
	background-color: #fafcfe;
	border: 1px solid #f0f4f8;
}

div.admin-only-block {
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	padding: 20px;
	margin-top: 1.5rem;
	width: 100%;
	max-width: var(--max-form-width);
	overflow: hidden;
}



div.flex-row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
}	
div.flex-row.fixed-width > div {
	min-width: 200px;
}
div.flex-grow-children {
	display: flex;
	column-gap: 1rem;
	align-items: center;
}

div.flex-grow-children > div{
	flex-grow: 1;
	min-width: 150px;
}

div.brands-markets-popup {
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
	background-color: white;
	width: fit-content;
	max-width: 100%;
	position: relative;
}
div.brands-markets-popup .flex-row {
	flex-wrap: nowrap;
	align-items: center;
	padding: 25px;
	padding-left: 20px;
}


.pagination-container {
	padding-top: 8px;
	padding-bottom: 8px;
	margin-right: 4rem;
	flex-grow: 1;
	max-width: 600px;
}
.pagination-container > span {
	font-size: 0.8rem;
	opacity: 0.8;
}

.pagination {
	margin-top: 4px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.pagination .pagination-page {
	display: inline-block;
	font-size: 0.8rem;
	border: 1px solid #999;
	border-radius: var(--border-radius);
	text-align: center;
	padding: 0px 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	min-width: 40px;
	cursor: pointer;
	color: #666;
}

.pagination .pagination-page.current-page {
	font-weight: var(--font-bold);
	border: 1px solid black;
	color: black;
}

div.flexgrow {
	flex-grow: 1;
}


div.grid-row-2, div.grid-row-3 {
	display: grid;
	column-gap: 10px;
	max-width: var(--max-form-width);
}
div.grid-row-2 {
	grid-template-columns: 1fr 1fr;
}

div.grid-row-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

div.market-select-grid {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

div.market-select-grid > div {
	width: 150px;
}


form#contactForm > div {
	display: grid;
	column-gap: 20px;
	grid-template-columns: 0.7fr 1fr;
}
form#contactForm textarea {
	height: 178px;
	max-width: none !important;
}
form#contactForm div {
	max-width: none !important;
}


div.callback-parameters {
	display: grid;
	grid-template-columns: 0.5fr 0.5fr 20px;
	column-gap: 10px;
	margin-top: 2px;
}

div.callback-parameters div.input-container {
	margin: 0 !important;
}


div.copy-advertiser-container {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}	
div.copy-advertiser-item {
	border-radius: var(--border-radius);
	padding: 20px;
	border: 1px solid #ccc;
	width: 40%;
}
div.copy-advertiser-item img {
	max-width: 80px;
	max-height: 30px;
	position: relative;
	top: -9px;
	margin-right: 8px;
}
div.copy-advertiser-item span.flag {
	width: 25px;
	height: 18px;
	margin-right: 5px;
	top: -3px;
	position: relative;
}


#frontpage-language-selector {
	position: relative;
	right: 0;
	color: #333;
}
#frontpage-language-selector a {
	line-height: 2rem;
	color: #333;
}
#frontpage-language-selector-current {
	cursor: pointer;
}
#frontpage-language-selector-list {
	background-color: white;
	padding: 25px;
	position: absolute;
	white-space: nowrap;
	right: -25px;
	top: -25px;
}

#language-selector {
	margin-top: -1rem;
}
#market-selector {
	margin-top: 2rem;
}

#language-selector-current, #market-selector-current {
	padding: 15px 0;
	cursor: pointer;
}
#language-selector-current:hover, #market-selector-current:hover {
	text-decoration: underline;
}
.app-menu #language-selector-list, .app-menu #market-selector-list {
	padding: 15px 20px;
	background-color: rgba(0, 0, 0, 0.1);
	left: -20px;
	margin-bottom: 2rem;
	margin-top: 1rem;
	position: relative;
	width: calc(100% + 40px);
}
.app-menu #language-selector-list a, .app-menu #market-selector-list a {
	color: white;
	text-decoration: none;
	margin-bottom: 15px;
	display: inline-block;
}
.app-menu #language-selector-list a:last-of-type, .app-menu #market-selector-list a:last-of-type {
	margin-bottom: 0;
}

.app-menu span.type-chip {
	color: var(--blue);
	background-color: white;
}

.app-menu ul li span.disabled {
	font-weight: var(--font-bold);
	color: rgba(255, 255, 255, 0.6);
	cursor: default;
}

.app-menu a.logo img {
	width: 90%;
	margin-bottom: 20px;
}

.app-menu ul li.noborder {
	border: none;
}

.app-menu-user {
	text-overflow: ellipsis;
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.cohort-cell {
	position: relative;
	text-align: right;
}

.cohort-cell > span {
	display: none;
	position: absolute;
	z-index: 100;
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
	background-color: white;
	padding: 10px;
	width: fit-content;
	min-width: 200px;
	top: 20px;
	left: -40px;
	text-align: left;
}

.cohort-cell:hover > span {
	display: block;
}

.hidden {
	display: none !important;
}


.statusbar {
	background:red;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	font-size: 0.85rem;
	line-height: 1.1rem;
	font-weight: var(--font-bold);
}

.statusbar.new, span.type-chip.new {
	color: var(--status-new-color);
	background-color: var(--status-new-bgcolor);
}

.statusbar.test, span.type-chip.test, span.type-chip.writtenOff, span.type-chip.dark {
	color: var(--status-test-color);
	background-color: var(--status-test-bgcolor);
}

.statusbar.active, span.type-chip.active, span.type-chip.approved, span.type-chip.closed, span.type-chip.allowed, span.type-chip.signedup {
	color: var(--status-active-color);
	background-color: var(--status-active-bgcolor);
}

.statusbar.pending, span.type-chip.pending, span.type-chip.invited, span.type-chip.contactedNoAnswer, span.type-chip.remindedNoAnswer {
	color: var(--status-pending-color);
	background-color: var(--status-pending-bgcolor);
}
.statusbar.waitinglist, span.type-chip.waitinglist, span.type-chip.delayed, span.type-chip.restricted, span.type-chip.contactedAnswered {
	color: var(--status-delayed-color);
	background-color: var(--status-delayed-bgcolor);
}
span.type-chip.inDialog {
	color: var(--status-indialog-color);
	background-color: var(--status-indialog-bgcolor);
}

.statusbar.ended, .statusbar.rejected, .statusbar.denied,
span.type-chip.ended, span.type-chip.rejected, span.type-chip.denied, span.type-chip.deleted, span.type-chip.canceled, span.type-chip.notAllowed, span.type-chip.suspended, span.type-chip.paymentFailed, span.type-chip.passedDue, span.type-chip.notInterested {
	color: var(--status-denied-color);
	background-color: var(--status-denied-bgcolor);
}

span.type-chip.payoutInitiated, span.type-chip.contactAnswered {
	color: var(--status-payout-color);
	background-color: var(--status-payout-bgcolor);
}

span.type-chip.overdue {
	color: var(--status-denied-color);
	background-color: var(--status-denied-bgcolor);
	border: 1px solid var(--alert-red);
	text-transform: uppercase;
}

.statusbar.paid, span.type-chip.paid, span.type-chip.paidOut, span.type-chip.done {
	color: var(--status-paidout-color);
	background-color: var(--status-paidout-bgcolor);
}

span.type-chip.fixed-width {
	width: 60px;
	text-align: center;
}


.input-send-icon {
	padding-right: 50px;
}

.send-icon {
	color: #1c4ab0;
}


.red-badge {
	color: var(--alert-red);
	font-size: 10px;
	bottom: -1px;
	position: relative;
	margin-left: 3px;
}

.blue-badge {
	color: white;
	background: var(--blue);
	background-image: var(--blue-gradient);
	font-size: 0.5rem;
	font-weight: var(--font-bold);
	top: -5px;
	position: relative;
	margin-left: 3px;
	padding: 1px 3px 2px 2px;
	border-radius: 3px;
}

.beta-badge {
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--blue);
	font-size: 0.55rem;
	font-weight: var(--font-bold);
	top: -4px;
	position: relative;
	margin-left: 3px;
	border-radius: 2px;
	padding: 1px 4px;
}

.padlock {
	color: white;
	font-size: 12px;
	bottom: -1px;
	position: relative;
	margin-left: 3px;
}

.green-check-icon, .red-cross-icon, .orange-cross-icon {
	font-size: 14px;
	margin-right: 4px;
	bottom: -2px;
	position: relative;

}

.green-check-icon {
	color: var(--green);
}

.red-cross-icon {
	color: var(--alert-red);
}

.orange-cross-icon {
	color: var(--alert-orange);
}


.statusbar .button {
	min-width: 90px;
	height: 1.8rem;
	line-height: 1.7rem;
	font-size: 0.85rem;
	margin-left: 20px;
	padding: 0;
}

.mobilebar {
	height: 50px;
	line-height: 40px;
	white-space: nowrap;
	padding: 4px 15px;
	justify-content: space-between;
	align-items: center;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	background: var(--blue);
	background-image: var(--blue-gradient);
	color: white;
	z-index: 999; 

	display: none;
}

.mobilebar img {
	width: 150px;
}

.mobilebar-spacer {
	height: 0;
	display: none;
	flex: 0 0 auto;
}

.mobilebar .right {
	text-align: right;
}
.mobilebar .right span {
	font-size: 28px;
	line-height: 50px;
}


img.header-image {
	margin-left: -30px;
	width: calc(100% + 60px);
}


div.team-grid {
	display: grid;
	column-gap: 40px;
	row-gap: 50px;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr; 
	margin-top: 20px;
}
div.team-grid div {
	text-align: center;
	line-height: 1.4;
}
div.team-grid .profile-image {
	border-radius: 300px;
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

div.image-uploader-container {
	width: 100%;
	max-width: var(--max-form-width);
	height: auto;
	padding: 15px;
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	background-color: white;
}

div.image-uploader-viewer {
	width: 50%;
	margin-bottom: 10px;
	display: block;
}
div.image-uploader-viewer img {
	width: 100%;
}

.image-uploader-save-message {
	line-height: normal;
	margin-top: 8px;
	font-size: 10px;
}

div.messagebox {
	display: block;
	position: relative;
	width: fit-content;
	font-size: 0.85rem;
	padding: 8px 16px 8px 13px;
	border: 1px dotted #ddd;
	border-left: 6px solid var(--alert-red);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	max-width: var(--max-form-width);
}

div.messagebox.warning-message {
	border-left-color: var(--alert-red);
	border-color: var(--alert-red);
	color: var(--alert-red);
	background-color: rgba(255,51,80,0.01);
}
div.messagebox.warning-message a {
	color: var(--alert-red);
	font-weight: var(--font-bold);
}

div.messagebox.info-message {
	border-color: var(--light-blue);
	background-color: rgba(61,127,255, 0.01);
}
div.messagebox.discreet-message {
	border-color: #ccc;
	background-color: rgba(200,200,200, 0.01);
}
div.messagebox.success-message {
	border-color: var(--seagreen);
	background-color: rgba(0,182,122,0.01);
}
div.messagebox.pending-message {
	border-color: var(--status-pending-bordercolor);
	background-color: var(--status-pending-bgcolor-light);
}
div.messagebox.test-message {
	border-color: var(--status-test-bordercolor);
	background-color: var(--status-test-bgcolor-light);
}
div.messagebox.new-message {
	border-color: var(--status-new-bordercolor);
	background-color: var(--status-new-bgcolor-light);
}

span.warning-message {
	color: var(--alert-red);
	background-color: #fff8f8;
}
span.info-message {
	color: #444;
	background-color: #f8faff;
}
span.success-message {
	color: var(--green);
	background-color: #f8fff8;
}
span.warning-message, span.info-message, span.success-message {
	padding: 0.4rem 0.7rem;
	display: inline-block;
	border-radius: var(--border-radius);
}

div.expandable, div.clickable {
	cursor: pointer;
}
div.expandable.description { 
	cursor: default;
}

div.checklistbox {
	display: block;
	position: relative;
	width: 700px;
	max-width: 100%;
	padding: 8px 16px 8px 13px;
	border: 1px dotted #ddd;
	border-radius: var(--border-radius);
	min-height: 54px;
	border-left-color: #ccc;
	border-color: #ccc;
	background-color: rgba(200,200,200, 0.01);
	margin-top: 1.2rem;
}

div.checklistbox.complete {
	border-left-color: var(--seagreen);
	border-color: var(--seagreen);
	background-color: rgba(0,182,122,0.01);
}
div.expandable span.expand-icon {
	right: 10px;
	top: 15px;
	position: absolute;
	color: #666;
}

div.status-circle, div.status-circle-inside {
	--w:120px;
	--b:18px;

	width: var(--w);
	aspect-ratio: 1;
	display: inline-grid;
	place-content: center;
	font-size: 25px;
	font-weight: var(--font-bold);
	color: #444;
}
div.status-circle {
	position: relative;
	margin: 5px;
}

div.status-circle-inside {
	position: absolute;
}

div.status-circle:before, div.status-circle-inside:before {
	content: "";
	position: absolute;
	border-radius: 50%;
	inset: 0;
	-webkit-mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
	mask:radial-gradient(farthest-side,#0000 calc(99% - var(--b)),#000 calc(100% - var(--b)));
}
div.status-circle:before {
	background: #f2f2f2;
}
div.status-circle-inside:before {
	background: conic-gradient(var(--seagreen) calc(var(--p)*1%),#0000 0);
}

div.profile-image {
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}

table tr td div.profile-image {
	width: 100px;
	height: 40px;
	min-width: 100px;
}

table tr td div.profile-image.small {
	width: 70px;
	height: 28px;
	min-width: 70px;
}

table tr td div.profile-image.big {
	width: 150px;
	height: 90px;
	min-width: 150px;
}


table tr td div.profile-image.round {
	width: 80px;
	height: 80px;
	min-width: 80px;
	border-radius: 50px;
}
table tr td div.profile-image.round.small {
	width: 50px;
	height: 50px;
	min-width: 50px;
}

div.hero img.profile-image {
	width: 250px;
	height: 250px;
	border-radius: 125px;
}

div.permission-icon {
	color: white;
	margin-right: 2px;
	border-radius: 10px;
	height: 20px;
	width: 20px;
	font-size: 8px;
	line-height: 20px;
	padding: 0;
	text-align: center;
	display: inline-block;
	background-color: #ddd;
	cursor: default;
}
div.permission-icon.set {
	background-color: var(--seagreen);
}

div.advertiser-logos {
	display: flex;
	gap: 35px;
	padding: 12px;
	overflow: scroll;
	overflow-x: auto;
	justify-content: space-between;
	margin-bottom: 20px;
}
div.advertiser-logos > div {
	width: 120px;
	height: 50px;
	min-width: 120px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}

div.advertiser-logos::-webkit-scrollbar, div.tab-menu-container::-webkit-scrollbar, div.epc-data-table::-webkit-scrollbar {
	width: 0px;
	height: 3px;
	background: transparent;
}
div.advertiser-logos::-webkit-scrollbar-thumb, div.tab-menu-container::-webkit-scrollbar-thumb, div.epc-data-table::-webkit-scrollbar {
	background: #eee;
}

input[type="range"], input[type="radio"] {
	filter: brightness(96%) saturate(70%) hue-rotate(6deg);
}
input[type="radio"] {
	top: 1px;
	transform: scale(1.3);
	position: relative;
	margin-right: 8px;
}

.category-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.category-box {
	height: 50px;
	background-color: #f3f3f3;
	border-radius: var(--border-radius);
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 8px;
	font-weight: var(--font-bold);
}
.category-box:hover {
	transform: scale(1.04);
	opacity: 0.8;
}

.category-box-name {
	padding-left: 10px;
	padding-right: 20px;
	flex: 1 0 auto;
}

.category-box-number {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 32px;
	background-color: white;
	border-radius: var(--border-radius);
	flex: 0 0 auto;
}


div.category-container.public-affiliate-page {
	margin-top: -4rem;
	margin-bottom: 2rem;
}

div#category-advertisers {
	margin-bottom: 6rem;
}

div.category-advertisers-container {
	display: flex;
	flex-wrap: wrap;
	gap: 35px;
	padding: 12px;
	margin-top: 3rem;
}

div.category-advertisers-container > div {
	cursor: pointer;
	width: 120px;
}

div.category-advertisers-logo {
	height: 80px;
	min-width: 120px;
	background-repeat:no-repeat;
	background-position: center center;
	background-size: contain;
}
div.category-advertisers-slogan {
	text-align: center;
	overflow: hidden;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #666;
}

div.productSyncInfo {
	font-style: italic;
	color: #444444;
	font-size: 0.8rem;
}

.mb-10 {
	margin-bottom: 6rem!important;
}

.my-10 {
	margin-top: 6rem!important;
	margin-bottom: 6rem!important;
}

.py-10 {
	padding-top: 6rem!important;
	padding-bottom: 6rem!important;
}

.cookiebar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 20px;
	background-color: black;
	color: white;
	box-shadow: -20px 0px 20px 20px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: -20px 0px 20px 20px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: row;
	align-items: end;
	z-index: 99999;
}
.cookiebar p {
	margin-bottom: 0;
}
.cookiebar a {
	color: white;
}

.completeness-bar {
	color: white;
	font-size: 0.7rem;
	padding: 0 2px;
	text-align: center;
	border-radius: var(--border-radius);
}

#payment-element {
	max-width: 600px;
	margin-top: 24px;
}

div.payment-method {
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	padding: 20px;
	margin-bottom: 20px;
	min-width: 300px;
	width: 100%;
	max-width: 500px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	background-color: #fafafa;
}

div.payment-method.default {
	border-color: #444;
	background-color: white;
}
div.payment-method:not(.default) img {
	opacity: 0.6;
}
div.payment-method:not(.default) {
	color: #666;
}

div.payment-method-buttons a.button {
	margin-left: 8px;
	margin-top: 12px;
}

span.faded, div.faded, td.faded, img.faded, p.faded, th.faded {
	opacity: 0.3;
}
span.semi-faded, div.semi-faded, td.semi-faded, img.semi-faded, p.semi-faded, th.semi-faded {
	opacity: 0.65;
}
span.gray-faded, div.gray-faded, td.gray-faded, img.gray-faded, p.gray-faded {
	opacity: 0.3;
	filter: grayscale();
}
span.faded-italic {
	opacity: 0.5;
	font-style: italic;
}


#payment-error-message {
	color: var(--alert-red);
	background-color: rgba(255, 51, 80, 0.05);
	border-radius: var(--border-radius);
	padding: 3px 15px;
	font-weight: var(--font-bold);
	margin-bottom: 15px;
	margin-top: 15px;
	display: none;
}

span.google-icon.autoApproveChannels, span.google-icon.selectedPaymentMethod, span.google-icon.inline-icon {
	position: relative;
	margin-right: 5px;
	top: 7px;
}
span.google-icon.inline-icon.medium {
	top: 5px;
	font-size: 1.5rem;
}
span.google-icon.inline-icon.small {
	top: 2px;
	font-size: 1rem;
}

span.google-icon.autoApproveChannels, span.google-icon.selectedPaymentMethod {
	color: var(--blue);
}

span.google-icon.openInNew {
	margin-left: 4px;
	font-size: 0.9rem;
}

span.google-icon.exclusiveCampaign {
	color: gold;
}
span.google-icon.exclusiveCampaign, span.google-icon.sync {
	position: relative;
	margin-right: 5px;
	top: 2px;
	font-size: 0.9rem;
}

.nomargin {
	margin: 0 !important;
}

.progress-circle {
	border-radius: 10px;
	height: 20px;
	width: 20px;
	border: 2px solid #eee;
	background-color: white;
	display: inline-block;
	margin-right: 3px;
	font-size: 7px;
	line-height: 17px;
	text-align: center;
	color: #aaa;
}

.progress-circle.completed {
	border-color: var(--blue);
	color: var(--blue);
}

.progress-circle.payout {
	background-color: #f8f8f8;
	font-weight: var(--font-bold);
}

.progress-circle.payout.completed {
	background-color: var(--blue);
	border-color: var(--dark-blue);
	color: white;
}
.progress-circle.payout.completed.transaction {
	background-color: var(--seagreen);
	border-color: black;

}

.progress-circle.payout.completed.transaction a {
	color: white;
	text-decoration: none;
}

.language-circle {
	border-radius: 10px;
	height: 20px;
	width: 20px;
	border: 1px solid #bbb;
	display: inline-block;
	margin-right: 4px;
	font-size: 9px;
	line-height: 17px;
	text-align: center;
}

.language-circle.original-language {
	border-color: black;
}

.wave-separator {
	margin-left:calc( (100vw - 100% ) / -2  );
	margin-right:calc( (100vw - 100% ) / -2   );
}
.wave-separator-color-gray svg {
	fill: var(--gray);
}
.wave-separator-color-white svg {
	fill: white;
}

#toggleAllCheckboxesLink {
	line-height: 40px;
}

.xxxx_checkbox-group-container > div {
	height: auto !important;
	line-height: unset !important;
	border-radius: var(--border-radius);
	background-color: white;
	height: 40px;
	line-height: 40px;
	border: 1px solid #ccc;
	padding: 0 15px;
	padding-bottom: 7px;
}

.prepayouts-small {
	top: -1px;
	position: relative;
	width: 13px;
	height: 10px; 
	margin-right: 4px;
}

hr {
	border: none;
	height: 1px;
	color: #ccc;
	background-color: #ccc;
}

div.gray-block {
	height: auto;
	padding: 20px;
	border-radius: var(--border-radius);
	background-color: #f8f8f8;
}

div.gray-block.alert-red {
	background-color: #fff8f8;
}

div.gray-border-block {
	border-radius: var(--border-radius);
	background-color: white;
	border: 1px solid #ccc;
	padding: 20px;
}
div.gray-border-block.alert-red {
	/* background-color: #fff8f8; */
	border-color: var(--alert-red);
}

div.agreement-textarea {
	max-height: 200px;
	overflow: scroll;
}

div.page-center {
	text-align: center;
	max-width: 600px;
	width: 80%;
	margin: 2rem auto;

}
div.page-center img.page-center-image {
	max-height: 100px;
}
div.page-center div.page-center-content {
	margin-bottom: 2rem;
}
div.page-center h1 {
	margin: 2rem 0;
}

div.relation-status-buttons-container {
	gap: 10px;
}

div.epc-form-earnings {
	font-weight: var(--font-bold);
	font-size: 1.3rem;
}

.grecaptcha-badge {
	visibility: hidden;
}

img.google-signin {
	width: 191px;
	height: 46px;
}

img.google-signin:focus {
	content: url(/images/google/btn_google_signin_dark_focus_web@2x.png);
}
img.google-signin:active {
	content: url(/images/google/btn_google_signin_dark_pressed_web@2x.png);
}

#customMessagePreview {
	transition: background-color 0.2s
}


@media (max-width: 991px) {
	.navbar-collapse {
		margin-top: 8px;
	}

	ul.navbar-nav > li.nav-item {
		padding: 15px; 
		width: 100%;
		text-align: center;
	}

	ul.navbar-nav > li.nav-item > a.nav-link {
		font-size: 1.2rem;
		line-height: 2.3rem;
	}
	.navbar .button.primary.supersmall {
		height: 3rem;
		line-height: 2.9rem;
		font-size: 1.1rem;
		padding: 0 2rem;
	}
	div.copy-advertiser-item {
		width: 100%;
	}
	#frontpage-language-selector {
		position: static;
		text-align: center;
	}
	#frontpage-language-selector-list {
		position: sticky;
		margin-top: -52px;
		background-color: white;
	}
}
@media (max-width: 575px) {
	.navbar {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	ul.navbar-nav > li.nav-item > a.nav-link {
		margin: 0;
		padding: 0;
	}



	div.app-container {
		flex-direction: column;
	}

	div.app-content {
		margin: 15px;
	}

	div.app-menu {
		width: 100%;
		min-height: none;
	}

	div.app-menu ul li {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.xs-hide {
		display: none !important;
	}


	div.app-menu.mobile-menu-closed {
		display: none;
	}
	div.app-menu a.logo {
		display: none;
	}
	div.app-page-header {
		max-width: 100%;
	}
	div.mobilebar {
		display: flex;
	}
	div.mobilebar-spacer {
		height: 50px;
		display: block;
	}
	footer a.logo img {
		text-align: center;
	}
	footer .content {
		text-align: center;
		font-size: 16px;
		line-height: 30px;
	}
	.cookiebar {
		display: block;
	}
	.cookiebar p {
		margin-bottom: 10px;
	}

	span.id_color_sample.xs-compact, span.id_in_table.xs-compact, span.type-chip.xs-compact, td.xs-compact > span.type-chip {
		border-radius: 11px;
		width: 21px;
		height: 21px;
		overflow: hidden;
		top: 3px;
		padding-right: 0;
		color: transparent;
	}
	th.xs-compact {
		overflow: hidden;
		color: transparent;
		padding: 0 !important;
	}
	td.xs-compact {
		padding-right: 0 !important;
	}

	span.id_color_sample.xs-compact span, span.id_in_table.xs-compact span, span.type-chip.xs-compact span {
		display: none;
	}

	div.payment-method {
		width: 100%;
	}
	div.payment-method > div {
		width: 100%;
	}
	.statusbar {
		padding: 15px;
		flex-wrap: wrap;
	}
	.statusbar .button {
		width: 100%;
		height: 2rem;
		margin: 0.8rem auto 0;
		line-height: 1.9rem;
	}

	div.dashboard-scorecard-container {
		gap: 10px;
		padding: 10px;
		margin-top: -15px;
		margin-left: -15px;
		margin-right: -15px;
		width: calc(100% + 30px);
		border-radius: 0;
	}

	div.dashboard-scorecard-container div.dashboard-scorecard {
		font-size: 0.7rem;
		padding: 10px;
	}

	div.dashboard-scorecard-container div.dashboard-scorecard span.big-number {
		font-size: 1.4rem;
	}
	div.dashboard-date-pickers > div {
		width: 100%;
	}
	div.dashboard-date-pickers div.dashboard-combined-checkbox {
		margin-top: -10px;
		margin-bottom: -12px;
	}
	div.dashboard-date-pickers div.dashboard-date-picker {
		width: 100%;
		overflow: auto;
	}
	div.dashboard-tables-container {
		flex-wrap: wrap;
	}

	div.category-container.public-affiliate-page {
		margin-top: -2rem;
	}
	.category-box {
		font-size: 0.75rem;
		height: 30px;
		align-items: left;
	}
	.category-box-name {
		padding-left: 3px;
		padding-right: 6px;
	}
	.category-box-number {
		height: 20px;
		width: 20px;
	}
	.checkbox-group-grid {
		grid-template-columns: 1fr 1fr
	}
	div.epc-list-item {
		width: 100%;
	}

	label.switch + span.input-description {
		padding-left: 53px;
	}

	.xs-maxwidth-80 {
		max-width: 80px;
	}
	#language-selector-current, .app-menu #language-selector-list, #market-selector-current, .app-menu #market-selector-list {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	.app-menu #language-selector-list a, .app-menu #market-selector-list a {
		margin-bottom: 25px;
	}
	div.flex-row.fixed-width > div {
		width: 100%;
	}
	div#forTheSelectedInterval {
		border: none;
		margin: 0;
		padding: 0;
		margin-bottom: 20px;
	}
	.pagination-container {
		padding-top: 8px;
		padding-bottom: 8px;
		margin-right: 0;
	}
	div.page-center {
		width: 100%;
	}
	div.relation-status-buttons-container {
		width: 87vw;
	}
	form#contactForm > div {
		display: block;
	}
	footer .copyright {
		padding: 10px 0;
	}
	footer .copyright a {
		display: block;
	}
	div.brands-markets-popup .flex-row {
		flex-wrap: wrap;
	}
	div.team-grid {
		grid-template-columns: 1fr 1fr;
	}

	#daterange-presets {
		position: fixed;
		left: 15px;
		width: calc(100% - 30px);
		top: 65px;
	}
	#dateRange-textfield {
		min-width: 240px;
	}
}

pre.log {
	font-size: 0.8rem;
	background-color: #fafafa;
	border-color: #ddd;
	padding: 16px;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}
input[type=date] {
	white-space: nowrap;
	-moz-apxpearance: textfield;
	-webkit-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0 30px #fdfdff inset !important;
	-webkit-text-fill-color: black !important;
	font-family: var(--font-family-header) !important;
}


::placeholder {
	color: #aaa;
	opacity: 1; /* Firefox */
}
input.autocomplete::placeholder {
	color: black;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
}

::-ms-input-placeholder { /* Microsoft Edge */
	color: #aaa;
}

@media print {
	.no-print, .no-print * {
		display: none !important;
	}
	div.app-menu, div.mobilebar, div.userbar, div.statusbar, div.copyright {
		display: none !important;
	}
}
.table-container-header {
	display: flex;
	align-items: flex-end;
	width: 100%;
	margin-bottom: 1rem;
}

.table-container-pagination {
	fxlex-grow: 1;
}
.table-container-filter {
	text-align: right;
	margin-bottom: 1.3rem;
	font-weight: bold;
	text-decoration: none;
	color: black;
	cursor: pointer;
	margin-left: 13px;
	margin-right: 13px;
	white-space: nowrap;
    	font-size:  0.9rem;
}
.table-container-filter:hover {
	color: #888;
}
.table-container-filter span {
	position: relative;
	top: -1px;
}

.table-container-filter.primary span {
	color: white;
}
span.icon-label {
	margin-right: 5px;
	display: inline-block;
}

span.google-icon.filter-icon {
	position: relative;
	top: 5px;
	font-size: 20px;
	width: 20px;
	overflow: hidden;
}

.filter-form-container {
	margin-bottom: 1.5rem;
	margin-top: -1rem;
	padding: 0.5rem 1.5rem 1rem;
	background-color: #fdfdfd;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

table.grid {
	border-spacing: 1px;
	border-collapse: separate;
	background-color: #ccc;
	border-radius: var(--border-radius);
}

table.grid tr td {
	background-color: white;
}
table.grid.thick {
	background-color: #ddd;
}
table.grid.thick tr td {
	border-top: 1px solid #666;
	padding-top: 6px;
}

table tr th {
	border-bottom: 2px solid #cccccc;
	background-color: #f8f8f8;
	height: 32px;
	padding-top: 6px !important;
	text-align: left;

}

table.nopad-first-cell tr > td:first-child,
table.nopad-first-cell tr > th:first-child {
    padding-left: 0;
}

table tr th:first-child {
	border-top-left-radius: 8px;
}
table tr th:last-child {
	border-top-right-radius: 8px;
}


table tr td, table tr th {
	padding: 4px 20px;
}

table.lines tr td {
	border-bottom: 1px solid #eee;
}
table.nolines tr td {
	border-bottom: none;
}

table.lines tr:last-child td {
	border-bottom: none;
}

table.compact tr td, table.compact tr th {
	padding: 4px 12px;
	line-height: 1.3;
}
table.nopadding tr td, table.nopadding tr th {
	padding: 4px 12px 0px;
	line-height: 1.2;
}

table.compact tr th {
	font-size: 1rem;
}

table.small tr td, table.small tr th {
	font-size: 0.8rem;
	padding: 2px 10px;
}

table.bigpadding tr td, table.bigpadding tr th {
	padding: 12px 12px;
}


table.noleftpadding tr td, table.noleftpadding tr th {
	padding: 2px 16px 2px 0px;
}

table tr.strike td {
	text-decoration: line-through;
}

table tr.clickable td {
	cursor: pointer;
}

table tr.clickable:hover td {
	color: #666;
}

table tr td.filterable {
	cursor: pointer;
}



table tr.line td {
	border-top: 1px solid #eeeeee;
}

table tr.alert-red td {
	color: var(--alert-red);
	background-color: rgba(255, 51, 80, 0.05);
}
table tr.success td {
	color: var(--green);
	background-color: #f8fff8;
}

table.align-top tr td {
	vertical-align: top;
}

table.nowrap tr td, table.nowrap tr th, table tr.nowrap td, table tr.nowrap th, table tr td.nowrap, table tr th.nowrap {
	white-space: nowrap;
}

table tr td.noborder, table tr.noborder td, table.noborder tr td {
	border: none;
}


table tr td.text-right, table tr th.text-right {
	text-align: right;
}

table.sort-table > thead > tr > th {
	cursor: s-resize;
}

td.hiddenRow {
	padding: 0 !important;
}

th.darker {
	background-color: #fafafa;
}
td.darker {
	background-color: #f8f8f8;
}

table tr td div.accordion-body {
	border-left: 1px solid #f8f8f8;
	padding: 20px;
	padding-bottom: 30px;
	background-color: #fafafa;
	white-space: normal;
}

table tr.accordion-toggle[aria-expanded=false] span.collapse-icon, table tr.accordion-toggle td[aria-expanded=false] span.collapse-icon {
	display: none !important;
}
table tr.accordion-toggle[aria-expanded=true] span.expand-icon, table tr.accordion-toggle td[aria-expanded=true] span.expand-icon {
	display: none !important;
}
table tr.accordion-toggle td[data-bs-toggle='collapse'], table tr.accordion-toggle span[data-bs-toggle='collapse'] {
	cursor: context-menu;
}
table tr.accordion-toggle[aria-expanded=true] td, table tr.accordion-toggle td[aria-expanded=true] {
	border-bottom: none;
}

table tr td div.accordion-body p {
	margin-bottom: 0.7rem;
	line-height: 1.4;
}

table tr td.wrap {
	white-space: normal;
}

.maxwidth700 {
	max-width: 700px;
}

.minwidth700 {
	min-width: 700px;
}

.width700 {
	width: 700px;
}

.width700important {
	width: 700px !important;
}


table tr td.grow {
	width: 100%;
}

table tr td.text-end, table tr th.text-end {
	text-align: right;
}

table tr td.maxwidth350 {
	overflow: hidden;
	max-width: 350px;
	text-overflow: ellipsis;
}

table tr td.maxwidth250 {
	overflow: hidden;
	max-width: 250px;
	text-overflow: ellipsis;
}

table tr td.maxwidth200 {
	overflow: hidden;
	max-width: 200px;
	text-overflow: ellipsis;
}

table tr td.maxwidth150 {
	overflow: hidden;
	max-width: 150px;
	text-overflow: ellipsis;
}
.maxwidth60 {
	overflow: hidden;
	max-width: 60px;
	text-overflow: ellipsis;
}

table tr.faded td {
	opacity: 0.3;
}
table tr.semi-faded td {
	opacity: 0.65;
}

table tr.sandbox td {
	color: var(--blue);
	opacity: 0.9;
}

table tfoot tr td, table tr.sumline td {
	border-top: 2px solid #eee;
	font-weight: bold;
}

div.expandableTable {
	max-height: 350px;
	overflow-y: hidden;
	position: relative;
}

div.expandableTable::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 290px;
	left: 0;
	pointer-events   : none;
	background-image : linear-gradient(to bottom,
	rgba(255,255,255, 0),
	rgba(255,255,255, 1) 90%);
	width: 100%;
	height: 60px;
}
.admin-only-section div.expandableTable::before {
	background-image : linear-gradient(to bottom,
	rgba(250,252,254, 0),
	rgba(250,252,254, 1) 90%);
	width: 100%;
}


div.expandableTable.expand {
	max-height: none;
	overflow-y: auto;
}
div.expandableTable.expand::before {
	display: none;
}

#signupModalContent div.accordion-collapse.collapsing {
	-webkit-transition: none;
	transition: none;
	display: none;
}


.table-count {
	margin-bottom: 3px;
	display: inline-block;
	font-size: 0.8rem;
	color: #666;
	margin-left: 5px;
}

table.discreet tr th {
	text-align: center;
	background: none;
	border-bottom: none;
}

td.commissionByStatusAdvertiserName {
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 3rem;
	text-align: left;
}

table.checklist-container tr td {
	padding: 15px 15px;
}
table.checklist-container span.google-icon {
	font-size: 40px;
}

table tr td.bg-gray {
	background-color: #f8f8f8;
}

.daterangepicker table tr td, .daterangepicker table tr th {
	padding: 0;
}

.daterangepicker {
	font-family: var(--font-family-normal) !important;
}

.truncate-column {
	max-width: 250px;
	cursor: pointer;
	vertical-align: top;
}

.truncate-column > div {
	max-height: 1.4em;
	overflow: hidden;
	line-height: 1.4em;
	white-space: pre;
}

.truncate-column.expanded {
	max-width: unset;
}

.truncate-column.expanded > div {
	max-height: none;
	overflow: visible;
}

tr td {
	max-height: none;
	overflow: visible;
}


@media (max-width: 575px) {
	table tr td, table tr th {
		font-size: 0.9rem;
	}
	table {
		width: 100%;
	}
	table tr td.xs-wrap {
		white-space: normal;
	}
	table.minwidth700 {
		min-width: 100%;
	}
	table.width700 {
		width: 100%;
	}
	td.commissionByStatusAdvertiserName {
		max-width: 169px;
		padding-right: 0;
	}
}
.tab-container {
	margin-top: 15px;
}

.tab-menu {
	display: inline-block;
	position: relative;
	top: 1px;
	height: 2.5rem;
	line-height: 2.5rem;
	border: 1px solid #ccc;
	min-width: 80px;
	text-align: center;
	background: #eee;
	color: #444;
	margin-left: 10px;
	padding: 0 10px;
	cursor: pointer;
	font-weight: var(--font-semibold);
	font-size: 0.9rem;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}
.tab-menu.tab-compact {
	min-width: unset;
	padding: 0 5px;
	margin-left: 5px;
}

.tab-compare-menu {
	font-weight: var(--font-semibold);
	font-size: 0.9rem;
}
.tab-menu.tab-menu-add {
	font-weight: var(--font-regular);
}

.tab-menu .flag, .tab-compare-menu .flag {
	position: relative;
	top: 3px;
}

.tab-menu-container {
	overflow-x: overlay;
	white-space: nowrap;
}

.tab-content {
	border-radius: var(--border-radius);
	border: 1px solid #ccc;
	padding: 15px;
}

.tab-content.hidden {
	display: none;
}

.tab-menu.selected {
	background: white;
	color: black;
	border-bottom: none;
}

.tab-container.tab-container-compare {
	display: flex;
	justify-content: space-between;
	gap: 12px;
}
.tab-content.tab-compare {
	display: inline-block !important;
	width: 100%;
	min-width: 400px;
}
.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.xtimeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #ddd;
    z-index: -1;
}

.milestone {
    position: relative;
    margin: 50px 0;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-out;
    text-align: center;
}

.milestone.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone-date {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.milestone-description {
    font-size: 1.1rem;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    z-index: 1;
}

.milestone::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: #ccc;
    z-index: 0;
}

.timeline .milestone:first-child::before, .timeline .milestone:first-child::after {
    display: none;
}

.milestone-image {
	width: 100%;
	margin-top: 10px;
}

.toaster {
	width: 250px;
	min-height: 60px;
	line-height: 60px;
	font-weight: bold;
	background-color: white;
	border-radius: 8px;
	position: fixed;
	padding: 10px;
	z-index: 999;
	bottom: -80px;
	right: 10px;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;

	border: 1px solid #ccc;
	border-left: 7px solid darkgreen;
	box-shadow: 2px 2px 5px rgb(0 0 0 / 0.07);

	-webkit-animation: toaster 5s linear;
	animation: toaster 10s linear;
}

@media (max-width: 575px) {
	.toaster {
		left: 10px;
		width: calc(100% - 20px);
	}
}

@-webkit-keyframes toaster {
	0% {bottom: -80px; opacity: 0;}
	5% {bottom: 10px; opacity: 1;}
	90% {bottom: 10px; opacity: 1;}
	100% {bottom: -80px; opacity: 0;}
}

@keyframes toaster {
	0% {bottom: -80px; opacity: 0;}
	5% {bottom: 10px; opacity: 1;}
	90% {bottom: 10px; opacity: 1;}
	100% {bottom: -80px; opacity: 0;}
}
.custom-tooltip, .custom-translate {
	position: relative;
	display: inline-block;
	opacity: 1;
}

#tooltip-groupby\[productId\].custom-tooltip {
	left: 100%;
	top: 0;
}

.custom-tooltiptext {
	visibility: hidden;
	width: 180px;
	white-space: wrap;
	font-size: 13px;
	bottom: 100%;
	left: 50%;
	margin-left: -50px; 
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 8px;
	border-radius: 8px;
	font-weight: normal;
	opacity: 1;
	font-weight: var(--font-regular);
	font-family: var(--font-family-normal);
	font-size: 0.9em;

	position: absolute;
	z-index: 999;
}
.daterange-arrows .custom-tooltip .custom-tooltiptext {
	margin-left: -85px; 
}

.custom-tooltiptext::after {
	content: " ";
	position: absolute;
	top: 100%;
	left: 29%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
}

.inline-input-tooltip.custom-tooltip .custom-tooltiptext::after {
	left: 84%;
}
.inline-input-tooltip.custom-tooltip .custom-tooltiptext {
	margin-left: -150px; 
}

.custom-tooltip:hover .custom-tooltiptext {
	visibility: visible;
}

[tooltip] {
	position: relative;
}

[tooltip] .custom-tooltip {
	position: absolute;
}

[tooltip] .custom-tooltiptext {
	margin-left: unset;
	bottom: unset;
	left: 50%;
	transform: translate(-29%, -105%);
}

[tooltip]:hover .custom-tooltiptext {
	visibility: visible;
}
:root {
	--alert-red: #ff3350;
	--alert-orange: #ffc107;
	--blue: #1c4ab0;
	--dark-blue: #0a2664;
	--light-blue: #3D7FFF;
	--superlight-blue: #e8eefa;
	--green: #44a542;
	--gray: #f8f8f8;
	--black: #000000;
	--headline-blue: #2a395a;
	--blue-gradient: linear-gradient(to left top, #1c4ab0 0%, #0a2664 100%);
	--light-blue-gradient-old: linear-gradient(to top left, #1c4ab0 0, #26c 50%, #0a2664 100%);
	--light-gray-gradient: linear-gradient(to top left, #ddd 0, #fff 100%);
	--black-gradient: linear-gradient(224deg, #0C183E 30%, #000000 80%);
	--light-blue-gradient: linear-gradient(90deg, #94D2FF 0%, #3EAEFF 25%, #285ABC 49.48%, #3D7FFF 75.78%, #2C9AFF 100%);
	--hero-gradient: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.7));

	--max-form-width: 500px;
	--border-radius: 5px;
	--button-border-radius: 50px;

	--green-gradient: linear-gradient(to left top, #44a542 0%, #328020 100%);

	--seagreen: #00b67a;
	--light-seagreen: #008e5f;
	--seagreen-gradient: linear-gradient(to left top, #008e5f 0%, #00b67a 100%);

	--font-extrabold: 700;
	--font-bold: 600;
	--font-semibold: 500;
	--font-medium: 500;
	--font-regular: 300;
	--font-thin: 200;
	
	--font-family-normal: Outfit, sans-serif;
	--font-family-header: Outfit, sans-serif;
	--font-family-mono: 'Fira Code';

	--status-new-color: #455c66;
	--status-new-bgcolor: #b2e7ff;
	--status-new-bordercolor: #b2e7ff;
	--status-new-bgcolor-light: rgb(200, 240, 255, 0.02);

	--status-test-color: white;
	--status-test-bgcolor: #222;
	--status-test-bordercolor: #333;
	--status-test-bgcolor-light: rgba(30,30,30,0.02);

	--status-active-color: #516751;
	--status-active-bgcolor: #AFE1AF;

	--status-pending-color: #666359;
	--status-pending-bgcolor: #FFF8DC;
	--status-pending-bordercolor: #ffd633;
	--status-pending-bgcolor-light: rgba(255,214,51,0.02);

	--status-delayed-color: #66584b;
	--status-delayed-bgcolor: #ffdcbd;

	--status-indialog-color: #775a6d;
	--status-indialog-bgcolor: #ffbde8;

	--status-payout-color: white;
	--status-payout-bgcolor: #48adc2;

	--status-denied-color: white;
	--status-denied-bgcolor: var(--alert-red);

	--status-paidout-color: white;
	--status-paidout-bgcolor: var(--green);
}
