* {
  	box-sizing: border-box;
  	font-family: 'Montserrat', sans-serif;
  	font-size: 15px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #f5f7f9;
  	margin: 0;
  	top: 0px;
}
.login {
	border: 0;
  	width: 30%;
  	background-color: #ffffff;
  	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  	margin-bottom: 90px;
  	margin-top: 100px;
  	margin-left: 30px;
  	padding-bottom:60px;
  	border-radius: 6px;
  	color: #333;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	min-width: 0;
  	word-wrap: break-word;
}
.project, .add-project-info {
	border: 0;
  	width: 50%;
  	background-color: #ffffff;
  	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  	margin-bottom: 90px;
  	margin-top: 100px;
  	margin-left: 30px;
  	padding:20px;
  	border-radius: 6px;
  	color: #333;
  	position: relative;
  	display: flex;
  	flex-direction: column;
  	min-width: 0;
  	word-wrap: break-word;
}
.add-project-info p, strong, li {
	font-size: 13px;
	color: #333333;
}
.add-project-info strong {
	text-transform: uppercase;
	font-size: 12px;
}
.project-progress-container {
  position: relative;
  width: 100%;
  margin: 30px auto;
  max-width: 600px;
}
.project-progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #d3d3d3; /* grey for pending */
  z-index: 1;
  border-radius: 3px;
}
.project-progress-fill {
  left: 0;
  height: 6px;
  width: 0%;
  background-color: #ffa400; /* active step color */
  z-index: 2;
  border-radius: 3px;
  transition: width 0.4s ease;
}
/* Purple bar (completed) */
.project-progress-fill.purple {
  background-color: #7651a1;
  position: absolute;
  z-index: 3;
}
/* Orange bar (active step) */
.project-progress-fill.orange {
  background-color: #ffa400;
  position: absolute;
  z-index: 2;
}
.project-progress-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.project-step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #d3d3d3; /* default grey */
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.4s ease, transform 0.3s ease;
}
/* Active step (orange) */
.project-step-circle.active {
  background-color: #ffa400;
  transform: scale(1.1);
  color: #333;
}
/* Completed steps (purple) */
.project-step-circle.completed {
  background-color: #7651a1;
  color: #fff;
}
.project form input[type="button"].cancel-button {
    border-style: solid;
    border-radius: 3px;
    border-color: darkgrey;
    border-width: 1px;
    margin-left: 20px;
    background-color: #fff;
    color: #333;
}
.project form input[type="button"].back-button {
    border-style: solid;
    border-radius: 3px;
    border-color: darkgrey;
    border-width: 1px;
    margin-left: 20px;
    background-color: #dfdfdf;
    color: #333;
}
.project .step-heading {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}
.project .input-details {
	font-size: 14px;
  	text-transform: initial;
}
.project .project-update-details p {
	font-size: 13px;
	color: #333333;
	text-transform: none;
}
.project .project-update-details strong {
	text-transform: uppercase;
	font-size: 11px;
	color: #333333;
}
.project p, i{
	text-transform: uppercase;
	color: #333;
	font-size: 12px;
}
.login h1, .register h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login .links, .register .links {
  	display: flex;
  	padding: 0 15px;
}
.login .links a, .register .links a {
  	color: #adb2ba;
  	text-decoration: none;
  	display: inline-flex;
  	padding: 0 10px 10px 10px;
  	font-weight: bold;
}
.login .links a:hover, .register .links a:hover {
  	color: #9da3ac;
}
.login .links a.active, .register .links a.active {
  	border-bottom: 3px solid #3274d6;
  	color: #3274d6;
}
.login form, .project form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: left;
  	padding-top: 20px;
  	margin-left:15px;
}
.login form label, .project form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #A53694;
  	color: #ffffff;
}
.project .delete-checkbox {
	width: 100%;
	height: auto;
	display: block;
	background-color: transparent;
	color: #e53935;
	font-size: 13px;
	font-weight: 500;
 }
 .rum-delete-button {
    color: #ff4e43;
	border: 1px solid #ff4e43;
	background-color: #ff4e4310;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	padding: 5px;
	cursor: pointer;
}
.rum-delete-button:hover {
	background-color: #ff4e4320;
}
.rum-delete-button i {
	margin-right: 5px;
	margin-left: 5px;
	color: #ff4e43;
}
 .run-audit-button {
    color: #513394;
  	border: 1px solid #513394;
  	background-color: rgba(81, 51, 148, 0.1);
  	border-radius: 3px;
  	font-size: 14px;
  	font-weight: 500;
	padding: 5px;
	cursor: pointer;
}
.run-audit-button:hover {
	background-color: rgba(81, 51, 148, 0.2);
}
.run-audit-button:disabled {
	background-color: #f9f9f9;
  	border: 1px solid #aaa;
  	color: #aaa;
	cursor: not-allowed;
}
.run-audit-button i {
    margin-right: 5px;
	color: #513394;
}
.run-audit-button:disabled i {
	color: #aaa;
}
.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .login form input[type="tel"], .login form input[type="url"], .login form select, .passwordReset form input[type="password"], .project form input[type="text"], .project form input[type="url"], .project form select, footer form select, .navtop-primary-column form select, .default-lang form select, .redeemCode form input[type="text"] {
  	background-image: linear-gradient(to top,#ddd3df 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
  	width: 95%;
  	height: 50px;
  	border: 0;
  	margin-bottom: 20px;
  	transition: background 0s ease-out;
  	padding: 0 15px;
  	background-color: #fff;
  	font-size: 14px;
  	font-weight:500;
  	color: #495057;
}
.login form input[type="password"]:focus, .login form input[type="text"]:focus, .login form input[type="email"]:focus, .login form input[type="tel"]:focus, .login form input[type="url"]:focus, .login form select:focus, .passwordReset form input[type="password"]:focus, .project form input[type="text"]:focus, .project form input[type="url"]:focus, .project form select:focus, footer form select:focus, .default-lang form select:focus, .redeemCode form input[type="text"]:focus {
	background-image: linear-gradient(to top,#7651a1 2px,rgba(156,39,176,0) 2px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
	background-size: 100% 100%, 100% 100%;
	transition-duration: .3s;
	box-shadow: none;
	z-index: 3;
	color: #333;
	background-color: transparent;
	outline: 0;
	font-weight:500;
	font-size: 14px;
}
.project form input[type="url"]:disabled {
	color: #aaa;
  	cursor: not-allowed;
}
.login form input[type="submit"], .passwordReset form input[type="submit"], .project form input[type="submit"], .project form input[type="button"], .redeemCode form input[type="submit"] {
  	width: 40%;
  	padding: 15px;
  	margin-top: 20px;
  	background-color: #7651a1;
  	border: 0;
  	cursor: pointer;
  	font-weight: 500;
  	color: #ffffff;
  	transition: background-color 0.2s;
  	border-radius: .2rem;
  	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  	position: relative;
  	font-size: 12px;
  	text-align: c;
}
.login form input[type="submit"]:hover, .passwordReset form input[type="submit"]:hover, .project form input[type="submit"]:hover, .redeemCode form input[type="submit"]:hover {
  	background-color: #7651a1;
  	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.14);
  	transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);
  	
}
.project form input[type="submit"]:disabled {
	background-color: #aaa;
	cursor: not-allowed;
}
.projects-table .project-name-button {
	background: transparent;
	border: none;
	font-weight: 400;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;	
}
.projects-table .project-name-button:hover {
	color: #000000;
}
.project form option {
	color: #333333;
	font-size: .8125rem;
	width:100%;
}
.login-form-sub-heading p{
	color: #999;
	margin-top: 30px;
	margin-left: 20px;
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.5em;
}
.login-form-password-reset p{
	color: #6c757d !important;
	margin-bottom: 0 !important;
	text-align: left !important;
	font-size: 14px;
	margin-top: 20px;
	margin-left: 20px;
}
.login-form-password-reset a{
	font-size: 14px;
}
.card-header {
	border-radius: 3px;
	margin-top: -20px;
	padding: 0px;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
	background: linear-gradient(60deg,#7651a1,#513394);
	position: relative;
	margin: -15px 15px 0;
	color: #fff;
	border-bottom: none;
	font-size: .875rem;
}
.card-header h4{
	font-size: 1.125rem;
	line-height: 1.4em;
	font-weight: 400;
	margin-left:20px;
}
.navtop {
  	background-color: #F4F8F9;
  	height: 60px;
  	width: 100%;
  	border: 0;
}
.navtop div {
  	display: flex;
  	margin: 0 auto;
  	width: 95%;
  	height: 100%;
}
.navtop div h1, .navtop div a {
  	display: inline-flex;
  	align-items: center;
}
.navtop div h1 {
  	flex: 1;
  	font-size: 24px;
  	padding: 0;
 	margin: 0;
  	color: #3c4858;
  	font-weight: normal;
}
.navtop div a {
  	padding: 0 20px;
  	text-decoration: none;
  	color: #A53694;
  	font-weight: bold;
}
.navtop div a i {
  	padding: 2px 8px 0 0;
}
.navtop div a:hover {
  	color: #BB3FA8;
}
.navtop-buttons-tools {
	background-color: #fff;
  	color: #333333;
  	padding: 3px 15px;
  	text-decoration: none;
  	font-size: 14px;
 	transition: 0.3s;
  	text-align: center;
  	cursor: pointer;
  	border-style: solid;
  	border-radius: 3px;
  	border-color: darkgrey;
  	border-width: 1px;
  	margin-left: 20px;
}
.navtop-buttons-active {
	background-color: #7651a1;
  	color: #ffffff;
  	border-color: none;
}
body.loggedin {
  	background-color: #f5f7f9;
}
.content {
	min-height: calc(100vh - 171px);
  	width: 95%;
  	margin: 0 auto;
}
.content h2, h3 {
  	margin: 0;
  	padding: 25px 0;
  	font-size: 15px;
  	font-weight: 400;
  	color: #5b5b60;
}
.content a {
	color:#333;
	cursor: pointer;
}
.content a:hover {
	color:#333;
}
.content table, .page-freq-analysis table {
	margin-top: 30px;
	background-color: white;
	text-align: left;
	width: 100%;
}
.content th {
	color: #5b5b60;
}
.content td {
	text-align: left;
}
.content > p, .content > div {
  	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  	margin: 25px 0;
  	padding: 25px;
	background-color: #fff;
	border-radius: 3px;
}
.content > p table td, .content > div table td, .page-freq-analysis > p table td, .page-freq-analysis > div table td {
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 14px;
}
.content > div table th, .page-freq-analysis > div table th {
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 17px;
	font-weight: 400;
	color: #7651a1;
}
.content > div table tbody td, .page-freq-analysis > div table tbody td {
	border-top: 0.5px;
	border-top-color: #dddddd;
	border-top-style: solid;
	color: #333;
}
.content > div table tbody tr:hover, .page-freq-analysis > div table tbody tr:hover {
	background-color: #F4F8F9
}
.content > div table td a, page-freq-analysis > div table td a {
	font-size: 12px;
	text-decoration: none;
	color: #333333;
}
.content > div table td a:hover, .page-freq-analysis > div table td a:hover {
	color: #7651a1;
}
.content > div table td p, .page-freq-analysis > div table td p {
	margin-bottom: 1px;
}
.content > p table td:first-child, .content > div table td:first-child, .page-freq-analysis > p table td:first-child, .page-freq-analysis > div table td:first-child {
	font-weight: 400;
	color: #333333;
}
.content > div p, page-freq-analysis > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}
.content .account td {
	text-align: left;
	font-size: 13px;
}
.content .account td:first-child {
	color: #333333;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 12px;
}
.profile-addon-button {
	padding: 8px;
	background-color: #7651a1;
	color: #fff;
	margin-left: 20px;
	border-radius: 3px;
	font-weight: 600;
}
.credits-reset-pending {
	font-size: 13px;
	background-color: gold;
	font-weight: 600;
	padding: 5px 10px 5px 10px;
	border-radius: 15px;
	margin-left: 20px;
}
.credits-reset-today {
	font-size: 13px;
	background-color: #7651a1;
	font-weight: 600;
	padding: 5px 10px 5px 10px;
	border-radius: 15px;
	margin-left: 20px;
	color: #fff;
}
.passwordReset p {
	color: #999;
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1.5em;
}
.passwordReset {
	width: 40%;
}
.column-2 {
	flex:50%;
}
.column-4 {
	flex:25%;
	padding-right:40px;
}
.row-2 {
	display: flex;
}
.footer-column {
	float: left;
	width: 50%;
}
.footer-column a{
	color: #7651a1;
	font-weight: 400;
	font-size: 14px;	  
}
.footer-column p{
	color: #3c4858;
	font-weight: 400;
	font-size: 14px;
}
.footer:after {
	content: "";
	display: table;
	clear:both;
}
.footer {
	margin-left: 45px;
	margin-right: 45px;
}
.button-dropdown-projects {
	float: right;
	position: relative;
	display: inline-block;
}
.button-projects {
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.projects-dropdown-content {
	top: 100%;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
	position: absolute;
	overflow: auto;
	right: 0;
	z-index: 1000;
}
.projects-dropdown-content input[type="submit"], .projects-dropdown-content button[type="button"] {
	background-color: transparent;
	color: #333333;
	padding: 12px 0px;
	text-decoration: none;
	display: block;
	font-size: .8125rem;
	width:100%;
	border: none;
	transition: 0.3s;
	text-align: left;
  	padding-left: 5px;
  	padding-right: 5px;
}
.projects-dropdown-content input[type="submit"]:hover, .projects-dropdown-content button[type="button"]:hover {
	background-color: #7651a1;
	color: #ffffff;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
	font-size: .8125rem;
	cursor: pointer;
}
.projects-dropdown-content input.delete-button[type="submit"]:hover, .projects-dropdown-content button.delete-button[type="button"]:hover {
	background-color: #e53935!important;
	color: #ffffff;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
	font-size: .8125rem;
	cursor: pointer;
}
.show-projects-dropdown {
	display: block;
	animation: fadeSlideMenu 0.5s ease-in-out forwards;
}
.button-dropdown-projects i {
	color: #333333;
	font-size: 18px;
}
.button-dropdown-projects i:hover {
	color: #333333;
}
.add-new-projects a {
	background-color: rgba(118,81,161,0.90);
	color: #ffffff;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	font-size: 15px;
	transition: 0.3s;
	width: 15%;
	border-radius: 3px;
	text-align: center;
}
.add-new-projects a:hover{
	background-color: #7651a1;
	color: #ffffff;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
}
.add-new-projects .cta-button {
	display: inline-block;
	background-color: gold;
	color: #333;
	text-decoration: none;
	padding: 8px 10px 8px 20px;
	font-weight: 500;
	border: none;
	clip-path: polygon( 20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
	transition: right 0.6s ease-in-out;
	max-width: 100%;
	font-size: 13px;
	width: max-content;
}
.cta-button .cta-message {
  display: inline-block;
  margin-left: 10px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cta-button:hover .cta-message {
  transform: translateX(0);
  opacity: 1;
}
.content .breadcrumb-row {
	background-color: transparent;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0;
	border: none;
	box-shadow: none;
	margin-top: 0px;
}
.content .breadcrumb {
	background-color: transparent;
	box-shadow: none;
	padding: 0;
	width: 80%;
}
.content .breadcrumb h6 {
	font-weight: 400;
	font-size: 15px;
	color: #333;
}
.content .breadcrumb a {
	text-decoration: none;
	color: #7651a1;
	font-size: 15px;
	padding: 0;
}
.content .breadcrumb a:hover {
	text-decoration: underline;
}
.content .breadcrumb i {
	font-size: 15px;
	color: #7651a1;
	padding: 0 10px;
}
.report {
	width: calc(100% - 260px);
	float: right;
	padding-left: 30px;
}
.report-card {
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
	border: 0;
	margin-bottom: 30px;
	margin-top: 30px;
	border-radius: 6px;
	color: #333;
	background: #fff;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	font-size: .875rem;
}
.report-card .report-card-header {
	border-bottom: none;
	background: 0 0;
	z-index: 3 !important;
	text-align: right;
	padding-right: 15px;
}
.report-card .report-card-header .report-card-icon {
	text-align: right;
}
.report-card-icon {
	border-radius: 3px;
	background-color: #999;
	padding: 22px;
	margin-top: -20px;
	margin-right: 15px;
	margin-left: 10px;
	float: left;
}
.content .report-card-category {
	color: #666;
	font-size: 13px;
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-left:0;
	padding-bottom: 5px;
}
.report-card-title {
	margin: 0;
	color: #3c4858;
	padding-top:0;
	padding-bottom: 20px;
	text-align: right;
	font-size: 25px;
}
.report-card-title a {
	font-size: 25px;
	text-decoration: none;
}
.report-card-title a:hover {
	text-decoration: underline;
	cursor: pointer;
	color: #7651a1;
}
.report-card-icon i {
	font-size: 18px;
	color: #ffffff;
}
.dark-blue {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(54,36,89,.4);
	background: linear-gradient(60deg,#4e3872,#362459);
}
.maroon {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(148,64,82,.4);
	background: linear-gradient(60deg,#a25152,#944052);
}
.red {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(244,67,54,.4);
	background: linear-gradient(60deg,#ef5350,#e53935);
}
.purple {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px #7651a1d6;
	background: #7651a1;
}
.green {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgb(76,175,80);
	background: rgb(76,175,80);
}
.orange {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgb(255,152,0);
	background: rgb(255,152,0);
}
.report-card .report-card-h2 {
	margin-left: 30px;
	font-size: 18px;
	font-weight: 500;
}
.report-card .report-card-h2 i {
	font-size: 15px;
	color: #7651a1;
	padding-left: 10px;
}
.report-card .report-card-h2 i:hover {
	color: #3c4858;
}
.report-card .report-card-h2 a {
	font-size: 14px;
	color: #7651a1;
	text-decoration: none;
	margin-left: 5px;
}
.report-card .report-card-h2 a:hover {
	text-decoration: underline;
	color: #3c4858;
}
.report-card .report-card-text-box {
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 30px;
}
.report-card .report-card-text-box .report-card-p {
	font-size: 13px;
}
.card-header .card-header-report-h2 i {
	padding-left: 10px;
	font-size: 17px;
	color: #f1f1f1;
}
.card-header .card-header-report-h2 i:hover {
	color: #ffffff;
}
.navtooltip .reporttooltiptext {
	visibility: hidden;
	width: 400px;
	background-color: #fff;
	color: #333;
	text-align: left;
	border-radius: 6px;
	padding: 8px;
	position: absolute;
	z-index: 1;
	bottom: 100%;
	margin-left: -70px;
	margin-bottom: 10px;
	font-size: 13px;
	opacity: 0;
	transition: opacity 1s;
	overflow: hidden;
	text-transform: none;
	font-weight: 400;
	line-height: normal;
}

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

.navtooltip:hover .reporttooltiptext {
	visibility: visible;
	opacity: 1;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(51, 51, 51, 0.20);
}
.navtooltip .uitooltiptext1 {
	visibility: hidden;
	width: 200px;
	background-color: #fff;
	color: #333;
	text-align: left;
	border-radius: 6px;
	padding: 8px;
	position: absolute;
	z-index: 5;
	bottom: 100%;
	margin-left: -150px;
	margin-bottom: 10px;
	font-size: 13px;
	opacity: 0;
	transition: opacity 1s;
	overflow: hidden;
	text-transform: none;
	font-weight: 400;
	line-height: normal;
}

.navtooltip .uitooltiptext1::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: black transparent transparent transparent;
	z-index: 5;
}

.navtooltip:hover .uitooltiptext1 {
	visibility: visible;
	opacity: 1;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(51, 51, 51, 0.20);
	z-index: 5;
}
.content .tooltipcolor i {
	color: #7651a1;
}
.issues-overview-description .issues-details-htw {
	padding: 20px;
	background-color: rgb(247,247,247);
}
.issues-overview-description .issues-details-htw .issues-details-htw-text p {
	font-size: 15px;
	line-height: 22px;
	padding: 0;
}
.info-icon i {
	font-size: 15px;
	color: #aaa;	
}
.info-icon i:hover {
	color: #3c4858;
}
.issues-overview-description .issues-details-htw .buttons .add-new-projects .issue-affected-button {
	background-color: rgba(118,81,161,0.90);
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	transition: 0.3s;
	border-radius: 3px;
	border-color: transparent;
	color: #ffffff;
	font-size: 14px;
	width: 20%;
	cursor: pointer;
}
.issues-overview-description .issues-details-htw .buttons .add-new-projects .issue-affected-button:hover{
	background-color: #7651a1;
	color: #ffffff;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
}
.card-header select {
  	background-image: linear-gradient(to top,#ddd3df 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
  	width: 40%;
  	height: 40px;
  	border: 0;
  	transition: background 0s ease-out;
  	padding: 0 15px;
  	background-color: transparent;
  	font-size: 14px;
  	font-weight:500;
  	color: #ffffff;
  	float: right;
	margin-right: 30px;
	margin-top: 15px;
}
.card-header select:focus {
	background-image: linear-gradient(to top,#ddd3df 2px,rgba(156,39,176,0) 2px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
	background-size: 100% 100%, 100% 100%;
	transition-duration: .3s;
	box-shadow: none;
	z-index: 3;
	color: #ffffff;
	background-color: transparent;
	outline: 0;
	font-weight:500;
	font-size: 14px;
}
.projects-table .issue-info:hover {
	text-decoration: underline;
	cursor: pointer;
}
.projects-table .navtooltip .issues-icon {
	font-size: 18px;
	color: #ef5350;
	padding-left: 20px;
	cursor: pointer;
}
.content .style-issues-primary-filters {
	padding: 0;
	background-color: transparent;
	box-shadow: none;
}
.content .style-issues-primary-filters table {
	background-color: transparent;
}
.content .style-issues-primary-filters p {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
}
.content .style-issues-primary-filters select {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	width: 80%;
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.content .issuesDetails {
	margin-right: 30px;
  	padding-top: 1px;
}
.content .issuesDetails th {
	font-weight: 500;
}
.content .issuesDetails .issuesdetailshtw {
	padding-left: 15px;
	padding-right: 15px;
	background-color: #fafafa;
	padding-bottom: 15px;
}
.content .issuesDetails .issuesdetailshtw h3 {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	padding-bottom: 10px;
}
.content .issuesDetails .issuesdetailshtw p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}
.content .issuesDetails .issuesdetailshtw .fa-triangle-exclamation {
	padding-left: 10px;
	font-size: 15px;
	color: rgb(255,152,0);
}
.content .issuesDetails .issuesdetailshtw .fa-circle-check {
	padding-left: 10px;
	font-size: 15px;
	color: rgb(76,175,80);
}
.content .issuesDetails i {
	cursor: pointer;
}
.content .issues-explorer-card-header, .issues-explorer-card-header {
	margin-bottom: -60px;
	margin-top: 15px;
	margin-left: 15px;
	margin-right: 60px;
	padding: 0;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
}
.content .issues-explorer-card-header button, .issues-explorer-card-header button {
	background-color: transparent;
	color: #fff;
	box-shadow: none;
	margin: 20px;
	border-width: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 10px;
	padding-left: 10px;
	text-transform: uppercase;
	font-size: 14px;
	cursor: pointer;
}
.content .issues-explorer-card-header .issues-explorer-button-active, .issues-explorer-card-header .issues-explorer-button-active {
	background-color: rgba(255,255,255,.2);
}
.content .issues-explorer-card-header i, .issues-explorer-card-header i {
	font-size: 18px;
	color: #fff;
	padding-right: 15px;
}
.content .issuesReport select, .content .issuesInlinksReport select, .wordFrequencyReport select {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.content .issuesReport input[type="text"], .content .issuesInlinksReport input[type="text"], .wordFrequencyReport input[type="text"] {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.content .issuesReport .row-2 .column-2 p, .wordFrequencyReport .row-2 .column-2 p {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	margin: 0;
}
.content .issuesReport .issues-report-link-icon, .content .issuesInlinksReportTable .issues-report-link-icon {
	padding-left: 5px;
	color: #333;
}
.content .issuesReport .issues-report-link-icon:hover, .content .issuesInlinksReportTable .issues-report-link-icon:hover {
	color: #513394;
}
.content .linksReport select {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.content .linksReport input[type="text"] {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.content .linksReport .row-2 .column-2 p {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	margin: 0;
}
.content .issues-explorer-card-header .issue-explorer-download-button {
	font-size: 13px;
	background-color: rgba(255,255,255,.2);
}
.content .issues-explorer-card-header .issue-explorer-download-button:hover {
	background-color: rgba(118,81,161,0.90);
}
.content .issues-explorer-card-header .issue-explorer-download-button .fa-solid {
	font-size: 13px;
}
.content .tablenavbuttonissuesexplorer button, .page-freq-analysis .tablenavbuttonissuesexplorer button {
	background: linear-gradient(60deg,#7651a1,#513394);
	color: white;
	border: none;
	text-transform: uppercase;
	font-size: 14px;
	padding: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	cursor: pointer;
	border-radius: 3px;
}
.content .tablenavbuttonissuesexplorer button:hover, .page-freq-analysis .tablenavbuttonissuesexplorer button:hover {
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
}
.content .tablenavbuttonissuesexplorer i, .page-freq-analysis .tablenavbuttonissuesexplorer i {
	font-size: 14px;
	color: white;
}
.content .issuesReport a, .content .issuesInlinksReport a, .content .issuesReport td, .content .issuesInlinksReport td {
	font-size: 13px;
}
.content .issuesReport th, .content .issuesInlinksReport th {
	font-size: 15px;
	font-weight: 500;
}
.content .issuesReport .linksReportTable th {
	padding-right: 60px;
}
.content .issuesReport .linksReportTable th:first-child {
	padding-right: 200px;
}
.content .issuesReport .linksReportTable td {
	padding-right: 10px;
}
.content .linksReport a, .content .linksReport td {
	font-size: 13px;
}
.content .linksReport th {
	font-size: 15px;
	font-weight: 500;
}
.content .linksReport .linksReportTable th {
	padding-right: 60px;
}
.content .linksReport .linksReportTable td {
	padding-right: 10px;
}
.content .site-structure a {
	font-size: 14px;
}
.content .issue-explorer-none {
	margin-right: 30px;
	height: 300px;
	justify-content: center;
	display: grid;
}
.content .issuesReportTable, .content .issuesInlinksReportTable {
	border-collapse: collapse;
	table-layout: fixed;
}
.content .issuesReportTable td, .content .issuesInlinksReportTable td {
	word-wrap: break-word;
}
.content .linksReportTable {
	border-collapse: collapse;
}
.content .linksReportTable td {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 1px;
}
.content .linksReportTable td:first-child {
	white-space: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 1px;
}
.content .linksReportTable td:nth-child(n+2):nth-child(-n+6) {
	white-space: normal;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 1px;
}
.content .alert {
	padding: 20px;
  	background-color: #f44336;
  	color: white;
}
.content .normalnotification {
	position: sticky;
	bottom: 10px;
	right: 10px;
	color: white;
	padding: 20px;
  	background-color: #513394;
  	z-index: 3;
  	border-radius: 3px;
}
.content .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}
.content .closebtn:hover {
	color: lightgray;
}
.gauge-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.status {
	text-align: center;
	border-radius: 3px;
	width: 70%;
	font-size: 14px;
	font-weight: 500;
}
.completed {
	color: #513394;
	border: 1px solid #513394;
	background-color: rgba(81, 51, 148, 0.1);
}
.forbidden {
	color: #e53935;
  	border: 1px solid #e53935;
  	background-color: rgba(229, 57, 53, 0.1);	
}
.crawling {
	color: rgb(76, 175, 80);
  	border: 1px solid rgb(76, 175, 80);
  	background-color: rgba(76, 175, 80, 0.1);
}
.not-enough-crawl-urls {
	color: rgb(255, 152, 0);
  	border: 1px solid rgb(255, 152, 0);
  	background-color: rgba(255, 152, 0, 0.1);
}
.analyzing {
	color: #a152a0;
  	border: 1px solid #a152a0;
  	background-color: rgba(161, 82, 160, 0.1);
}
.analysis-error {
	color: #944052;
  	border: 1px solid #944052;
  	background-color: rgba(148, 64, 82, 0.1);
}
.data-upload-error {
	color: #a25152;
  	border: 1px solid #a25152;
  	background-color: rgba(162, 81, 82, 0.1);
}
.queue {
	color: #333333;
  	border: 1px solid #333333;
  	background-color: rgba(51, 51, 51, 0.05);
}
.crawl-frequency {
	padding-top: 5px;
	text-align: center;
	width: 60%;
	background-color: #e4e4e4;
	border-radius: 3px;
}
.issue-type {
	font-size: 14px;
	margin-right: 10px;
}
.issue-type-issue {
	color: #e53935;
}
.issue-type-warning {
	color: rgb(255,152,0);
}
.issue-type-opportunity {
	color: rgb(76,175,80);
}
.percentage-change {
	font-size: 14px;
	font-weight: 600;
}
.comparison-type-table {
	font-size: 14px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}
.comparison-type-table:hover {
	text-decoration: underline;
}
.all-issues-increase {
	color: #e53935;
}
.all-issues-decrease {
	color: #5cb14f;
}
.all-issues-null {
	color: #b5b5b5;
}
.all-issues-neutral {
	color: #7651a1;
}
.crawl-time-estimate {
	text-align: center;
	width: 70%;
	font-size: 13px;
	color: #3e3939;
	font-weight: 500;
}
.progress-bar-container {
	border-width: 1px;
	border-color: #333;
	border-radius: 10px;
	border-style: none;
	height: 10px;
	width: 70%;
	background-color: #e4e4e4;
	margin-top: 5px;
	display: flex;
	align-items: center;
	padding: 0px;
}
.progress-bar-rum-container {
	border-width: 1px;
	border-color: #333;
	border-radius: 10px;
	border-style: none;
	height: 10px;
	width: 70%;
	background-color: #e4e4e4;
	margin-top: 0px;
	display: flex;
	align-items: center;
	padding: 0px;
}
.progress-bar {
	border-width: 1px;
	border-color: #333;
	border-radius: 10px;
	border-style: none;
	height: 10px;
	width: 70%;
	background-color: #e4e4e4;
	margin-top: 5px;
	display: flex;
	align-items: center;
	padding: 0px;
}
.progress-bar-status {
	height: 8px;
	border-radius: 10px;
	width: 0%;
}
.pb-completed {
	background-color: #a152a0;
	animation: pb-completed 1s linear forwards;
}
.pb-queue {
	background-color: #a482bb;
	animation: pb-queue 1s linear forwards;
}
.pb-crawling {
	background-color: #e56626;
	animation: pb-crawling 1s linear forwards;
}
.pb-analyzing {
	background-color: #7c60a9;
	animation: pb-analyzing 1s linear forwards;
}
.pb-forbidden {
	background-color: #944052;
	animation: pb-forbidden 1s linear forwards;
}
.pb-not-enough-urls {
	background-color: #944052;
	animation: pb-not-enough-urls 1s linear forwards;
}
.pb-analysis-error {
	background-color: #944052;
	animation: pb-analysis-error 1s linear forwards;
}
.pb-data-upload-error {
	background-color: #944052;
	animation: pb-data-upload-error 1s linear forwards;
}
.pb-rumv-history {
	background-color: #a152a0;
	animation: pb-rumv-history 1s linear forwards;
}
@keyframes pb-completed {
	100%{
		width: 100%;
	}
}
@keyframes pb-queue {
	100%{
		width: 10%;
	}
}
@keyframes pb-crawling {
	100%{
		width: 20%;
	}
}
@keyframes pb-analyzing {
	100%{
		width: 70%;
	}
}
@keyframes pb-forbidden {
	100%{
		width: 20%;
	}
}
@keyframes pb-not-enough-urls {
	100%{
		width: 10%;
	}
}
@keyframes pb-analysis-error {
	100%{
		width: 70%;
	}
}
@keyframes pb-data-upload-error {
	100%{
		width: 90%;
	}
}
@keyframes pb-rumv-history {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}
.radial-bar {
	border-radius: 10px;
	height: 20px;
	width: 10%;
	margin-top: 5px;
	display: flex;
	align-items: center;
	padding: 0px;
}
.radial-bar-status {
	background: radial-gradient(closest-side, white 50%, transparent 80% 100%), conic-gradient(hotpink 0%, #e4e4e4 0);
	animation: radial-bar-status 1s 1 forwards;
}
@keyframes radial-bar-status {
	100%{
		background: radial-gradient(closest-side, white 50%, transparent 80% 100%), conic-gradient(hotpink 75%, #e4e4e4 0);
	}
}
.page-freq-analyzer {
	padding: 20px;
	margin-right: 60px;
	margin-left: 60px;
	margin-top: 30px;
	margin-bottom: -30px;
}
.page-freq-analyzer-form-div {
	padding: 25px;
	margin-right: 30px;
	margin-left: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.page-freq-analyzer-form-div form {
	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-evenly;
  	padding-top: 20px;
  	margin-left:15px;
  	width: 50%;
}
.page-freq-analyzer-form-div form textarea, .page-freq-analyzer-form-div form input[type="url"], .page-freq-analyzer-form-div form select {
  	background-image: linear-gradient(to top,#ddd3df 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
  	width: 95%;
  	height: 50px;
  	border: 0;
  	margin-bottom: 20px;
  	transition: background 0s ease-out;
  	padding: 0 15px;
  	background-color: #fff;
  	font-size: 14px;
  	font-weight:500;
  	color: #495057;
}
.page-freq-analyzer-form-div form textarea:focus, .page-freq-analyzer-form-div form input[type="url"]:focus, .page-freq-analyzer-form-div form select:focus {
  	background-image: linear-gradient(to top,#7651a1 2px,rgba(156,39,176,0) 2px),linear-gradient(to top,#d2d2d2 1px,rgba(210,210,210,0) 1px);
	background-size: 100% 100%, 100% 100%;
	transition-duration: .3s;
	box-shadow: none;
	z-index: 3;
	color: #333;
	background-color: transparent;
	outline: 0;
	font-weight:500;
	font-size: 14px;
}
.page-freq-analyzer-form-div form input[type="submit"] {
  	width: 40%;
  	padding: 15px;
  	margin-top: 20px;
  	background-color: #7651a1;
  	border: 0;
  	cursor: pointer;
  	font-weight: 500;
  	color: #ffffff;
  	transition: background-color 0.2s;
  	border-radius: .2rem;
  	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  	position: relative;
  	font-size: 12px;
  	text-align: c;
}
.page-freq-analyzer-form-div form input[type="submit"]:hover {
  	background-color: #7651a1;
  	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.14);
  	transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);
  	
}
.page-freq-analyzer-form-div p {
	text-transform: uppercase;
	color: #333;
	font-size: 12px;
}
.wordFrequencyReport {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 25px 0;
	padding: 25px;
	background-color: #fff;
	border-radius: 3px;
}
.content .all-issues-filter .column-2 p {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	text-transform: uppercase;
	margin: 0;
	padding-left: 0;
}
.content .all-issues-filter .column-2 select {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.status-links-explorer {
	text-align: center;
	border-radius: 3px;
	width: 55%;
	font-size: 13px;
	font-weight: 500;
}
.status-issues-explorer {
	text-align: center;
	border-radius: 3px;
	width: 15%;
	font-size: 13px;
	font-weight: 500;
}
.add-new-projects .upgrade-now {
	text-align: center;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 500;
	background-color: rgba(118,81,161,0.90);
	color: #ffffff;
	padding-top: 8px;
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
	cursor: pointer;
	padding-bottom: 8px;
	width: max-content;
}
.copy-icon {
	margin-left: 8px;
	cursor: pointer;
}
.copy-icon:hover {
	color: #7651a1;
}
.explorer-icon {
	cursor: pointer;
	margin-left: 8px;
}
.explorer-icon:hover {
	color: #7651a1;
}
.content .copynotification {
	position: sticky;
	bottom: 10px;
	right: 10px;
	background-color: #7651a1;
	color: white;
	padding: 15px;
	border-radius: 5px;
	z-index: 3;
	width: 20%;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 500;
}
.export-popup {
	position: fixed;
	top: 40%;
	left: 40%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	width: 25%;
}
.export-popup h2 {
	font-weight: 500;
	padding-bottom: 10px;
}
.export-popup p {
	font-size: 14px;
}
.export-popup .buttoncancel {
	background-color: rgba(81,51,148,0.1);
	color: #333333;
	padding: 3px 15px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	transition: 0.3s;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
	border-style: none;
}
.export-popup .buttoncancel:hover {
	background-color: rgba(81,51,148,0.2);
}
.export-popup .buttondownload {
	background-color: rgba(118,81,161,0.90);
	color: #ffffff;
	padding: 3px 15px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	transition: 0.3s;
	border-radius: 3px;
	text-align: center;
	cursor: pointer;
	border-style: none;
	margin-right: 15px;
}
.export-popup .buttondownload:hover {
	background-color: #7651a1;
  	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.14);
  	transition: box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);
}
.export-popup .popupButtonContainer {
	display: flex;
	justify-content: left;
	width: 100%;
	padding-top:20px;
}
.export-popup label, .export-popup input[type="radio"] {
	font-size: 14px;
}
.content .printtopdf {
	box-shadow: none;
	margin: 0;
	padding: 0;
	background-color: transparent;
	border-radius: 0;
	display: flex;
	justify-content: right;
	/*width: calc(100% - 40px);*/
}
.printtopdfbuttondownload {
	background-color: transparent;
	color: #333333;
	padding: 3px 15px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	transition: 0.3s;
	text-align: center;
	cursor: pointer;
	border-style: solid;
	border-radius: 3px;
  	border-color: darkgrey;
  	border-width: 1px;
}
.printtopdfbuttondownload:hover {
	background-color: #ffffff;
}
.ondemandcrawlbutton {
	background-color: #ffffff;
	color: #333333;
	padding: 3px 15px;
	text-decoration: none;
	display: block;
	font-size: 14px;
	transition: 0.3s;
	text-align: center;
	cursor: pointer;
	border-style: solid;
	border-radius: 3px;
	border-color: darkgrey;
	border-width: 1px;
}
.ondemandcrawlbutton:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.14),0 10px 100px 0 rgba(0,0,0,0.10);
}
.onload-animation {
	animation: fadeSlide 0.5s ease-in-out forwards;
}
.onload-animation-left {
	animation: fadeSlideLeft 0.5s ease-in-out forwards;
}
.printable {
	visibility: hidden;
}
.printableExpand {
	width: 100%;
}
.page-freq-analyzer-content {
	padding: 25px;
	max-width: 90%;
	margin: auto;
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.page-freq-analysis-container {
	margin-bottom: 30px;
	margin-top: 30px;
}
.page-freq-analysis-container-columns {
	max-width: 90%;
	margin: auto;
}
.page-freq-analyzer-content-column-a {
	margin-right: 15px;
  	margin-bottom: 30px;
	padding: 25px;
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.page-freq-analyzer-content-column-b {
	margin-left: 15px;
  	margin-bottom: 30px;
	padding: 25px;
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.page-freq-analyzer-content h2 {
	font-size: 22px;
	font-weight: 500;
}
.page-freq-analyzer-content p {
	font-size: 16px;
	line-height: 24px;
}
.page-freq-analyzer-content a {
	color: #7651a1;
}
.page-freq-analyzer-content-column-a h3, .page-freq-analyzer-content-column-b h3 {
	color: #000;
	font-size: 20px;
	font-weight: 500;
}
.page-freq-analyzer-content-column-a p, .page-freq-analyzer-content-column-b p {
	line-height: 24px;
}
.page-freq-analyzer-content-column-a li, .page-freq-analyzer-content-column-a strong, .page-freq-analyzer-content li, .page-freq-analyzer-content strong {
	font-size: 16px;
	line-height: 24px;
}
.freq-analyzer-text-align {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}
.google-sign-in {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	margin-top: 30px;
	margin-right: 15px;
	margin-left: 15px;
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #555;
	text-decoration: none;
	transition: background-color 0.3s, box-shadow 0.3s;
}
.google-sign-in img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
.google-sign-in:hover {
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.google-sign-in:active {
	background-color: #eee;
}
.cspm-snippet-code {
	font-size: 12px;
	font-family: courier new,courier,monospace;
	background-color: #f5f7f9;
	border-radius: 5px;
	border: solid;
	border-width: 1px;
	border-color: #dadce0;
}
.cspm-copy-icon {
	position: absolute;
	font-size: 18px;
}
.cspm-back-button {
	width: 40%;
	padding: 15px;
	margin-top: 20px;
	background-color: #7651a1;
	border: 0;
	cursor: pointer;
	font-weight: 500;
	color: #ffffff;
	transition: background-color 0.2s;
	border-radius: .2rem;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
	position: relative;
	font-size: 12px;
}
.details-popup {
    position: fixed;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1000;
    padding: 20px;
}
.details-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(60deg,#7651a1,#513394);
    padding: 0px 25px;
    z-index: 1;
    position: sticky;
    top: 0;  /* Keeps the header at the top */
    box-shadow: 0 4px 20px 0 rgba(0,0,0,.14),0 7px 10px -5px rgba(118, 81, 161, 0.80);
    border-radius: 3px;
}
.details-popup .popup-body {
    margin-top: 20px;
}
.popup-body table {
    width: 100%;
    border-collapse: collapse;
}
.popup-body th {
    font-size: 15px;
    font-weight: 500;
    padding: 5px;
    text-align: left;
    color: #7651a1;
}
.popup-body td {
	width: 30%;
}
.popup-body td, a {
    font-size: 13px;
    font-weight: 400;
    padding: 5px;
    text-align: left;
    color: #333333;
    text-decoration: none;
}
.popup-body a:hover {
    color: #7651a1;
}
.popup-body h4 {
	font-weight: 500;
}
.popup-header button {
color: #fff;
  box-shadow: none;
  border-width: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 10px;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  background-color: rgba(255,255,255,.2);
  width: 15%;
}
.popup-header button:hover {
	background-color: rgba(118,81,161,0.90);
}
.popup-header h3 {
  color: white;
  font-size: 20px;
  font-weight: 400;
}
.onload-details-popup-animation {
	animation: fadeSlideLeft 0.5s ease-in-out forwards;
}
.popup-url-row {
    display: flex;
    align-items: center;
    background-color: #f5f7f9;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 12px;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}
.url-icon {
    margin-right: 8px;
    color: #7651a1;
}
.popup-url {
    font-size: 13px;
    color: #7651a1;
    text-decoration: none;
    word-break: break-word;
    flex: 1;
}
.popup-url:hover {
    text-decoration: underline;
}
.popup-info-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.popup-info-box {
    flex: 1;
    min-width: 120px;
    background-color: #f5f7f9;
    padding: 10px;
    border-radius: 6px;
    /*display: flex;*/
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}
.popup-info-box-dynamic {
    flex: auto;
    min-width: 120px;
    background-color: #f5f7f9;
    padding: 10px;
    border-radius: 6px;
    /*display: flex;*/
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
}
.link-buttons {
  background-color: #fff;
  color: #333333;
  padding: 3px 15px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  text-align: center;
  cursor: pointer;
  border-style: solid;
  border-radius: 3px;
  border-color: darkgrey;
  border-width: 1px;
  margin-left: 20px;
}
.popup-apply {
  background-color: rgba(118,81,161,0.90);
  color: #ffffff;
  padding: 8px 10px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  transition: 0.3s;
  width: 15%;
  border-radius: 3px;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}
.checkbox-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Creates two equal columns */
    gap: 10px;  /* Adjust gap between columns */
    margin-bottom: 20px;  /* Space below each category */
}
.checkbox-container input[type="checkbox"] {
	font-size: 13px;
	margin-right: 8px;
}
.checkbox-container label {
    display: flex;
    align-items: center;  /* Align checkbox and label text */
    margin-bottom: 5px;  /* Space between each checkbox */
    font-size: 13px;
}
.issue-column-filter {
  background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
  height: 30px;
  border: 0;
  transition: background 0s ease-out;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.issue-search-input {
  background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
  height: 30px;
  border: 0;
  transition: background 0s ease-out;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
#filtersContainer {
    margin-top: 20px;
}
.filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.filter-row select,
.filter-row input {
    margin-right: 10px;
    padding: 5px;
}
.filter-row button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: red;
}
.filter-row button:hover {
    color: darkred;
}
.filter-row i {
  font-size: 14px;
  color: #e53935;
}
.filter-row span {
  font-weight: 600;
  margin-right: 10px;
  font-size: 14px;
}
/* AND/OR buttons */
button[onclick^="addFilter"] {
    margin-right: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
}
button[onclick^="addFilter"]:hover {
    background-color: #ddd;
}
/* Apply and Reset buttons */
#detailsPopup button[onclick="applyAdvancedFilters()"],
#detailsPopup button[onclick="resetFilters()"] {
    display: inline-block;
    background-color: rgba(118,81,161,0.90);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    margin-top: 20px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 4px;
}
#detailsPopup button[onclick="resetFilters()"] {
    background-color: #e53935;
}
#detailsPopup button:hover {
    opacity: 0.9;
}
/* Align the AND/OR buttons in one row */
#detailsPopup button[onclick^="addFilter"] {
    display: inline-block;
}
#detailsPopup .popup-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
footer {
  background-color: none;
  padding: 20px 40px 20px 0px;
  color: #333;
}
.footer-dashboard {
	padding-left: 40px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.footer-left ul,
.footer-right ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-left ul li,
.footer-right ul li {
  margin-right: 20px; /* Space between the items */
}
.footer-left ul li:last-child,
.footer-right ul li:last-child {
  margin-right: 0; /* No margin on the last item */
}
.footer-left ul li a,
.footer-right ul li a {
  color: #7651a1;
  text-decoration: none;
}
.footer-left ul li a:hover,
.footer-right ul li a:hover {
  text-decoration: underline;
}
.footer-right {
  text-align: right;
}
footer form select {
	width: 100%;
	height: auto;
	margin-bottom: 0px;
	padding-bottom: 5px;
	font-size: 13px;
	/*display: none;*/
}
.navtop-primary-column form select {
	width: auto;
	height: auto;
	margin-bottom: 0px;
	padding-bottom: 8px;
	padding-top: 8px;
	font-size: 13px;
	/*display: none;*/
}
.default-lang form select {
	width: 30%;
	height: auto;
	margin-bottom: 0px;
	padding-bottom: 5px;
	font-size: 13px;
	/*display: none;*/
}
footer form option:nth-child(3), .navtop-primary-column form option:nth-child(3), .default-lang form option:nth-child(3) {
	display: none;
}
.content .site-performance-filter-rows {
	box-shadow: none;
	margin: 0px;
	background-color: transparent;
	border-radius: 0px;
	padding: 0px 40px 0px 0px;
}
.site-performance-filter-buttons {
	margin-left: 0px;
}
.site-performance-filter-select {
	background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
	height: 30px;
	border: 0;
	transition: background 0s ease-out;
	background-color: transparent;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.site-performance-country-select {
	width: 15%;
}
.cwv-good {
	background-color: #0cce6a;
}
.cwv-needs-improvement {
	background-color: #ffa400;
}
.cwv-poor {
	background-color: #ff4e43;
}
.cwv-good-table {
	background-color: #0cce6a10;
	padding: 5px;
	border-color: #0cce6a;
	border-style: solid;
	border-width: 1px;
	border-radius: 15px;
	font-size: 13px;
	color: #0cce6a;
	font-weight: 600;
}
.cwv-needs-improvement-table {
	background-color: #ffa40010;
	padding: 5px;
	border-color: #ffa400;
	border-style: solid;
	border-width: 1px;
	border-radius: 15px;
	font-size: 13px;
	color: #ffa400;
	font-weight: 600;
}
.cwv-poor-table {
	background-color: #ff4e4310;
	padding: 5px;
	border-color: #ff4e43;
	border-style: solid;
	border-width: 1px;
	border-radius: 15px;
	font-size: 13px;
	color: #ff4e43;
	font-weight: 600;
}
.cwv-good-table-icon {
	padding-right: 5px;
	color: #0cce6a;
}
.cwv-needs-improvement-table-icon {
	padding-right: 5px;
	color: #ffa400;
}
.cwv-poor-table-icon {
	padding-right: 5px;
	color: #ff4e43;
}
.content .cwv-table-text-color {
	color: #ffffff;
	text-align: center;
	font-weight: bold;
}
.content .cwv-table-text {
	color: #000000;
	text-align: left;
}
.site-performance-overview-device-button-active {
	background-color: #a152a0;
	color: #fff;
}
.site-performance-opportunities-switch {
	position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
	bottom: 3px;
	margin-left: 5px;
}
.site-performance-opportunities-switch input {
	opacity: 0;
    width: 0;
    height: 0;
}
.site-performance-opportunities-slider {
	position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.site-performance-opportunities-slider:before {
	position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.site-performance-opportunities-switch input:checked + .site-performance-opportunities-slider {
	background-color: #a152a0;
}
.site-performance-opportunities-switch input:checked + .site-performance-opportunities-slider:before {
	transform: translateX(23px);
}
.site-performance-additional-attributes h4 {
	font-size: 18px;
}
.site-performance-additional-attributes p {
	font-size: 13px;
}
.site-performance-accordion {
	margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
/* Accordion button */
.site-performance-accordion-toggle {
    background-color: #f7f7f7;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    border: none;
    text-align: left;
    outline: none;
    width: 100%;
    transition: background-color 0.3s ease;
}
.site-performance-accordion-toggle:hover,
.site-performance-accordion-toggle.active {
    background-color: #e2e2e2;
}
/* Accordion content */
.site-performance-accordion-content {
	display: none;
    padding: 15px;
    animation: sitePerformanceAccoridonFadeIn 0.3s ease forwards;
    overflow: hidden;
}
/* Expanded accordion content */
.site-performance-accordion-toggle.active + .site-performance-accordion-content {
    max-height: 1920px; /* Set this high enough to accommodate content */
    padding: 15px;
    transition: max-height 0.5s ease, padding 0.3s ease;
}
.site-performance-accordion-entry {
    margin-left: 15px;
    padding: 10px 0;
}
.site-performance-filter-input-text {
  background-image: linear-gradient(to top,#7651a1 1px,rgba(156,39,176,0) 1px),linear-gradient(to top,#7651a1 1px,rgba(210,210,210,0) 1px);
  height: 30px;
  border: 0;
  transition: background 0s ease-out;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.site-performance-page-filter {
	margin-left: 0px;
	margin-right: 15px;
}
.site-performance-input-with-icon {
	position: relative;
}
.site-performance-input-with-icon-active input {
	background-color: #a152a0;
  	color: #fff;
}
.site-performance-input-with-icon input {
	background-color: #fff;
	color: #333333;
	padding: 3px 30px;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
	text-align: center;
	cursor: pointer;
	border-style: solid;
	border-radius: 3px;
	border-color: darkgrey;
	border-width: 1px;
	width: 100%;
}
.site-performance-input-with-icon i {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #888;
	font-size: inherit;
}
/* Wrapper for the sections */
.site-performance-wrapper {
	display: grid;
	grid-template-columns: 20% 20% 60%; /* Two 40% columns and one 60% column */
	gap: 20px; /* Space between columns */
	margin: 20px 0;
	box-shadow: none;
	background-color: transparent;
  }
  .site-performance-wrapper > section {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
  }
  /* Stats Section */
  .site-performance-project-info-stats {
	display: grid;
	grid-template-columns: 1fr; /* Single column layout for stats */
	gap: 20px;
  }
  /* Responsive Design: Stacks sections vertically on smaller screens */
  @media (max-width: 768px) {
	.site-performance-wrapper {
	  grid-template-columns: 1fr; /* Single column for smaller screens */
	}
  }  
  .site-performance-project-info-card {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.14);
  }
  .site-performance-project-info-card h2 {
	margin: 0px;
	font-size: 14px;
	padding: 0px;
  }
  .site-performance-project-info-card p {
	font-size: 14px;
	margin: 0;
  }
  .site-performance-project-info-dates {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .site-performance-project-info-dates p {
	margin: 5px 0;
  }
.popup-window-center {
    display: none; /* Hidden by default */
    position: fixed;
  top: 20%;
  left: 40%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: transparent;
  z-index: 1000;
  width: 30%;
  overflow-y: auto;
  height: 65%;
}
.popup-window-center form {
    display: flex;
    flex-direction: column;
    gap: 10px;
	margin-left: 0px;
}
.popup-window-center form input[type="text"] {
	width: 100%;
}
.popup-window-center h4 {
    margin-top: 0;
    margin-bottom: 10px;
}
.popup-window-center input[type="submit"], .popup-window input[type="button"] {
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    transition: background-color 0.3s ease;
}
.popup-window-center input[type="submit"]:hover, .popup-window input[type="button"]:hover {
    background-color: #0056b3;
}
.popup-window-center input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.popup-window-center .msg {
    color: #e60000;
    font-size: 13px;
}
.site-performance-popup-form {
	width: 100%;
	margin: 0px;
	padding-bottom: 0px;
}
.project .site-performance-settings-form {
	display: block;
	margin-left: 0%;
}
.project .site-performance-settings-form-label {
	display: contents;
	background-color: transparent;
	color: #333;
}
@keyframes sitePerformanceAccoridonFadeIn {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left ul,
  .footer-right ul {
    flex-direction: column;
  }

  .footer-left ul li,
  .footer-right ul li {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.treemap{
            border: 1px solid black;
            width: 100%;
            height: 600px;
            display:none;
        }
        .node circle {
            stroke: #000;
            stroke-width: 2px;
        }
        .tooltip {
            position: absolute;
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 5px;
            display: none;
            pointer-events: none;
        }
        #zoomControls {
            position: fixed;
            bottom: 10px;
            left: 10px;
            display: none;
        }
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeSlideMenu {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/static/fonts/montserrat/v26/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@media only screen and (max-width: 768px) {
	.page-freq-analyzer {
		margin-right: 15px;
		margin-left: 15px;
	}
	.page-freq-analyzer-form-div {
		margin-right: 0px;
		margin-left: 0px;
	}
	.page-freq-analyzer-form-div p {
		text-align: center;
	}
	.page-freq-analyzer-form-div form {
		width: 100%;
		margin-left: 0px;
	}
	.page-freq-analyzer-form-div form input[type="submit"] {
		width: 100%;
	}
	.footer {
		margin-right: 15px;
		margin-left: 15px;
	}
	.issues-explorer-card-header {
		margin-right: 0px;
		margin-left: 0px;
	}
	.row-2 {
		display: block;
	}
}
