/*
-----------------------------------------
Kalicube Metronic 8 Custom Style Sheet
-----------------------------------------

For questions, please email: jason@jasonbarnard.com

1. Global Edits
2. Hover Variations

-----------------------------------------
*/


/*
-------------------------------
1. Brand Colours Global Edits
-------------------------------
*/

:root {
	--kalicubeWhite: #ffffff;
	--kalicubeGreen: #339933;
	--kalicubeGold: #ff9900;
	--kalicubeViolet: #3e3a75;
	--kalicubeTeal: #3399cc;
	--kalicubePurple: #783366;
	--kalicubeYellow: #ffcc00;
	--kalicubeRed: #C11314;
	--kalicubeGray: #999999;
	--kWhiteTransparent: rgba(255, 255, 255,.9);
	--kWhiteTransparent2: rgba(255, 255, 255,.3);
	--kYellowTransparent: rgba(255, 204, 0, .5);
	--kGreenTransparent: rgba(51, 153, 51, .3);
	--kTealTransparent: rgba(51, 158, 204,.3);
	--kPurpleTransparent: rgba(120, 51, 102,.3);
	--kRedTransparent: rgba(193, 19, 20,.3);
	--kPurpleTransparent: rgba(120, 51, 102, .3);
	--kGrayTransparent: rgba(220, 220, 220, .3);
	--grayScaleGradient: linear-gradient(225deg, rgba(231,228,228,1) 0%, rgba(246,244,244,1) 35%, rgba(242,242,242,1) 100%);
	
	/* begin:: control colours */
	--fullControl: #113aab;
	--partialControl: #698df0;
	--indirectControl: #d4defb;
	--noneControl: #C6AC85;
	--pagecontrolid1: rgba(17, 58, 171, .4);
	--pagecontrolid20: rgba(105, 141, 240, .3);
	--pagecontrolid40: rgba(212, 222, 251, .4);
	--pagecontrolid50: rgba(198, 172, 133, .4);
	/* end:: control colours */

	/* begin:: sentiment colours */
	--positivesentiment: #1AB059;
	--neutralsentiment: #FFF3D3;
	--negativesentiment: #FBC9CE;
	--notthisentity: #D3D3D3;
	--pagesentimentid1: rgba(26, 176, 89, .3);
	--pagesentimentid20: rgba(255, 243, 211, .3);
	--pagesentimentid40: rgba(251, 201, 206,.3);
	--pagesentimentid999: rgba(211, 211, 211,.3);
	/* end:: sentiment colours */

	--googleBlue: #1a0dab;
	--googleBlack: #202124;
	--googleDescription: #4d5156;
	--titleFont: 'Fredericka the Great', cursive;
}

/*
-------------------------------------
Kalicube Brand Reusable Backgrounds
-------------------------------------
*/

.bg-kalicube-green {
	background-color: var(--kalicubeGreen) !important;
}

.bg-kalicube-gold {
	background-color: var(--kalicubeGold) !important;
}

.bg-kalicube-violet {
	background-color: var(--kalicubeViolet) !important;
}

.bg-kalicube-teal {
	background-color: var(--kalicubeTeal) !important;
}

.bg-kalicube-purple {
	background-color: var(--kalicubePurple) !important;
}

.bg-kalicube-yellow {
	background-color: var(--kalicubeYellow) !important;
}

.bg-kalicube-red {
	background-color: var(--kalicubeRed) !important;
}

.bg-kalicube-white {
	background-color: var(--kalicubeWhite) !important;
}

.bg-neutral-gray {
	background-color: var(--bs-gray-300);
}

.bg-transparent-yellow {
	background-color: var(--kYellowTransparent) !important;
}

.bg-transparent-green {
	background-color: var(--kGreenTransparent) !important;
}

.bg-transparent-red {
	background-color: var(--kRedTransparent) !important;
}

.bg-transparent-teal {
	background-color: var(--kTealTransparent) !important;
}

.bg-transparent-purple {
	background-color: var(--kPurpleTransparent) !important;
}

.bg-transparent-white {
	background-color: var(--kWhiteTransparent) !important;
}
.bg-transparent-gray {
	background-color: var(--kGrayTransparent) !important;
}

.bg-grayscale {
	background: var(--grayScaleGradient) !important;
}

.text-kalicube-green {
	color: var(--kalicubeGreen) !important;
}

.text-kalicube-red {
	color: var(--kalicubeRed) !important;
}

.text-kalicube-teal {
	color: var(--kalicubeTeal) !important;
}

.text-kalicube-purple {
	color: var(--kalicubePurple) !important;
}

.text-kalicube-yellow {
	color: var(--kalicubeYellow) !important;
}
.text-kalicube-gray {
	color: var(--kalicubeGray) !important;
}

.object-fit-cover {
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

.ltr {
	direction: ltr !important;
}

/*
--------------
Fonts
--------------
*/

.serp-h3 {
	font-family: Arial, Helvetica, sans-serif;
}

/*
-----------------
Hover Variations
-----------------
*/

.transition-all {
	transition: all .3s ease-in-out;
}

.hover-zoom,
.hover-zoom-image img {
	transform: scale(1);
	transition: all .3s ease-in-out; 
	cursor: pointer;
}

.hover-zoom:hover,
.hover-zoom-image:hover img {
	transform: scale(1.05);
}

.hover-pointer {
	cursor: pointer !important;
}

.hover-bg:hover {
	background: var(--grayScaleGradient);
}

.outline-hover {
	outline: 1px solid transparent;
	transition: all .3s ease-in-out;
}

.outline-hover:hover {
	outline: 1px solid #ddd;
	outline-offset: -20px;
}

/*
---------------------
Image Custom Classes
---------------------
*/

.invert-img {
	filter: invert(1) !important;
}


   /* Rotate image by -5 degrees */
   .rotate-minus5 {
     transform: rotate(-5deg);
     transform-origin: center center;
   }

/*
-----------------------------
Reusable Classes
-----------------------------
*/
.text-wrap {
	white-space: pre-wrap !important;
}

.border-left, 
.border-right {
	position: relative;
}

.border-left:before, 
.border-right:before {
	content: '';
	position: absolute; 
	top: 50%; 
	height: 50%; 
	width: 1px;
	transform: translateY(-50%);
	background: #333;
}

.border-right:before {
	right: 0 !important;
}

.border-left:before {
	left: 0 !important;
}

.content-block {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
}

.cover-image.content-block {
	background-size: cover !important; 
	background-repeat: no-repeat !important;
	background-position: center center !important;
}

.color-overlay .row>div {
	z-index: 1; 
	position: relative;
}

.white-overlay:before {
	content: ''; 
	position: absolute;
	top: 0; 
	left: 0; 
	height: 100%; 
	width: 100%; 
	background: var(--kWhiteTransparent);
}

.purple-overlay:before {
	content: ''; 
	position: absolute;
	top: 0; 
	left: 0; 
	height: 100%; 
	width: 100%; 
	background: var(--kPurpleTransparent);
}

.dark-bg:before {
	content: ''; 
	position: absolute;
	top: 0; 
	left: 0; 
	height: 100%; 
	width: 100%; 
	background: rgba(0,0,0,.8);
}

.tooltip {
	pointer-events: none !important;
}

.task-done {
	background: var(--kGreenTransparent) !important;
}

/*
----------------------------
Customised Sticky Header
----------------------------
*/

.brandserp-dropdown {
	transition: all .3s ease-in-out;
	position: relative;
}

.tiny-font {
	font-size: 5px !important;
}

.sticky-dropdown {
	position: relative;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.sticky-dropdown .brandserp-dropdown {
		position: sticky;
		top: 65px;
		z-index: 96;
		transition: all .3s ease-in-out;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.toolbar {
		transition: all .3s ease-in-out;
	}

	.sticky-dropdown .toolbar {
		opacity: 0; 
		pointer-events: none;
	}
}

/*
------------------------
Effects
------------------------
*/
.grayscale {
filter: grayscale(25%); /* Standard */
-webkit-filter: grayscale(25%); /* Webkit */
filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale"); /* Firefox4-34*/
filter: gray;  /* IE6-9 */
-webkit-filter: grayscale(0.25); /* Old WebKit */
}
/*
------------------------
Public SERP
------------------------
*/

.anchor-tag a {
	transition: all .3s ease-in-out;
}

.anchor-tag .bi:before {
	transform: scale(0) rotate(90deg);
	margin-right: 0;
	transition: all .3s ease-in-out;
}

.anchor-tag>div:hover .bi:before {
	transform: scale(1) rotate(90deg);
	margin-right: 10px;
}

/*
---------------------------------
Brand SERP Section Custom CSS
---------------------------------
*/

.serpdiv { 
	text-align: left; 
	position: relative;
	border: 1px solid rgba(221, 221, 221,.8);
	transition: all .5s ease-in-out;
}

.serpdiv .sectionHeading {
	background: rgba(221, 221, 221,.8);
}

.active-control .sectionHeading, 
.active-sentiment .sectionHeading {
	background: transparent !important;
}

.serpdiv a {
	display: inline-block;
}

.left_right_div .right .serpdiv {
	background-color:#BA960A10; 
	color:#251f1f; 
	text-align: left;
}

.serp-indicator {
	cursor: pointer;
	position: relative;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center; 
	align-items: center;
	margin-right: 8px;
	transition: background-color 1s ease-in-out;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, .3), inset 0px 1px 1px 1px white, inset 0px -1px 1px 1px rgba(204,198,197,.5);
	pointer-events: initial;
}

/* begin:: SERP Indicator Classes || Colours*/

div[data-sentiment="1"] {
	background-color: var(--positivesentiment) !important;
}

div[data-sentiment="20"] {
	background-color: var(--neutralsentiment) !important;
}

div[data-sentiment="40"] {
	background-color: var(--negativesentiment) !important;
}

div[data-sentiment="999"] {
	background-color: var(--notthisentity) !important;
}

div[data-control="1"] {
	background-color: var(--fullControl) !important;
}

div[data-control="20"] {
	background-color: var(--partialControl) !important;
}

div[data-control="40"] {
	background-color: var(--indirectControl) !important;
}

div[data-control="50"] {
	background-color: var(--noneControl) !important;
}

li.pagecontrolid1,
span[data-control="1"],
.bg-full-control {
	background-color: var(--fullControl) !important;
	color: var(--kalicubeWhite) !important;
}

li.pagecontrolid20,
span[data-control="20"],
.bg-partial-control {
	background-color: var(--partialControl) !important;
	color: var(--kalicubeWhite) !important;
}

li.pagecontrolid40,
span[data-control="40"],
.bg-indirect-control {
	background-color: var(--indirectControl) !important;
}

li.pagecontrolid50,
span[data-control="50"],
.bg-none-control {
	background-color: var(--noneControl) !important;
	color: var(--kalicubeWhite) !important;
}

.bg-notthisentity-control {
	background-color: var(--notthisentity) !important;
}

.pagecontrolid1 {
	background-color: var(--pagecontrolid1) !important;
	outline: 1px solid var(--fullControl);
}

.pagecontrolid20 {
	background-color: var(--pagecontrolid20) !important;
	outline: 1px solid var(--partialControl);
}

.pagecontrolid40 {
	background-color: var(--pagecontrolid40) !important;
	outline: 1px solid var(--indirectControl);
}

.pagecontrolid50 {
	background-color: var(--pagecontrolid50) !important;
	outline: 1px solid var(--noneControl);
}

.bg-positive-sentiment {
	background-color: var(--positivesentiment) !important;
}

.bg-neutral-sentiment {
	background-color: var(--neutralsentiment) !important;
}

.bg-negative-sentiment {
	background-color: var(--negativesentiment) !important;
}

.bg-notthisentity-sentiment {
	background-color: var(--notthisentity) !important;
}

.pagesentimentid1 {
	background-color: var(--pagesentimentid1) !important;
	outline: 1px solid var(--positivesentiment);
}

.pagesentimentid20 {
	background-color: var(--pagesentimentid20) !important;
	outline: 2px solid var(--neutralsentiment);
}

.pagesentimentid40 {
	background-color: var(--pagesentimentid40) !important;
	outline: 1px solid var(--negativesentiment);
}
.pagesentimentid999 {
	background-color: var(--notthisentity) !important;
	outline: 1px solid var(--notthisentity);
}

/* end:: SERP Indicator Classes || Colours */

.animate-check {
	display: block !important;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #000;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #000;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #000;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  display:none;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  display: none;
}

@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 30px var(--kWhiteTransparent2);
  }
}

/* begin:: Classify & Corroboration Page Control Dropdown */

.parent_li {
	transition: all .3s ease-in-out;
}

.outline_incomplete_open,
.outline_incomplete_close {
	border: 3px solid var(--kalicubeTeal) !important;
}

.outline_incomplete_close,
.kplist-wrapper .kplist-collapse.collapsed {
	transition: all .3s ease-in-out;
	transition-delay: .2s;
	overflow: hidden;
	transform: scaleY(0);
	display: none;
}


.collapse-toggle {
	display: none;
}

.kplist-wrapper .collapse-toggle {
	display: flex !important;
}

.kplist-wrapper .bg-neutral-gray {
	background-color: var(--kTealTransparent) !important;
}

.kplist-wrapper .list-unstyled .parent_li.completed {
	background-color: var(--kGreenTransparent) !important;
}

.collapse-toggle>.bi {
	color: var(--kalicubePurple);
	transition: all .3s ease-in-out;
	transform: rotate(180deg);
}

.collapse-toggle.hidden-content>.bi {
	transform: rotate(0deg);
}

.kplistsort-pagecontrol-wrapper {
	top: 0;
	right: 10px;
}

.kplistsort-pagecontrol-wrapper .select2-container--classic .select2-selection--single .select2-selection__arrow {
	display: none;
}

.kplistsort-pagecontrol-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
	font-size: 0;
}

.kplistsort-pagecontrol-wrapper .select2-container {
	min-width: 200px;
}

.kplistsort-pagecontrol-wrapper .select2-container .select2-selection--single {
	cursor: pointer;
  position: relative;
  height: 20px;
  width: 20px;
  display: block;
  margin-bottom: 10px;
  background-color: #ddd;
  transition: background-color 1s ease-in-out;
  box-shadow: 0px 2px 3px 0px rgb(0 0 0 / 30%), inset 0px 1px 1px 1px white, inset 0px -1px 1px 1px rgb(204 198 197 / 50%);
	float: right;
	border-radius: 4rem !important;
	background-image: none !important;
	border: 0 !important;
}

.kplistsort-status {
	background: var(--kWhiteTransparent);
	position: absolute; 
	top: 0;
	left: 0; 
	height: 100%; 
	width: 100%; 
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#dot-content {
	width: 180px;
	height: 75px;
	position: relative;
}

@keyframes swing {
    0% { top: 0; }
    50% { top: 25px; }
    100% { top: 0; }
}

#dot {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	margin: auto;
	background-color: var(--kalicubeRed);
	border-radius: 50px;
	animation-name: swing;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* end:: Classify & Corroboration Page Control Dropdown*/

.serp-h3, 
.serp-link-overflow {
	color: var(--googleBlue);
	font-weight: 400; 
	font-size: 16px;
	transition: all .2s ease-in-out;
}

.serp-slider #rightrail1 .sectionHeading.p-2,
.serp-slider #rightrail2 .sectionHeading.p-2 {
	padding-top: 18px !important;
}

.serp-slider .serp-h3, 
.serp-slider .serp-link-overflow {
	display: inline-block;
	font-size: 10px;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.serp-slider .serpdiv>.sectionHeading>.serprichelementtitle {
	font-size: 10px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.serp-slider .right .serpdiv>.sectionHeading {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.serp-h3:hover, 
.serp-link-overflow:hover {
	color: var(--googleBlue);
	text-decoration: underline !important;
}

.serpdescription {
	color: var(--googleDescription);
}

.serpblock-indicator-wrapper {
	position: absolute;
	top: 10px; 
	right: 5px;
}

.serp-desc { 
	padding: 15px 15px 10px;
	position: relative;
}

.serp-desc.organic {
	pointer-events: none;
}

.serp-url {
	pointer-events: initial;
	display: inline-block;
}

.serp-desc>span {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	pointer-events: initial;
}

.serp-desc>ul>span {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	width: 100%;
}

.google-logo {
	width: 15%;
}

.search-wrapper {
	width: 80%; 
	border-radius: 4rem;
	box-shadow: 0 2px 5px 1px rgb(64 60 67 / 16%);
}

.google-icon {
	width: 100%;
}

.google-label .item {
	color: #5f6368;
}

.serp-grade-images img {
	width: 100% !important;
}

.progress-bar {
	transition: width 1s ease-in-out;
}

.progress-bar-0 {
	width: 0 !important;
}

.stepper-nav>a {
	position: relative;
}

.stepper.stepper-pills.stepper-column .stepper-nav>a .stepper-line {
  display: block;
  content: " ";
  justify-content: center;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0 !important;
  bottom: 0 !important;
  width: 40px;
  transform: translate(50%);
  border-left-width: 1px;
  border-left-style: dashed;
  border-left-color: #E4E6EF;
}

.stepper.stepper-pills.stepper-column a:first-child .stepper-item .stepper-line {
  top: 50% !important;
}

.stepper.stepper-pills.stepper-column a:last-child .stepper-item .stepper-line {
  bottom: 50% !important;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.three_columns {
		flex-direction: row; 
	}

	.columns_hold {
		width: 33.33%;
	}
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.webpageLayout {
		padding: 40px;
	}
}

.serpdescription .form-control {
	margin-bottom: 40px;
}

/*
-----------------------
Rich Element Styling
-----------------------
*/
.rich-elements-table>span {
	display: inline-block; 
	width: 50%;
	margin-bottom: 5px;
}

.rich-elements-table {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.rich-elements-table>div {
	width: 50%;
}

/*
-----------------
Related Search
-----------------
*/
.related-search-item img {
	display: none;
}

.related-search-item a,
.related-search-item a:hover {
	color: var(--googleBlack);
	position: relative;
	background: var(--bs-gray-300);
	padding: 10px;
	border-radius: 4rem;
	padding-left: 50px !important;
}

.related-search-item a:before {
	content: '';
	font-family: bootstrap-icons !important;
	position: absolute; 
	left: 25px;
	top: 50%; 
	transform: translateY(-50%);
	font-size: 12px;
}

/* historical related search */
.serp-slider .related-search-item>span>a,
.serp-slider .related-search-item>span>a:hover {
	padding-left: 20px !important;
	font-size: 8px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.serp-slider .serp-url {
	font-size: 10px;
	max-width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.serp-slider .serp-desc>p,
.serp-slider .knowledge-details p {
	font-size: 8px;
}

.serp-slider .related-search-item>span>a:before {
	left: 10px;
	font-size: 8px;
}

/*
------------------------
Historical Brand SERP
------------------------
*/

.serp-slider .serpdiv>span {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	white-space: nowrap;
	overflow: hidden;
	padding: 0.75rem !important;
}

.serp-slider .serprichelementtitle,
.serp-slider ul.liststyleNone.knowledge-details .cbox, 
.serp-slider ul.liststyleNone.knowledge-links p, 
.serp-slider ul.liststyleNone.knowledge-links p a {
	font-size: 8px;
}

.serp-history-block {
	position: relative; 
	cursor: pointer;
}

.serp-history-tooltip {
	position: absolute; 
	bottom: 0;
	display: block;
	height: auto;
	width: 150%; 
	left: 50%; 
	box-sizing: border-box;
	transform: scaleY(0) translateX(-32%);
	transition: all .3s ease-in-out;
	transition-delay: .2s;
	z-index: 999;
	margin-bottom: 55px;
}

.serp-history-block:hover .serp-history-tooltip {
	transform: scaleY(1) translateX(-32%);
}

.serp-history-tooltip.w-200 {
	width: 200%;
	left: 50%;
	transform: scaleY(0) translateX(-50%);
}

.serp-history-block:hover .serp-history-tooltip.w-200 {
	transform: scaleY(1) translateX(-50%);
}

.serp-history-tooltip>div {
	position: relative;
}

.serp-history-tooltip>div:before {
	content: '';
	position: absolute;
	bottom: -10px;
	height: 20px;
	width: 20px;
	left: 50%; 
	background: var(--bs-gray-300);
	transform: translateX(-50%) rotate(-45deg);
	transform-origin: center center;
}

.serp-history-tooltip .serpdescription {
	font-size: 10px;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.device-indicator {
		position: absolute; 
		top: 0; 
		right: 0; 
		bottom: 0;
	}
}

.serp-link-overflow { 
	width: calc(100% - 30px); 
	max-width: 600px; white-space: 
	nowrap; text-overflow: ellipsis; 
	overflow: hidden;
}

#rightrail1 {
	min-height: 200px;
}

.serp-slider .serpblock-indicator-wrapper {
	top: 5px;
	right: 0;
}
/*
----------------------------
Select-2 Plugin Custom CSS
---------------------------
*/
.select2-container .select2-selection--single {
	height: 40px;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	line-height: 38px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	height: 38px;
}

.select2-container--classic .select2-results__option--highlighted.page-type-hover {
	color: #000;
	opacity: .7;
	transition: all .3s ease-in-out;
}

/*
------------------------
Help Text Icon Styling
------------------------
*/

.help-text-cta {
	position: relative;
	height: 25px;
	width: 25px;
	display: inline-block;
}

.help-text-cta .help-icon {
	color: var(--kalicubeWhite);
	background: var(--kalicubeTeal);
	height: 25px;
	width: 25px;
	cursor: pointer;
	font-size: 18px;
	transition: all .3s ease-in-out;
	border: 2px solid var(--kalicubeWhite);
	top: 0; 
	left: 0;
	z-index: 2; 
	position: absolute;
}

.help-text-cta .help-title {
	height: 25px; 
	width: 25px;
	color: var(--kalicubeTeal);
	white-space: nowrap;
	overflow: hidden;
	background: var(--kalicubeTeal);
	padding-left: 25px;
	top: 0; 
	left: 0;
	z-index: 1;
	transition: all .3s ease-in-out;
	font-weight: 300 !important;
	font-size: 9px;
}

.help-text-cta:hover .help-title {
	width: auto;
	padding-right: 20px;
	padding-left: 30px;
	color: var(--kalicubeWhite);
}

html {
  scroll-behavior: smooth;
}

/*
----------------------
Task SERP URL Form
----------------------
*/

.show-serp-form {
	transform: scaleY(1) !important;
	height: auto !important;
	opacity: 1 !important;
}

.serp-url-form {
	transition: transform .3s ease-in-out;
}

/*
-----------------------------
Code Mirror Editor Styling
-----------------------------
*/
.CodeMirror {
	border: 1px solid #cfcfcf;
	border-radius: 6px;
}

/*
----------------------------
Custom Modals
----------------------------
*/

.modal-close-div {
	position: absolute !important; 
	top: 0; 
	left: 0; 
	height: 100% !important; 
	width: 100% !important;
}

.custom-message-modal {
	position: fixed; 
	top: 0; 
	left: 0; 
	height: 100%; 
	width: 100%; 
	background: rgba(0,0,0,.6);
	z-index: 9999; 
}

/*
---------------------------
corroboration-sort button
---------------------------
*/

.card>.serp-btn-div {
	display: flex;
	flex-direction: column;
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	.card>.serp-btn-div {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
}

.card>.serp-btn-div button {
	font-size: 12px;
	white-space: nowrap;
	height: 45px;
	margin-bottom: 5px;
}

.wrap.serpurl {
	top: 48px;
	right: 19%;
}

.last-seen-span {
	top: 10px;
	right: 15px;
}

/*
------------------------------
Copywriting Sandbox Styling
------------------------------
*/

#copywritinginfo>pre {
	padding: 40px !important;
	background: #fff !important;
	border-radius: 10px !important;
}

/*
-----------------------------------------------
SERP Control & Sentiment Report Toggle Switch
-----------------------------------------------
*/

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.kalicube-toggle {
	border: 0; 
	background: transparent;
}

.kalicube-toggle.active + .toggle {
  background-color: #2196F3;
}

.kalicube-toggle.active + .toggle {
  box-shadow: 0 0 1px #2196F3;
}

.kalicube-toggle.active + .toggle:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.toggle.round {
  border-radius: 34px;
}

.toggle.round:before {
  border-radius: 50%;
}

/*
-----------------------------------------------
Compact View Custom CSS
-----------------------------------------------
*/

.compact-view .google_webpage_background.py-7 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.compact-view .compact-view-hide,
.compact-view .sectionHeading:not(.rich-element-header),
.compact-view .serpblock-indicator-wrapper,
.compact-view .serp-desc>p:not(.serprichelementtitle),
.compact-view .related-search-wrapper,
.compact-view .serprichelementtitle>img,
.compact-view .serpdescription,
.compact-view .google-label,
.compact-view .device-indicator,
.compact-view-device {
	display: none !important;
}

.compact-view .compact-view-device {
	display: block !important;
	margin-top: 1.25rem;
}

.compact-view .serp-url,
.compact-view .serp-h3,
.compact-view .serp-link-overflow,
.compact-view .serprichelementtitle {
	font-size: 13px !important;
}

.compact-view .rich-element-header {
	display: flex; 
	flex-direction: row; 
	justify-content: flex-start;
	align-items: center;
}

.compact-view .rich-element-header .image {
	height: auto !important;
	width: auto !important;
	min-height: 0;
	line-height: 0;
}

.compact-view .rich-element-header img {
	width: 18px !important;
}

.compact-view .rich-element-header .serprichelementtitle {
	font-size: 11px !important;
}

.compact-view .serp-h3 {
	white-space: nowrap !important;
}

.compact-view .serprichelementtitle>span,
.compact-view .knowledge-details li>div {
	color: var(--bs-gray-600);
	font-size: 12px !important;
	display: block;
}

.compact-view .serp-desc {
	padding: 10px !important;
}

.compact-view .rich-elements-table .serp-desc {
	padding: 5px !important;
}

.compact-view .serp-slider .related-search-item>span>a, 
.compact-view .serp-slider .related-search-item>span>a:hover {
	width: 100% !important;
	padding-left: 25px !important;
}

.compact-view .related-search-item a, 
.compact-view .related-search-item a:hover {
	padding: 5px !important;
}

.compact-view .serpdiv.mb-2,
.compact-view .serpdiv.mb-5 {
	margin-bottom: 0 !important;
}

.compact-view hr {
	margin-top: 0 !important;
}

/*
------------------
Not this Entity
------------------
*/

.serpdiv.disabled {
	outline: 1px solid #ddd !important;
	position: relative;
	background: #edf2ef !important;
}

.serpdiv.disabled .sectionHeading,
.serpdiv.disabled .serp-desc {
	opacity: .5 !important;
}

.serpdiv.disabled:before {
	content: 'Not this entity';
	position: absolute;
	top: 0;
	left: 0; 
	height: 100%; 
	width: 100%; 
	display: flex; 
	flex-direction: column;
	justify-content: center; 
	align-items: center; 
	color: #fff;
	font-size: 72px;
	opacity: .3;
}

.active-sentiment.disabled:before,
.active-control.disabled:before {
	color: #fff !important;
}

.serp-slider .serpdiv.disabled:before {
	font-size: 24px;
}

.serpdiv.disabled .serp-url,
.serpdiv.disabled .serp-h3,
.serpdiv.disabled .serpdescription,
.serpdiv.disabled .serprichelementtitle,
.serpdiv.disabled .serp-desc p,
.serpdiv.disabled .knowledge-details .cbox,
.serpdiv.disabled .serp-link-overflow {
	color: #808B96 !important;
}

.serpdiv.disabled .image-domain,
.serpdiv.disabled .image .icon,
.serpdiv.disabled .serprichelementtitle img {
	filter: grayscale(1) !important;
	opacity: .5 !important;
}

/*
--------------------------
Terms of Service | Legal
--------------------------
*/

.anchor-tag {
	display: block;
}


/* --- End of Kalicube Metronic 8 Custom Style Sheet --- */

.mobile-menu-close {
	position: absolute;
	top: 0; 
	right: 0; 
	padding: 20px;
	display: block;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.mobile-menu-close {
		display: none;
	}
}


/*p {font-size: 1em; margin: 0 0 10px; line-height: 1.25; word-break: break-word;}
*/input:focus, button:focus, select:focus {outline: 0;}
img {max-width: 100%; height: auto}
.liststyleNone {list-style: none; padding-left: 0; margin-top: 0;}


/** Helpful classes **/
.blue-text { color: #3599cb;}

.float-right { float: right;}
.float-left { float: left;}

.hidden {display: none !important;}


.corroboration-box {
    background-color: var(--kGrayTransparent) !important;
    margin: 10px 40px 10px 40px;
    padding: 10px;
}


.clearBoth:before, 
.clearBoth:after {
	content: ''; 
	display: 
	table; 
	clear: both;
}

.vertical-middle { vertical-align: middle; !important;}

.serprichelementtitle span, .equalColumns ul li .cbox {font-weight: normal;}
.serpholdercolumn ol {line-height:1.5;margin: 0; padding-left: 0; list-style-position: inside;}
.serpholdercolumn ol li {padding: 10.5px 10px;cursor: pointer;}
.serpholdercolumn ol li a {color: #000;cursor: pointer;}
.serpholdercolumn ol li:hover {background-color: #3399cc; color: #fff;}
.serpholdercolumn ol li:hover a {color: #fff;}

.sectionHeading .image {width: 40px;}
.sectionHeading .image, .sectionHeading .serprichelementtitle {display: inline-block; vertical-align: middle;}
.sectionHeading .serprichelementtitle {font-weight: normal; margin-left: 15px}

.serph3 a {color: #246996; text-decoration: underline;}

.border-box .sectionHeading {padding: 5px;}
.border-box .sectionHeading.nobg {background: transparent; padding: 0;}


.serpdomain {color: #000; display: block; margin-bottom: 5px;}



.change-arrow { vertical-align:middle; color:#ccc;}
img.image-domain { vertical-align: top; margin-right: 5px;width:15px !important;}
.picto-image { width: 60px; vertical-align: middle; padding: 5px;}

p.serprichelementtitle * { display: inline;}
ul.liststyleNone.knowledge-details,ul.liststyleNone.knowledge-links { margin: 20px 0px;}
ul.liststyleNone.knowledge-links img {
	display: inline-block;
	margin-bottom: 10px;
	max-width: 25px;
}
ul.liststyleNone.knowledge-details li {	padding: 0px;}
ul.liststyleNone.knowledge-links p, ul.liststyleNone.knowledge-links p a { margin: 0px;}
ul.liststyleNone.knowledge-details .cbox, ul.liststyleNone.knowledge-links p, ul.liststyleNone.knowledge-links p a { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }

#serp-histories, 
.kp-slider {
	display: flex;
	flex-direction: row;
	overflow-x: auto;
	direction: rtl;
	padding-bottom: 40px;
}
#serp-histories>div,
.kp-slider>div {
	width: 100%;
	align-self: flex-start;
	margin-left: 10px;
}
@media only screen and (min-width : 992px) {
	#serp-histories>div,
	.kp-slider>div {
		width: 50%;
		max-width: 512px;
	}
}
/* width */
.kp-slider::-webkit-scrollbar,
#serp-histories::-webkit-scrollbar, 
#country-knowledge-div::-webkit-scrollbar { 
	width: 20px;
	height: 15px;
}

/* Track */
.kp-slider::-webkit-scrollbar-track,
#serp-histories::-webkit-scrollbar-track, 
#country-knowledge-div::-webkit-scrollbar-track { 
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
}

/* Handle */
.kp-slider::-webkit-scrollbar-thumb,
#serp-histories::-webkit-scrollbar-thumb, 
#country-knowledge-div::-webkit-scrollbar-thumb { 
	background: #3599cb; 
	border-radius: 10px;
}

/* Handle on hover */
.kp-slider::-webkit-scrollbar-thumb:hover,
#serp-histories::-webkit-scrollbar-thumb:hover, 
#country-knowledge-div::-webkit-scrollbar-thumb:hover { 
	background: #246996; 
	transition: all .3s ease-in-out;
}

.wrap.serpurl .fancy-button.red-button { padding: 9px 10px 6px !important;}
.wrap.serpurl .fancy-button.red-button * { vertical-align: middle; display: inline-block;}
.wrap.serpurl .fancy-button.red-button:hover img { 	content: url(../images/bucket-icon-red.png);}



/*START : purchase success*/
.purchase-success * { box-sizing: border-box;}
.purchase-success {	background-color: #f1f1f1;}
.purchase-success form { background-color: #ffffff;	font-family: Ubuntu; min-width: 300px;}
.purchase-success h1 { text-align: center;}
.purchase-success input { padding: 10px; width: 100%; font-size: 17px; font-family: Ubuntu; border: 1px solid #aaaaaa;}
/* Mark input boxes that gets an error on validation: */
.purchase-success input.invalid { background-color: #ffdddd;}
/* Hide all steps by default: */
.purchase-success .tab { display: none;	transition: opacity 0.15s linear, transform 0.15s linear, right 0s .15s;}
.purchase-success button { background-color: #04AA6D; color: #ffffff; border: none; padding: 10px 20px; font-size: 17px; font-family: Ubuntu; cursor: pointer;}
.purchase-success button:hover { opacity: 0.8;}
.purchase-success #prevBtn { background-color: #bbbbbb;}
/* Make circles that indicate the steps of the form: */
.purchase-success .step { height: 15px;	width: 15px; margin: 0 2px;	background-color: #bbbbbb;	border: none; border-radius: 50%; display: inline-block;	opacity: 0.5;}
.purchase-success .step.active { opacity: 1;}
/* Mark the steps that are finished and valid: */
.purchase-success .step.finish { background-color: #04AA6D;}
.purchase-success span.select2-selection.select2-selection--single { width: 250px;}
/*END : purchase success*/

form#filterform.corroboration div .select2.select2-container { margin-right: 5px;}
form#filterform.corroboration  { display: inline-flex; vertical-align: middle;}
form#filterform.corroboration div { margin-right: 5px; margin: auto; }

ul.partners { list-style-type: none; display: inline;}
ul.partners li { display: inline-block; margin: 5px 5px 15px;}
ul.partners li a { background: #fff; padding: 10px 15px 15px; color: #000; border-radius: 30px;}
ul.partners li a b { font-size: 15px;}
ul.partners li a img { vertical-align: middle; margin-right: 5px;}
ul.partners li a:hover {color: #3398cc; border-color: #3398cc; text-decoration: none;}
ul.partners li a:hover img { opacity: 1;}

body.responsive form.mj-form { overflow: initial;}
.mj-embedded.mj-embed-shadow.mockup-content.mj-horizontal { height: 100% !important;}

#chart_div { width:100%; height:500px; max-width: 1000px; margin: 0 auto;}


/*min-width-responsive*/
@media(min-width: 481px) {
    .kgsearchform .newButton {width: auto;}
    #contact .col.span_2_of_3 h3 {font-size: 26px;}
}
@media(min-width: 641px) {
    .form_search_result table td:first-child {width: 185px;}
    .heading p {margin: 0; font-size: 22px;}
    .trustedSource .standardform select {width: calc(33.3% - 25px);     margin: 0 0 20px; padding: 12px 12px;}
    .trustedSource .standardform select[name="type"] {margin: 0 37px;}
    .trustedSource .standardform select, #regionchooser {background-position: 93% center;}
    .columns {display: inline-block; border: none; width: calc(50% - 4px); vertical-align: middle;}
    .firstDiv ul {-webkit-column-count: 2;-moz-column-count: 2;column-count: 2;}
    .firstDiv .right + p {clear: both;}
    #schemaform .input_button_group .schemaforminput {width: calc(100% - 116px);}
    .formGroup .schemaformblock .fancy-button.newButton, .formGroup .input_button_group .fancy-button.newButton {display: inline-block; width: auto;}
    .columns_three .row {display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;}
    .columns_three .row .col {width: calc(50% - 10px); max-width: 100%;}
    .lastDiv figure {padding: 48px 5px 48px 250px; text-align: left;}
    figure.wp-block-image.size-large:before {opacity: 0;}
    .two_columns {display: flex; flex-wrap: wrap; margin-bottom: 5px;}
    .two_columns div {width: calc(50% - 40px);margin: 0 20px;}
    .two_columns div.column {width: calc(50% - 20px); margin: 0 20px;}
    .two_columns div.column:nth-child(odd) {margin-left: 0;}
    .two_columns div.column:nth-child(even) {margin-right: 0;}
    .brand2urlform .blue-button {float: left; width: auto; padding: 14.5px 30px; /*margin-left: 10px; width: 150px;*/}
    .brand2urlform .blue-button + div {clear: both; padding: 15px 0 0 0; display: block;}
}
@media(min-width: 769px) {
    main {margin-top: 86px}
    .firstsection {padding: 110px 0 30px;}
    #header-nav ul li ul {max-height: max-content !important; width: 200px; transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s; transform: translateY(1rem); display: block; right: 999em; left: auto; background: #fff; box-shadow: 5px 5px 5px rgb(0 0 0 / 5%), 5px 5px 5px rgb(0 0 0 / 15%);}
    #header-nav ul li:hover>ul {right: -8px; opacity: 1; transform: translateY(0.6rem); transition: opacity 0.15s linear, transform 0.15s linear;}
    #header-nav ul li ul:after, #header-nav ul li.sub_menu_parent>a:after {content: ""; display: block; position: absolute; bottom: 100%; border: 0.6rem solid transparent; border-bottom-color: #c84e0e; right: 1.8rem;}
    #header-nav ul li.sub_menu_parent {position: relative;}
    #header-nav ul li.sub_menu_parent>a:after {transform: translate(3px, 36px) rotate(90deg);right: 0;}
    #header-nav ul li:hover>ul li:hover>ul {opacity: 1; right: auto; left: 101%; transform: none; top: 10px; max-height: 420px; overflow-y: auto; box-shadow: 1px 2px 15px rgb(0 0 0 / 5%);}
    #header-nav ul li:hover>ul li.brand-serp:hover>ul {left: auto; right: 101%;}
    #header-nav ul li.sub_menu_parent.brand-serp>a:after {display: none;}
    #header-nav ul li.sub_menu_parent.brand-serp>a:before {content: ""; display: block; position: absolute; bottom: 100%; border: 0.6rem solid transparent; border-bottom-color: #c84e0e; transform: translate(3px, 36px) rotate(270deg);left: -10px;}
    #header-nav ul li.sub_menu_parent>ul.tasks-menu { transition : opacity 0.15s linear, transform 0.15s linear, right 0s .15s; width: 300px;}
    #header-nav ul li.sub_menu_parent>ul li a>img, #header-nav ul li.sub_menu_parent>ul li a>span{ vertical-align: middle}
    #header-nav ul li.sub_menu_parent.knowledge-panel span.box { padding: 3px 5px; background: #3599cb;	color: #fff; margin: auto 5px auto 0px;	}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task img.success-img { float: right;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task:hover { background: #3599cb;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task:hover img { opacity: 1;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task:hover span { color: #fff;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task:hover span.box{ background: #fff;	color: #3599cb;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done { background: #E1F4E1;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done span { color: #538f0d;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done span.box { background: #558f12; color: #fff;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done:hover { background: #558f12;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done:hover>a { background: #558f12;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done:hover span { color: #E1F4E1;}
    #header-nav ul li.sub_menu_parent.knowledge-panel>ul li.task.task-done:hover span.box { background: #fff; color: #558f12;}
    #header-nav ul li ul li:hover { background: #3599cb;}
    #header-nav ul li ul li:hover>a { background: #3599cb; color: #fff;}
    /* width */
    #header-nav ul li ul li ul::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    #header-nav ul li ul li ul::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    #header-nav ul li ul li ul::-webkit-scrollbar-thumb {
        background: #888;
    }

    /* Handle on hover */
    #header-nav ul li ul li ul::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    #header-nav ul li ul li ul:after {display: none;}
    #header-nav ul li ul li {padding: 10px 18px;}
    .form_search_result .searchTitle h3 {font-size: 22px;}
    #contact .col.image {width: 187px; position: relative;}
    #contact .col.image img {margin: 0;}
	  #contact .col.span_2_of_3 {width: 81.35%; padding:0 0 0 93px;  text-align: left;}
    #contact.section.group {display: table; width: 100%;}
    #contact .col {display: table-cell; vertical-align: middle; float: none; margin: 0;}
    #contact .col.span_2_of_3 h3 {font-size: 32px;}
    .trustedSource .pagesection-inner h1 {margin-bottom: 5px;}
    .trustedSource .pagesection-inner p + img {margin-top: 18px;}
    .trustedSource .standardform select + .newButton {margin-left: 30px; padding: 13px 17.6px;}
    .heading.halfColor {padding: 40px 50px}
    .heading.halfColor h2 {font-size: 2em;}
    .heading.halfColor p {font-size: 18px}
    .listingTopTitle {font-size: 20px;}
    .listing_domains ul li:hover {background: #fff;}
    .listing_domains ul li div {padding: 20px; width: 33.3%;padding-left: 70px;}
    .listing_domains ul li div:nth-child(2) {padding-left: 136px; width: 66%;}
    .trustedSource .listing_domains ul li div:nth-child(2),.kpscore .listing_domains ul li div:nth-child(2) {padding-left: 136px; width: 33.3%;}
    .listing_domains ul li div:nth-child(3) {padding-left: 125px;}
    .serpholdercolumn ol li {font-size: 18px;}
    select#regionchooser {width: 280px;}
    .sectionFive .two_left_right { float: left; width: calc(50% - 10px);}
    .sectionFive .two_left_right:nth-child(odd) {margin-right: 10px; }
    .sectionFive .two_left_right:nth-child(even) {margin-left: 10px; }
    .sectionFive .two_left_right:only-of-type {width: 100%; margin-right: 0;}
    .sectionFour p {font-size: 18px; margin-bottom: 28px;}
    .border-box .sectionHeading, .offsetLocation .content ul li .cbox {font-size: 18px;}
    .firstDiv {padding: 10px 0 50px;}
    .secondDiv {padding: 50px 0; background: #f3f3f3;}
    .section_form {padding: 50px 0 0;}
    .pagesection {padding: 50px 0;}
    .schema_markup, .structured_data {padding: 50px 0;}
    .formGroup .schemaformleft .schemaformblock.left_half, .formGroup .schemaformleft .schemaformblock.right_half {width: calc(50% - 20px); float: left; margin: 0 20px;}
    .formGroup .schemaformleft .schemaformblock.left_half {margin-left: 0;}
    .formGroup .schemaformleft .schemaformblock.right_half {margin-right: 0;}
    .section_serp_simulator_article aside article {padding: 50px 0;}
    .formGroup .input_button_group + .input_button_group {margin-top: 0;}
    .columns_three .row .col {width: calc(33.3% - 10px); margin-bottom: 10px; text-align: center; padding: 50px 0; border-radius: 18px;     position: relative; min-height: 336px; max-width: 100%;}
    .columns_three .row .col:nth-child(3n + 2) {margin: 0 10px 10px;}
    .lastDiv h4 + h2 {margin-top: 100px;}
    section.padding50 {padding: 80px 0;}
    section.columns_three.padding50 {padding-top: 0;}
    section.lastDiv.padding50 {padding-bottom: 0;}
    #clientchooser, .coloredSelect {max-width: 220px;}
    section.padding50 {padding: 70px 0;}

    p.serprichelementtitle { margin : 0px 0px 20px;}
}
@media(min-width: 1025px) {
    .centeredblockwidth800, .pagesection-inner {max-width: 1000px; /*margin: 25px auto 0;*/}
}

/*max-width-responsive*/

@media(max-width: 1200px) {
    #pricing-div { display: block; padding: 0px 10px;}
}
@media(max-width: 1024px) {
    header {width: auto; left: 0; right: 0; margin: 0 auto; padding-bottom: 0; border-bottom: 0;}
    iframe {height: 450px; width: 100%; min-height: 350px; /*max-height: 350px;*/ overflow: hidden; margin-top: 20px;}
    footer {padding: 20px 0;}
    .subheadingp {font-size: 1.5em;}
    #header-nav ul li a {padding: 0;}
    #header-nav ul li {margin: 0 10px;}
    #header-nav ul li:first-child {margin-right: 20px;}
    img.icon {width: 40px; margin: 5px 0;}

    ul.partners { display: block; padding: 0px 10px;}
}
@media(max-width: 768px) {
    body.overlay {overflow: hidden;}
    a.to_nav:hover, a.to_nav:focus {outline: 0; background: transparent;}
    .firstsection {margin-top: 0; padding-top: 160px;}
    #contact {margin-top: 20px;}
    .pagesection-inner img.icon {width: 80px;}
    .pagesection-inner .section .col.span_1_of_2 img {width: 80px;}
    .header-inner {padding: 8px 0;}
    #top-logo {margin: 6px 0;}
    .span_2_of_3, .span_1_of_3 {width: 100%; margin: 0;}
    .offsetLocation {width: 100%; margin: 20px 0;}
    .offsetLocation .content, .serprichelementtitle span, .equalColumns ul li .cbox {font-size: 15px;}
    .firstsection .pagesection-inner {width: 100%; padding-bottom: 0;}
    .pagesection-inner p {padding: 0;}
    .mobilespacer {margin-bottom: 50px;}
    .serp-display-holder {width: 100%;}
    .clearfix, #snippetform {width: 100%;}
    #serp-display-mobile {width: 100%; margin-left: 0;}
    .subheadingp {text-align: center;}
    #secondary_nav_wrapper {position: fixed; top: 0; left:0; right: 0; width: 100%; height: 100%; z-index: 5; background: #d0e0e3; visibility: hidden; opacity: 0; transition: all 0.5s ease 0s; display: none;}
    #secondary_nav_wrapper.show {display: block; opacity: 1; visibility: visible; z-index: 999; overflow-y: scroll; padding-bottom: 50px;}
    #secondary_nav ul {background: #d0e0e3}
    .toggle.close-nav-toggle {font-size: 1.8rem; padding: 1.5rem 1em; background: none; border: none; width: 100%; text-align: right;}
    .toggle.close-nav-toggle:focus, .toggle.sub-menu-toggle {outline: 0; }
    #secondary_nav ul li {margin: 0; padding: 0;}
    #secondary_nav ul li a {border-color: #a6c2c8; line-height: 1; padding: 20px; font-weight: 600;}
    #secondary_nav>ul>li:first-child {position: relative;}
    #secondary_nav>ul>li:first-child .menudropdown a {border-top: 1px solid #a6c2c8;}
    .toggle.sub-menu-toggle {background: transparent; border: 0; position: absolute; top: 50%; transform: translateY(-50%); right: 10px; display: none;}
    #secondary_nav ul li a, #secondary_nav ul li a:active, #secondary_nav ul li a:visited {color: #000 !important; background: #d0e0e3;}
    #secondary_nav ul li a, #secondary_nav ul li ul li a:active, #secondary_nav ul li ul li a:visited {color: #000 !important; background: #d0e0e3;}
    #secondary_nav ul li ul {padding: 0; display: block !important;}
    #secondary_nav ul li ul li {border-left: 10px solid #a6c2c8;}
    #secondary_nav ul li ul li a {color:#000; padding-left: 25px;}
    .menudropdown {position: relative;}
    .toggle.sub-menu-toggle.active {transform: rotate(180deg) translateY(60%);}
    .section.group {margin-bottom: 10px;}
    .section.group .span_1_of_2 { width: 100%; margin: 5px 0;}
    .section.group .span_1_of_2:first-child {font-weight: bold; margin-bottom: 10px;}
    #header-nav ul li ul {width: 100%;}
    div.pagesection-inner {padding: 0;}

    .fullwidthsection.change-view-div { top: 30px;}
    .change-view-div .brand-client-div, .change-view-div .switch-view-div { text-align: center; float: none !important;}
    .change-view-div select.client-select {	width: 50%; margin-bottom: 5px;	}
    .change-view-div select.brand-select {	width: 50%; margin-bottom: 5px;	}
    .change-view-div a.switch-view { padding: 10px;}

    ol.knowledge-panel-steps li:before { height: 20px; width: 20px;line-height: 20px; font-size: 1rem; margin: 5px;	}
    ol.knowledge-panel-steps li img { margin: 5px auto; width: 30px;}
    ol.knowledge-panel-steps li a div { margin: 0 5px;}
    ol.knowledge-panel-steps li span { font-size: 1rem;}
    ol.knowledge-panel-steps li div.checkbox-done { margin: 5px;}

    .book-session a { margin : 5px;}

    .next-step-div span { display: block; margin: 10px; text-align: center;}
    .next-step-div img { display: none;}

    .listing_domains ul li div { width: 50%;}
    .trustedSource .listing_domains ul li div,.kpscore .listing_domains ul li div { width: 33.3%;}
    .trustedSource form { text-align: center;}
    .trustedSource form input[type="submit"] { margin-top: 10px;}

    #chart_div { height:100%;}

    .container {padding: 0 5px;}


}

@media(max-width: 678px) {

    .trustedSource form span.select2.select2-container {
        width: 90% !important;
        margin-top: 5px;
    }
}
@media(max-width: 600px) {
    .webpageLayout {width: 100%;}
    .offsetLocation.offsetLeft .content ul li .cbox:first-child, .offsetLocation .content ul li .cbox:last-child {width: 100%;}
    .offsetLocation.offsetLeft .content ul li .cbox:first-child, .offsetLocation .content ul li .cbox:last-child {margin-bottom: 3px;}
    .offsetLocation .content, .sectionHeading .serprichelementtitle {padding-left: 0;}
    .offsetLocation .content ul li {padding-left: 0; padding-right: 0;}
    .standardform select {width: 100%; margin-right: 0;}
    .form_search_result table td a {margin-left: 0; display: block;}
    #contact .col.span_2_of_3 p a {display: block;}

    ol.knowledge-panel-steps li img { display: none;}
    ol.knowledge-panel-steps li a { width: 90%; padding: 10px;}

    ul.partners li { width: 100%; text-align: center; margin: 0px; padding: 5px 0px;}
    ul.partners li a {display: block;margin: 0px;}

    .brand-client-div { display: block;}
    .brand-client-div span.select2.select2-container { width: 100% !important; margin-bottom: 10px; }
    .brand-client-div span.select2.select2-container:first-child {margin-top: 10px;}

    .serp-search { padding-top: 160px;}
}
@media(max-width: 480px) {
    h2 {font-size: 1.50em;}
    .listing_domains ul li {display: flex; flex-wrap: wrap;}
    .listing_domains ul li div {display: block; float: left; word-break: break-all; font-size: 14px;}
}

/* Define the highlight style */
.input-highlighted {
    background-color: var(--kGreenTransparent) !important;; /* Light green background */
    border-color: var(--kalicubeGreen) !important;; /* Green border */
    color: #155724; /* Dark green text */
}

/* Apply highlight if the field has a value */
.form-control:not(:placeholder-shown).input-highlighted {
    background-color: var(--kGreenTransparent) !important;; /* Light green background */
    border: 1px solid var(--kalicubeGreen) ;
    color: #155724;
}
