/* =============================================================================
   HTML5 CSS Reset Minified - Eric Meyer
   ========================================================================== */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style:none}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
border-radius: 0;
}


:root {
    --text: #232234;
    --textalt:#959595;
    --white: #ffffff;
   --darkblue: #0b7bd5;
  --mainblue: #3499ea;
  --lightblue: #58b2fa;
  --darkpurple: #3a3987;
  --mainpurple: #4b49ac;
  --midpurple: #6462d9;
  --lightpurple: #d7c3ff;
   --ctext: #6c6c6c;
    --bordergrey:#e9e8eb;
    --midgrey:#f1f4f5; 
    --lightgrey:#f5f7fb;  
--green: #27ae61;
  --red: #e84c3d; 
  --rating-size: 180px;
  --bar-size: 10px;
  --background-color: #e7f2fa;
  --rating-color-default: #2980b9;
  --rating-color-background: #c7e1f3;
  --rating-color-good: #27ae60;
  --rating-color-meh: #f1c40f;
  --rating-color-bad: #e74c3c;    

--axis-text-color:#707070;
--legend-text-color:#707070;
--grid-color:#ccc;

--main-color: #66bb6a; 
--second-color: #0b7bd5;
--third-color: #3a3987;
--forth-color: #ea548b;
--fifth-color: #ef6c00;
--sixth-color: #ffa726;
--seventh-color: #f4004d;
--eighth-color: #6462d9;
--nineth-color: #009d9a;
--tenth-color: #2e7d32;
--eleventh-color: #58b2fa;
--twelfth-color: #d44436;
--overlay: rgba(255,255,255,0.9);


}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: #232234;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #171717;
}

::-webkit-scrollbar-track {
  background: #e9e8eb;    
}

* {
  scrollbar-width: thin;     
  scrollbar-color: #232234 #e9e8eb;      
}

*:focus {
    outline: none;
}

.fa-spinner {
  margin: 0 5px 0 0!important;
}

.notification-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 59px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 999;
  width: 350px;
color:#232234;
}

.notification-dropdown ul li {
  background: #fff;
  cursor: pointer;
}

.notification-dropdown ul li.unread {
    background: #eaeaea;
}



.sorty {
  display: inline-block;
  font-size: 10px;
  vertical-align: middle;
  margin: 0 0 0 5px;
}

.sorty-title {
  display: inline-block;
  vertical-align: middle;
}


.sortable tr td:last-child {
  width: auto!important;
}


.table-ind tr td:last-child,
.table-indno tr td:last-child {
  width: auto!important;
  white-space: unset!important;
}


.grid-solos,
.grid-solo {
  display: block;
  margin: 20px auto;
}

#loadingOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--overlay);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
#loadingOverlay.show {
    opacity: 1;
    visibility: visible;
}
#loadingOverlay .spinner {
    border: 6px solid var(--bordergrey);
    border-top: 6px solid var(--mainpurple);
    border-radius: 50%;
    width: 50px; height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* 
==========================================================================
GLOBAL & WP SPECIFIC STYLES
==========================================================================
*/

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-text-size-adjust: none; 	
}

input, textarea, select {
    -webkit-border-radius:0; 
    border-radius:0;
}

img,
audio,
video,
canvas {
	max-width: 100%;
}

html {
	min-height: 100%;
	margin-bottom: 1px;

}

::selection {
	background: var(--text);
	color:var(--white);
}

::-moz-selection {
	background: var(--text);
	color:var(--white);
}

::-webkit-selection {
	background: var(--text);
	color:var(--white);
}

.cf:before,.cf:after {content: " "; /* 1 */    display: table; /* 2 */}
.cf:after {clear: both;}
.cf {clear: both;}

strong, b {
	font-weight:bold;
}

em, i {
	font-style:italic;
}

img.alignright {
	float:right;
	margin:0 0 2em 1em;
}

img.alignleft {
	float:left;
	margin:0 2em 1em 0;
}

img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignright {
	float:right;
	margin:0 0 2em 1em;
}

.alignleft {
	float:left;
	margin:0 0 2em 1em;
}

img.wp-smiley {
	float: none;
	margin: 0 0 0 5px;
	vertical-align:middle;
}

p {
	margin: 0 0 20px 0;
}

a {
	color: var(--text);
	text-decoration: none;
}

a:hover {
	color: var(--textalt);
	text-decoration: none;
}


/* 
==========================================================================
H & LINKS
==========================================================================
*/

h1 {
	font: 30px 'Figtree', Helvetica , Arial, sans-serif;	
	margin:0 0 20px 0;
  font-weight: 600;
	padding:0;
}

h2 {
	font: 26px 'Figtree', Helvetica , Arial, sans-serif;	
	margin:0 0 20px 0;
  font-weight: 600;
  padding:0;
}

h3 {
	font: 22px 'Figtree', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
  font-weight: 600;
  padding:0;
}


h4 {
	font: 20px 'Figtree', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
  font-weight: 600;
  padding:0;
}


h5 {
	font: 18px 'Figtree', Helvetica , Arial, sans-serif;
	margin:0 0 20px 0;
  font-weight: 600;
  padding:0;
}



/* 
==========================================================================
GENERAL
==========================================================================
*/

body {
    background: var(--lightgrey);
	color: var(--text);
	font: 16px/1.8 'Figtree', Helvetica, Arial, sans-serif;
	margin:0;

	overflow-x: hidden;
}

.container {
  margin: 80px 35px 35px 115px;
  padding: 0;
  position: relative;
  z-index: 9;
}

.inner {

}

.card {
  position: relative;
    background:var(--white);
    border-radius: 0;
    padding: 25px;
    flex-grow: 1;
    border: 1px solid var(--bordergrey);
}

.seoh .card {
  margin: 0 0 30px 0;
  flex-grow: unset!important;
}

.seoh .last-ref {
  text-align: left!important;
}

.ref-buts,
.ref-but {
  position: absolute;
  top: -2px;
  right: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  color: var(--mainblue);
animation: spin 2s linear 0s infinite forwards;
     animation-play-state: paused;  
}

.ref-buts:hover,
.ref-but:hover {
  position: absolute;
  top: -2px;
  right: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  color: var(--mainblue);
  animation-play-state: running;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.grid-3-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: inital;

  margin: 0 auto;
}

.block-col .card {
  padding: 25px;
  margin: 0 0 20px 0;
  height: 100px;
}

.bro-link {
  word-break: break-all;
}

.no-ga {
  position: relative;
  background: var(--rating-color-meh);
  padding: 15px;
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  display: inline-block;
  line-height: 24px;

  color: var(--text);
}

.yes-ga i, .no-ga i {
  font-size: 25px;
  margin: 0 0 10px 0;
  display: block;
}

.yes-ga {
  position: relative;
  padding: 15px;
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  display: inline-block;
  line-height: 24px;

  color: var(--white);
  background: var(--rating-color-good);

}
.yes-ga p {
  color: var(--white)!important;
  margin: 5px 0 0 0!important;
}

.no-ga h6,
.yes-ga h6 {
  display: inline-block;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin: 0;
    line-height: 22px;
}

.upt-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
  margin: 5px auto 0 auto;
}

.upt-grid h5 {
  font: 30px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: var(--mainblue);
}

.upt-grid p {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
    font-weight: normal;
  margin: 0;
  padding: 0;
  font-weight: 600;
  text-align: right;
  color: var(--textalt);
}


.dash-card {
margin: 0;
}

.card-speed h3 {
  font-size: 25px;
  font-weight: 700 !important;
  margin: 0 0 10px 0;

}

.card-speed h5 {
  margin: 0;
}



.card-speed p {
  margin: 0!important;
}

.last-ref {
  display: block;
  margin: 0 !important;
  font-weight: 600;
  font-size: 13px !important;
  color: var(--text) !important;
  text-align: center;
}

.last-refs {
  display: block;
  margin: 10px 15px !important;
  font-weight: 600;
  font-size: 13px !important;
  color: var(--text) !important;
  text-align: center;
}


.last-refss {
  display: block;
  margin: 15px 0 0 0 !important;
  font-weight: 600;
  font-size: 13px !important;
  color: var(--text) !important;
  text-align: center;
}

.card-speed {
  margin: 0;
}

.card-speed h4 {
  margin: 0px 0 5px 0;
}


.card h3 {
  font-weight: 600;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
}

.fas-row {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
margin: -2px 3px 0 0;
}

.card p {
  color: var(--textalt);
  margin: 0;
  line-height: 24px;
}

.big-card {
  text-align: center;
  background: var(--mainblue);
  border:0!important;
  padding: 25px 5px;
}

.big-card h1 {
  font: 40px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: var(--white);
}

.big-card:nth-of-type(2)  {
  background: var(--mainpurple);
}

.big-card:nth-of-type(3)  {
  background: var(--darkpurple);
}
.big-card:nth-of-type(6)  {
  background: var(--midpurple);
}
.big-card:nth-of-type(5)  {
  background: var(--darkblue);
}
.big-card:nth-of-type(4) {
  background: var(--lightblue);
}

.up0 h5 {
  color: var(--mainpurple);
}

.up1 h5 {
  color: var(--mainblue);
}
.up2 h5 {
  color: var(--darkblue);
}
.up3 h5 {
  color: var(--midpurple);
}

.grid-1-2-site-dash {
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: start;
  margin: 30px auto;
}

.grid-2-2-up {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}

.grid-1-3-noti {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}

.grid-1-2-noti {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}


.upp-card {
  text-align: center;
  background:#27ae61;
  border:0!important;
}

.upp-card h1 {
  font: 30px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: #fff;
}

.upp-card:nth-of-type(2)  {
  background: #6bc77b;
}

.upp-card:nth-of-type(3)  {
  background: #8dc71d;
}

.upp-card:nth-of-type(4) {
  background: #187c19;
}

.upp-card h4 {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #fff;
}


.big-card h4 {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #fff;
}

.grid-1-2-site-dash .card {
  height: 120px;
  position: relative;
  display: inline-grid;
  align-content: center;
}

.dash-grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
  position: relative;
}

.dash-welcome {
  margin: 20px auto 30px auto;
  border-bottom: 2px solid var(--bordergrey);
  padding: 0 0 20px 0;
}

.dash-welcome h2 {
  font: 24px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 500;
  padding: 0;
}
.dash-welcome h6 {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.dash-time {
  text-align: right;
  margin: -2px 5px 0 0;
  position: relative;
}

.dash-time .fa-clock {
  color: var(--green);
  font-size: 15px;
  vertical-align: unset;
  display: inline-block;
  margin: 0 8px 0 0;
}

#userClock {
  width: 85px;
  display: inline-block;
  text-align: left;
  vertical-align: initial;
  font-weight: 700;
}

.dash-time a {
  margin: 0 15px 0 0;
  color: var(--text);
}

.dash-time a:hover {
  color: var(--text);
}



.dash-time .fa-circle-question {
  color: var(--mainpurple);
  font-size: 16px;
  display: inline-block;
  vertical-align: initial;
}

.dashtip {
  cursor: help;
}


.dashtip .dashtiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--darkblue);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 150%;
  left: -85px;
  font-size: 14px;
  line-height: 20px;
  z-index: 99999;
}


.dashtip .dashtiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 25px;
  margin-left: -5px;
  border-top: 8px solid transparent;
  border-bottom: 12px solid var(--darkblue);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.dashtip:hover .dashtiptext {
  visibility: visible;
  opacity: 1;
}


.intro-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 30%);
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
  margin: 30px auto 20px auto;
  position: relative;
}

.intro-selects {
  width: 100px;
  position: absolute;
  right: 18px;
  top: 13px;
}

.intro-select {
  width: 130px;
  position: absolute;
  right: 0;
  top: 0;
}

.intro-selects i {
  position: absolute;
  top: 4px;
  left: -25px;
  color: var(--text) !important;
  margin: 0 !important;
}

.intro-select i {
  position: absolute;
  top: 4px;
  left: -25px;
}

.moz-col .intro-selects {
  width: 125px;
  position: absolute;
  right: 5px;
  top: -2px;
}


.grid-1-2-3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 30px auto;
}


.grid-1-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}

.grid-1-2-up {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 20px auto;
}


#sitesGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
justify-items: stretch;
  align-items: start;  
}


.grid-1-3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 30px auto;
}

.grid-1-6 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 30px auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

thead {
  background: var(--mainblue);
}

th {
  padding: 15px;
  text-align: left;
  color: white;
}

td {
  padding: 15px!important;
  border-right: 1px solid var(--bordergrey);
color: var(--text);
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
}

td:first-of-type {
  border-left: 1px solid var(--bordergrey);

}


tbody tr {
  border-bottom: 1px solid var(--bordergrey);
}

tbody pre {
color: var(--text);
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
}

tr td:last-child {
    width: 1%;
    white-space: nowrap;
}


.card table.dataTable.no-footer {
  border-bottom: 0!important;
}

#mozMetricsTable {
  min-width: 900px;
}

#mozMetricsTable tbody td,
#countryTable tbody td, 
#topPagesTable tbody td,
#trafficSourcesTable tbody td {
  border-bottom: 1px solid var(--bordergrey)!important;
}

#mozMetricsTable th {
  width: 15% !important;
}

#mozMetricsTable th:first-of-type {
  width: 40% !important;
}

.card-report th {
  padding: 10px 15px;
  text-align: left;
  color: white;
  width: 30%;
  font-size: 14px;
}

.card-report th:first-of-type {
  width: 40%;
}



.asc, .desc {
  background: var(--midpurple);
}

#trafficSourcesTable thead {
    color: var(--white)!important;
    border:0!important;
    background: var(--midpurple)!important;
}

#countryTable thead {
    color: var(--white)!important;
    border:0!important;
    background: var(--mainblue)!important;
}

#topPagesTable thead {
    color: var(--white)!important;
    border:0!important;
    background: var(--mainpurple)!important;
}


.table-ind thead {
  background: var(--mainblue);
}

.table-indno thead {
  background: var(--mainpurple);
}

.grid-solo select {
  background: var(--white)!important;
  color: var(--text) !important;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif !important;
  padding: 0!important;
  display: block !important;
  margin: 0 !important;
  height: 25px !important;
  border: 0 !important;
  font-weight: 600 !important;

}


.intro-block select {
  background: var(--lightgrey)!important;
  color: var(--text) !important;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif !important;
  padding: 0!important;
  display: block !important;
  margin: 0 !important;
  height: 25px !important;
  border: 0 !important;
  font-weight: 600 !important;

}

#scDateRange {
  background: var(--white)!important;
}


.grid-solos select:focus,
.grid-solo select:focus,
.intro-block select:focus {
  outline: none!important;
}

.grid-solos label,
.grid-solo label,
.intro-block label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
}

.dataTables_wrapper .dataTables_length {
  float: none!important;
  position: relative;
  margin: 0 0 20px 0!important;
width: 100%;

}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: left;
   margin: 0 0 20px 0!important; 
width: 100%;
  max-width: 250px;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
  border: 1px solid var(--bordergrey)!important;
  border-radius: 0!important;
background: var(--white)!important;
  color: var(--text)!important;
  padding: 0 10px!important;
  height: 35px!important;
  margin: 5px 0 0 0!important;
width: 100%!important;
  display: block!important;
}

.dataTables_wrapper .dataTables_filter input:focus,
.dataTables_wrapper .dataTables_length select:focus {
outline:none!important;
}

.grid-solos label {
  display: block!important;
  font-size: 14px!important;
  font-weight: 600!important;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
  border-bottom: 0!important;
}


.intro-filter {
  position: absolute;
  display: block;
  width: 160px;
  right: 0;
  height: 25px;
  top: -2px;
}

.intro-title p,
.intro-block p {
  margin: 0;
}

.intro-title {
  margin: 0 0 0 5px;
}

.intro-title h2,
.intro-block h2 {
  font: 28px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.intro-title h3 {
font: 18px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 600;
  padding: 0;
}

.screenshot {
  margin: 20px 0 0 0;
}

.single-nav {
	background: #ecf2fb;
	padding: 12px 0;
	border-bottom: 1px solid var(--bordergrey);
}

.single-nav ul {
	list-style: none;
}

.single-nav li {
	list-style: none;
	display: inline-block;
	margin: 0 30px 0 0;
	font-weight: 600;
}

.single-nav i {
  font-size: 14px;
  display: inline-block;
  margin: 0px 5px 0 0;
}

.single-nav a {
  background: none;
  color: var(--text);
  padding: 8px 20px;
  border-radius: 10px;
  transition: all 0.1s ease-in-out;
}

.single-nav a:hover {
  background: var(--midpurple);
  color: var(--white);
  transition: all 0.1s ease-in-out;
}

.single-nav .active a {
  background: var(--mainblue);
  color: var(--white);
  transition: all 0.1s ease-in-out;
}

.grid-1-2-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: start;
  margin: 30px auto;
}

.grid-1-3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-items: stretch;
    align-items: stretch;

  margin: 30px auto;
}

.grid-1-2-2 .card {
padding: 30px;

}

.block-col .card {
  padding:25px;
  margin: 0 0 20px 0;
  height:100px;
}

.screen-card {
  padding: 0;
  border: 0;
}

.col-last .card {
  margin: 0;
}

.grid-1-3-3 .card {
  padding: 15px;
}

.grid-col {
  display: flex;
  flex-direction: column;
  height: 100%; 
}

.grid-intro h3 {
  margin: 0 0 0 5px;
  font: 18px 'Figtree', Helvetica , Arial, sans-serif;
  font-weight: 600;
}

.grid-intro {
  position: relative;
  height: 40px;
}

.grid-intro.gi-mobile {
  visibility: hidden;
}

.an-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: center;
  margin: 20px auto;
}

.rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  background: var(--rating-color-default);
  color: var(--rating-color-default);
width: 180px;
  height: 180px;
  font-size: 45px;
  line-height: 1;
}


.rating span {
  position: relative;
  display: flex;
  font-weight: bold;
  z-index: 2;
}

.rating span small {
  font-size: 0.5em;
  font-weight: 900;
  align-self: center;
}


.rating::after {
  content: "";
  position: absolute;
  inset: var(--bar-size);
  background: var(--background-color);
  border-radius: inherit;
  z-index: 1;
}


.rating::before {
  content: "";
  position: absolute;
  inset: var(--bar-size);
  border-radius: inherit;
  box-shadow: 0 0 0 1rem var(--rating-color-background);
  z-index: -1;
}


.rating.good {
  background: var(--rating-color-good);
  color: var(--rating-color-good);
}

.rating.meh {
  background: var(--rating-color-meh);
  color: var(--rating-color-meh);
}

.rating.bad {
  background: var(--rating-color-bad);
  color: var(--rating-color-bad);
}

.grid-col .good h3 {
  color: var(--rating-color-good)!important;
}

.grid-col .meh h3 {
  color: var(--rating-color-meh)!important;
}

.grid-col .bad h3 {
  color: var(--rating-color-bad)!important;
}

.psi {
  margin: 0 0 10px 0 !important;
}

/* 
==========================================================================
HEADER
==========================================================================
*/

header {
  width:100%;
  margin: 0 auto;
  position: fixed;
  top:0;
  left:0;
  right:0;
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--bordergrey);
  z-index: 99999;
  height: 80px;
align-content: center;
}

.logo {
  width: 150px;
  height: auto;
  margin: 0 auto;
  transition: all 0.1s ease-in-out;
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
}

.logo-auth {
    width: 180px;
    height: auto;
    margin: 0 0 0 20px;
   transition: all 0.1s ease-in-out;
}

.logo-auth .st0,
.logo .st0 {
  fill: #7978e9;
}

.logo-auth .st1,
.logo .st1 {
   fill: #4b49ac;
}

.logo-auth .st2,
.logo .st2 {
  fill: #232234;
}

.logo-auth .st3,
.logo .st3 {
  fill: #3499ea;
}

    .tog-inp {
    height: 0;
    width: 0;
    visibility: hidden;
}

.tog-lab {
  cursor: pointer;
  text-indent: -9999px;
  width: 55px;
  height: 26px;
  background: #555;
  display: inline-block;
  border-radius: 20px;
  position: relative;
  vertical-align: middle;
}

.tog-lab::after {
  content: '';
  position: absolute;
top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.theme-toggle input:checked + label {
    background: white;
}

.theme-toggle input:checked + label:after {
    left: calc(100% - 4px);
    transform: translateX(-100%);
    background: #1e1e23;
}

.theme-toggle {
  position: absolute;
  top: 24px;
  right: 155px;
}

.tmode span {
  display: none;
}
.tmode {

  display: inline-block;
  vertical-align: middle;
}

.tdark:after {
  content: url('../images/sun.svg');
position: absolute;
  top: 5px;
  width: 18px;
  height: 18px;
  left: -14px;
  display: block;
}

.tlight::after {
  content: url('../images/moon.svg');
  position: absolute;
  top: 5px;
  width: 18px;
  height: 18px;
  left: -10px;
  display: block;
}

.logo svg,
.logo img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0;
}

nav {
	display: inline-block;
	margin: 0 75px 0 0;
	vertical-align: middle;
}

nav ul {
	list-style: none;
}
nav li {
	list-style: none;
	display: inline-block;
	margin: 0 0 0 50px;
	font-weight: 600;
}

nav i {
  font-size: 14px;
  display: inline-block;
  margin: 0px 5px 0 0;
}


nav a {
	color: var(--text);
transition: all 0.3s ease-in-out;
}


nav a:hover {
	color: var(--mainblue);
transition: all 0.3s ease-in-out;
}



.header-grid {
  width: 100%;
  display: grid;
   grid-template-columns: repeat(2, auto);
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto;
}

.hc-right {
  text-align: right;
  order: 1;
}
.user-settings {
  display: inline-block;
  margin: 0 30px 0 0;
}

.user-name {
  color: var(--subtitle);
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

.user-image {
  width: 50px;
  height: 50px;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
transition: all 0.3s ease-in-out;
}

.user-image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 50%;
}

.user-setting:hover,
.user-settings:hover {
color: var(--green);
transition: all 0.3s ease-in-out;
}


.menu-tab {
  display: none;
}

 .menu-hide {
    right: -100%;
width: 100%;
  height: auto;
    position: fixed;
    z-index: 999999;
    transition: all 0.3s ease-in-out;
    top:80px;
    background: var(--mainpurple);
  }


#siteSearch {
  margin: 0 0 15px 0;
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 2px solid var(--bordergrey);
  padding: 10px;
  width: 100%;
  display: inline-block;
  height: 40px;
}




.add-card select, 
.add-card input[type="text"], 
.add-card input[type="number"], 
.add-card input[type="email"], 
.add-card input[type="password"], 
.add-card .input-checkbox,
.container select, 
.container input[type="text"], 
.container input[type="number"], 
.container input[type="email"], 
.container input[type="password"], 
.container .input-checkbox {
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 2px solid var(--bordergrey);
  padding: 10px;
  width: 100%;
  display: inline-block;
  margin: 0;
  height: 50px;
}

.solo-button {
  margin: 0 auto;
  max-width: 350px;
}


.connect-btn,
.save-form  {
background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0;
  cursor: pointer;
  width: 100%;
}

.del-form  {
background: var(--red);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-block;
  margin: 10px 0;
  text-align: center;
  cursor: pointer;
  width: 100%;
}


.del-form:hover,
.save-form:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}


.dl-but {
  background: var(--mainpurple);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
    font-weight: normal;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  display: block;
  margin: 15px 0 5px 0;
  cursor: pointer;
  width: 250px;
  text-align: center;
}
.dl-but:hover {
  background: var(--mainblue);
  color: var(--white)!important;
  cursor: pointer;
}

.dnwp h5 {
  font: 17px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 20px 0 5px 0;
  font-weight: 600;
  padding: 0;
}

.api-bg {
  background: var(--bordergrey);
  color: var(--text);
  font-weight: 500;
  padding: 8px 15px;
  display: block;
  width: 250px;
  text-align: center;
  margin: 15px 0 0 0;
}


.add-site-modal {
  background: var(--green);
  border: 0;
  font: 14px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin: 20px 0 0 0;
  cursor: pointer;
  width: 100%;
}


.add-site-modal i {
  font-size: 15px;
  margin: 0;
  line-height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.add-site-modal span {
  margin: 1px 0 0 8px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}


.add-site-modal:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}



.disconnect-btn {
  background: var(--rating-color-meh);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: var(--text);
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin: 20px 0;
  cursor: pointer;
  width: 220px;
  text-align: center;
}


.cat-titles,
#catSites {
  display: none!important;
}

.cat-titler,
#typeFilterGroup {
  display: block!important;
}

.disconnect-btn:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

.grid-opt .del-form, .grid-opt .disconnect-btn{
  margin: 20px 0!important;
  width: 220px!important;
  padding: 15px!important;
}


.connect-btn  {
background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin: 20px 0;
  cursor: pointer;
  width: 220px;
  text-align: center;
}

.connect-btn:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

.two-ss .connect-btn,
.two-ss .disconnect-btn {
  width: 100%;
}

.can-div {
  height: 300px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.can-divs {
  height: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.can-div-moz {
  height: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.modal-inner select, 
.modal-inner input[type="text"], 
.modal-inner input[type="number"], 
.modal-inner input[type="email"], 
.modal-inner input[type="password"], 
.modal-inner .input-checkbox {
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 2px solid var(--bordergrey);
  padding: 10px;
  width: 100%;
  display: inline-block;
  margin: 5px 0 15px 0;
  height: 50px;
}

.modal-inner label {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.modal-inner h3 {
  font: 22px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 15px 0;
  font-weight: 600;
  padding: 0;
}


.update-message {
  position: fixed;
  z-index: 99999999999999;
  bottom: 0;
  right: 0;
  background: var(--green);
  color: var(--white);
  padding: 10px 15px;
  font-weight: 600;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    animation: slideNoticeAnim 3s forwards;  
}

.up-red {
  background: var(--red);
  color: var(--white);
}

@keyframes slideNoticeAnim {
    0% {
        max-height: 0;
        opacity: 0;
    }
    10% {
        max-height: 50px; /* Adjust based on content height */
        opacity: 1;
    }
    80% {
        max-height: 50px;
        opacity: 1;
    }
    100% {
        max-height: 0;
        opacity: 0;
    }
}

.card.loading .card-content {
    opacity: 0;
}

.card .spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 4px solid #ccc;
    border-top: 4px solid #4b49ac;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.card.loading .spinner {
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.dash-site-grid {
  width: 100%;
  margin: 30px auto;
  display: grid;
  grid-template-columns: 250px 3fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.site-dash h5, .site-con-col h5 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px 1px;
}

.serp-dash h5 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 5px 1px;
}


.site-dash {
  position: relative;
}

.site-con-col {
  margin: 0 0 5px 0;
}


.dash-block {
  margin: 30px 0;
  position: relative;
}

.dash-block h2 {
  font: 22px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.dash-title {
  margin: 0;
}

.avatar-uploader {
  border: 2px dashed var(--bordergrey);
  border-radius: 0;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: var(--lightgrey);
}

.avatar-uploader img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#avatar-preview {
width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto !important;
  display: block;
  max-width: 250px;
}


.avatar-uploader.dragover {
    background: #e0f7fa;
}

#cropper-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#cropper-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: hidden;
    width: 300px;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#cropper-container {
    width: 260px;
    height: 260px;
    position: relative;
}

#cropper-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 900px) {
    #cropper-modal-content {
        width: 350px;
        height: 500px;
    }
    #cropper-container {
        width: 310px;
        height: 310px;
    }
}



.cropper-buttons {
    margin-top: 10px;
}
.cropper-buttons button {
margin: 20px 0!important;
  display: block;
}

.drag-text {
  text-align: center;
  margin: 10px 0 0 0 !important;
font-weight: 600;
}

.padd{

  margin: 30px auto;
}

.form-set select, 
.form-set input[type="text"], 
.form-set input[type="url"], 
.form-set input[type="number"], 
.form-set input[type="email"], 
.form-set input[type="password"], 
.form-set .input-checkbox {
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 2px solid var(--bordergrey);
  padding: 10px;
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  height: 50px;
}

#timeForm {
  margin: 0;
}

.tz-title {
  font: 20px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 5px 0;
  font-weight: 600;
  padding: 0;
}


.grid-opt { 
width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
 }

.grid-opt h4 {
  margin: 0 0 10px 0;
}

.grid-opt-col i {
  margin: 0 5px 0 0;
}

.grid-opt-col p {
  font-weight: 600;
}

/* 
==========================================================================
FOOTER
==========================================================================
*/

.seoh {
  margin: 0 auto 30px auto;
}

.new-set {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 30px auto;
}


.card-report {
  margin: 0 auto 30px auto;
}

footer {
  clear: both;
  font-size: 14px;
  margin: 20px auto 0 auto;
  font-weight: 600;
  border-top: 1px solid var(--bordergrey);
}

.footer-col p {
  margin: 0!important;
}

.uptime-metrics { 
width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
 }



.pad-grid {
  margin: 50px 0;
}

#monthlyReportResult thead {
  background: var(--mainpurple);
}

#monthlyReportResult thead th:first-of-type {
  width: 40%;
}
#monthlyReportResult thead th {
  width: 30%;
}

#monthlyReportResult table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  width: 100%;
  margin: 0 auto 30px auto;
  text-align: left;
}

#monthlyReportResult tbody td {
  padding: 15px !important;
  border-right: 1px solid var(--bordergrey)!important;
  color: var(--text);
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
}

#monthlyReportResult tbody td:nth-of-type(1) {
  border-right: 1px solid var(--bordergrey)!important;
  border-left: 1px solid var(--bordergrey)!important;
  min-width: unset;
}

#monthlyReportResult tbody tr {
  border-top: 0!important;
    border-bottom: 1px solid var(--bordergrey)!important;
}


.uptime-metrics .big-card p {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: -1px 0 0 0;
  padding: 0;
  font-weight: 600;
  color: var(--textalt);
}

.uptime-metrics .big-card {
  padding: 35px 15px;
}

.up1 h5 {
  font: 35px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: var(--mainblue);
}
.up2 h5 {
  font: 35px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: var(--mainpurple);
}
.up3 h5 {
  font: 35px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-weight: 800;
  color: var(--midpurple);
}

.screen-card {
  padding: 0;
  border: 0;
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid {
  width: auto;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
  margin: 0 20px 0 110px;
  padding: 20px 10px;
}

.fc-right {
  text-align: right;
  order: 1;
}

.user-pad {
  margin: 30px 0 0 0;
}

.noti-pad {
  margin: 20px 0 0 0;
}

.grid-col-user {
  position: relative;
 
}

.grid-col-user .save-form {
  margin: 0!important;
  width: 200px;
}

.grid-col-user .disconnect-btn,
.grid-col-user .del-form {
  margin: 10px 0 0 0!important;
  width: 200px;
}

.add-card {
display:none; 
position:fixed; 
top:0; 
left:0; 
width:100%; 
height:100%; 
background:rgba(0,0,0,0.6); 
z-index:99999999999;
}

.modal-inner {
 background:#fff; 
width:100%; 
max-width:600px; 
margin:100px auto; 
padding:20px; 
position:relative; 
border-radius:15px; 
}

.seo-block {
  margin: 15px 0;
}

.block-title {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 10px 0!important;
  font-weight: 600;
  padding: 0;
}

.blocks-title {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 10px 0!important;
  font-weight: 600;
  padding: 0;
}


.seo-block h5 {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 10px 0;
  font-weight: 600;
  padding: 0;
}

.char-count {
  padding: 5px 0!important;
}

.char-count span {
  font-weight: 700;
  text-transform: uppercase;
}
.char-rec {
  font-weight: 600 !important;
  padding: 0 0 0 5px;
  text-transform: unset !important;
}

.seo-block h5 span {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.seo-block h5 i {
  display: inline-block;
  font-size: 13px;
  margin: -4px 5px 0 0;
  color: var(--midpurple);
  vertical-align: middle;
}

.card-lined i,
.block-title i {
  display: inline-block;
  font-size: 14px;
  margin: -4px 5px 0 0;
  color: var(--mainpurple);
  vertical-align: middle;
}

.btn-connect-property {
background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  display: block;
  margin: 5px 0 0 0;
  cursor: pointer;
  width: 100%;

}

.ga-set p {
  margin: 10px 0!important;
}

.ga-an {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin: 0px 0 15px 0!important;
}

#deleteSiteBtn {
background: var(--red);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  margin: 5px 0;
  cursor: pointer;
  width: 100%;

}

.re-con {
  background: var(--rating-color-meh);
  color: var(--text);
}

.log-up {
  position: relative;
  width: 15px!important;
  height:35px; 
  background: var(--green);
  display:inline-block;
  margin: 0 1px;
  padding:0;
    border-radius: 3px;
}
.log-down {
  position: relative; 
  width: 15px!important;
  height:35px; 
  background: var(--red);
display:inline-block; 
  margin: 0 1px;
  padding:0;
    border-radius: 3px;
}

.tooltipup {
  visibility: hidden;
  width: 75px;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  position: absolute;
  top: 150%;
  right: -25px;
  font-size: 14px;
  line-height: 20px;
  z-index: 99999;
}

.tooltipup::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 25px;
  margin-left: -5px;
  border-top: 8px solid transparent;
  border-bottom: 12px solid var(--main-color);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.uptime-spans span:hover .tooltipup {
  visibility: visible;
  opacity: 1;
}



.btn-connect-property:hover,
#deleteSiteBtn:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

.search-preview {
    display: flex;
    align-items: flex-start;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    max-width: 800px;
    background: #fff;
    margin: 0;
}
.favicon-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  padding: 5px;
  display: block;
  margin: 0 15px 0 0;
  border: 2px solid var(--bordergrey);
}
.preview-content h4 {
    margin: 0;
    font-size: 16px;
    font-family: Arial,sans-serif;
    font-weight: 600;
line-height: 22px;
}
.preview-content .url {
    color: #70757a;
 font-size: 14px;
  margin: 0;
  font-family: Arial,sans-serif;
}
.preview-content .title {
  color: #1558d6;
  font-size: 18px;
  margin: 7px 0 3px -55px;
  font-weight: 500;
  font-family: Arial,sans-serif;
  line-height: 24px;
}
.preview-content .description {
    color: #3c4043;
  font-size: 14px;
  font-family: Arial,sans-serif;
  line-height: 22px;
  margin: 0 0 0px -55px;
}

#sitesGrid .card {
  padding: 0;
  border:0;
  background: var(--white);
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.dash-card-img {
  overflow: hidden;
  height: 200px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 1px solid var(--bordergrey);
  border-left: 1px solid var(--bordergrey);
  border-right: 1px solid var(--bordergrey);
}

.dash-card-info {
  position: relative;
  padding: 13px 15px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--bordergrey);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.dash-card-info h3 {
  font: 18px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 600;
  padding: 0;
  display: block;
}

.mobile-site-nav {
  display: none;
}


.dash-card-info p {
  color: var(--textalt)!important;
  margin: 0!important;
  font-size: 14px;
}



.site-controls {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 370px 200px;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: center;
  align-items: center;
  margin: 20px auto 30px auto;
}

.reset-btn {
  font: 20px 'Figtree', Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mainblue);
  display: inline-block;
  border: 0;
  background: none;
  margin: 0;
  cursor: pointer;
}

.reset-btn:hover {
  color: var(--text);
}

#sortSites, #catSites {
  margin: 0 0 15px 0;
  height: 40px !important;
}

#typeFilterGroup {
  width: 100%;
  margin: 0 0 15px 5px;
}

.sdt-circle {
  width: 18px;
  height: 18px;
  background: var(--bordergrey);
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.site-dash-type {
  position: absolute;
  top: 15px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.sdt-client .sdt-circle {
  background: var(--mainblue);
}

.sdt-personal .sdt-circle {
  background: var(--green);
}

.sdt-other .sdt-circle {
  background: var(--midpurple);
}


.custom-radios .rad-row {
  display: block;
  margin: 10px 0;
}
.custom-radios input[type=radio] {
  display: none;
}
.custom-radios input[type=radio] + label {
  /*! color: var(--white); */
  font: 15px 'Figtree', Helvetica , Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.custom-radios input[type=radio] + label span {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -2px 5px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  border: 0;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  line-height: 28px;
}
.custom-radios input[type=radio] + label span img {
  opacity: 0;
  transition: all 0.3s ease;
  padding: 2px;
}
.custom-radios input[type=radio]#color-1 + label span {
  background-color: var(--text);
}
.custom-radios input[type=radio]#color-2 + label span {
  background-color: var(--green);
}
.custom-radios input[type=radio]#color-3 + label span {
  background-color: var(--mainblue);
}
.custom-radios input[type=radio]#color-4 + label span {
  background-color: var(--midpurple);
}
.custom-radios input[type=radio]:checked + label span img {
  opacity: 1;
  width: 18px;
}

.ga-set {
  order: -1;
}

.noti-check-grid {
  width:100%;
   justify-items: stretch;
  align-items: center;
  display: grid;
  grid-template-columns: auto 90px 90px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}



.noti-check {
  padding: 15px 0 15px 15px;
  border-bottom: 1px solid var(--bordergrey);
  border-left: 1px solid var(--bordergrey);
  height: 100%;
  align-content: center;
  line-height: 22px;
}

.noti-check .user-check {
  padding: 0;
}

.noti-check-title {
  padding: 15px 10px 15px 15px;
}


.noti-check  .checkmark {
  top: -18px;
  left: 18px;
  margin: 0;
}


.nc-last {
  border-right: 1px solid var(--bordergrey);
}


.nh-row {
  background: var(--midpurple);
  color: #fff;
  border: 0;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0 10px 15px;
}

.nh-row-center {
text-align:center;
padding: 10px 0;
}

/* 
==========================================================================
MEDIA QUERIES
==========================================================================
*/

@media screen and (max-width: 1250px) {

.grid-1-3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-items: stretch;
  align-items: stretch;

}
.intro-grid,
  .grid-1-3,
.grid-1-2-2

 {
    margin: 30px auto 20px auto;
  }


.grid-col.screen-col {
  display: none;
}
}

@media screen and (max-width: 1150px) {
.grid-opt { 
width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
 }

.grid-opt .del-form, .grid-opt .disconnect-btn {
  margin: 10px 0 !important;
  width: 200px !important;
  padding: 10px 20px !important;
}

.site-controls {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: center;
  align-items: center;
  margin: 20px auto 20px auto;
}

}

@media screen and (max-width: 1100px) {
.grid-1-2-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-3-2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}

.grid-1-2-2 .card {

  padding: 25px;
}

.big-card h1 {
  margin: -5px 0 0 0;
}

.block-col .card {
  height: 130px;
}

.upt-grid {
  margin: 20px auto 0 auto;
}

.grid-1-3-noti {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}


}

@media screen and (max-width: 1000px) {
.check-drop .card-padd {
  padding: 20px 20px 0 20px;
}

.check-drop .user-check {
  padding: 0 30px 20px 35px;
}

}



@media screen and (max-width: 900px) {

.an-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.rating {
  margin: 0 auto;
}

  .grid-1-2-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

.grid-1-2-3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}

.grid-1-2-noti {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}

#avatar-preview {
  max-width: 200px;
}

  .grid-1-2-2 .card {
    height: auto;
  }
  .upt-grid {
    margin: 0 auto;
  }

}

@media screen and (max-width: 750px) {

.grid-1-3 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.grid-intro.gi-mobile {
  display: none;
}

.modal-inner {
width:100%; 
max-width:350px; 
margin:50px auto; 

}

#typeFilterGroup {
  width: 100%;
  padding: 0;
  text-align: center;
  display: block;
}

.site-controls {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-items: center;
  align-items: center;
  margin: 20px auto 20px auto;
}

.grid-1-3-noti {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto 20px auto;
}




}

@media screen and (max-width: 650px) {
  
.grid-2-2-up,
  .grid-3-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: inital;
    margin: 0 auto;
  }

.grid-1-2-site-dash .card {
  height: 100px;
}



}




@media screen and (max-width: 1300px) {

.grid-1-6 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0 auto 30px auto;
}


.intro-grid {
  grid-template-columns: 1fr 1fr;

}



}

@media screen and (max-width: 1300px) {
#sitesGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
}

@media screen and (max-width: 1050px) {
.grid-1-2 {
width: 100%;
  display: grid;
  grid-template-columns: unset;	
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0 auto 20px auto;
}

.seoh {
  margin: 0 auto !important;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.two-ss {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0 auto 20px auto;
}


.search-preview {
    max-width: unset;
}

.seoh .card {
  margin: 0 0 20px 0;
}

.card-report {
  margin: 0 auto 20px auto;
}

.grid-1-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;

}
.intro-grid,
  .grid-1-3,
.grid-1-2-2

 {
    margin: 20px auto 20px auto;
  }

.grid-1-6 {
  margin: 0 auto 20px auto;
}

.noti-pad {
  margin: 20px 0 0 0;
}

.user-pad {
  margin: 20px 0 0 0;
}

footer {
  margin: 10px auto 0 auto;
}


.three-card-1 { grid-area: 1 / 1 / 2 / 2; }
.three-card-2 { grid-area: 1 / 2 / 2 / 3; }
.three-card-3 { grid-area: 2 / 1 / 3 / 3; } 

}


@media screen and (max-width: 1000px) {
  #sitesGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

.add-site-modal {
  padding: 10px;
  margin: 0;
  cursor: pointer;
  width: 100%;
  height: 40px;
}


.dash-site-grid {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.dash-block {
  margin: 30px 0 20px 0;
}

.site-control {
  width: 100%;
  display: grid;
   grid-template-columns: 1fr 1fr;
grid-column-gap: 15px;
    grid-row-gap: 15px;
justify-items: stretch;
  align-items: end;
}


.custom-radios .rad-row {
  display: inline-block;
  margin: 0 10px;
}

#siteSearch,
#sortSites {
  margin: 0;
}

.cat-titles,
  #catSites {
    display: block!important;
  }

.cat-titler,
  #typeFilterGroup {
    display: none!important;
  }

.site-con-col {
  margin: 0;
}

  #catSites, #siteSearch, #sortSites {
    margin: 2px 0 0 0!important;
  }

}


@media screen and (max-width: 980px) {

nav {
  margin: 0 40px 0 0;
}

nav li {
  margin: 0 0 0 40px;
}

.single-nav li {
  margin: 0 10px 0 0;
}

}

@media screen and (max-width: 920px) {
  .intro-grid {
    grid-template-columns: unset;

  }




.grid-solos label,
.grid-solo label,
.intro-block label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 2px;
}

.grid-1-2-site-dash {
  width: 100%;
  display: grid;
  grid-template-columns: auto;

}


}


@media screen and (max-width: 880px) {

 .single-nav li {
    margin: 0;
    text-align: center;
  }

.single-nav i {
  font-size: 22px;
  margin: 0;
}

.single-nav a {
  padding: 10px 0 0 0;
  height: 44px;
  width: 44px;
  display: inline-block;
}

#sitesGrid {
  width: 100%;
  display: grid;
  grid-template-columns:1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;


}


.single-nav {
  padding: 10px 0;
}


.side-ava {
  position: absolute;
  bottom: 30px;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
}


.nav-mob li {
  list-style: none;
  display: block;
}

.nav-mob i {
  margin: 0 5px 0 0;
}
.nav-mob a {
  list-style: none;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 500;
    display: block;
  background: var(--mainpurple);
  color: var(--white);
}


.nav-mob .dropdown-sites {
  display: none;
  list-style: none;
  padding-left: 0!important;
  background: none!important;
}

#mySitesTrigger .fa-chevron-down {
  position: absolute;
  right: 10px;
  top: 15px;
}

.nav-mob .dropdown-sites li a {
  padding: 8px 0 8px 40px!important;
  display: block;
  font-size: 15px;
  text-decoration: none;
  color: var(--white)!important;
}



.nav-mob a:hover {
  background: var(--darkpurple)!important;
  color: var(--white);
}

.single-nav ul {
	display: grid;
  grid-template-columns: repeat(5, auto);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-items: stretch;
  align-items: center;

}




}


@media screen and (max-width: 800px) {

.intro-title h3 {
  font-size: 16px;
}

.intro-select i {
  position: absolute;
  top: 4px;
  left: -20px;
}
  .intro-filter, .intro-select {
    width: 15px;
  }
.moz-col .intro-selects {
    width: 15px;
  }

.moz-col .intro-selects i {

  left: -20px;
}

.three-card-1, .three-card-2, .three-card-3 { grid-area: unset; } 

.grid-1-2-up {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 20px auto;
}


}

@media screen and (max-width: 760px) {
  .grid-1-6 {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin: 0 auto 20px auto;
  }
}


@media screen and (max-width: 700px) {

  #sitesGrid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;

  }

  .site-control {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-items: stretch;
    align-items: end;
  }

.add-site-modal {
  margin: 0 0 15px 0;
  order: -1;
}


  .theme-toggle {
    right: 160px;
  }

td {
  padding: 15px 10px !important;
}
td:first-of-type {
  width: 40%;
}



.two-ss {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin: 0 auto 20px auto;
}




tbody td:nth-of-type(2n) {
  min-width: unset;
}

tbody td {
    word-break: break-word;
}

  .footer-grid {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

.fc-right {
  text-align: center;
  margin: 5px 0 0 0;
}

.hc-right,
.side-nav {
  display: none;
}

.logo {
  width: 150px;
 transition: all 0.1s ease-in-out;
}

  .menu-tab {
    width: 70px;
    height: 70px;
    position: absolute;
    z-index: 9999999;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    top: 10px;
    right: 10px;
    display: block;
  }

  .menu-tab:hover {
    cursor: pointer;
    transition: all 0.1s ease-in-out;

  }



.menu-tab div {
  width: 33px;
  height: 4px;
  background-color: var(--text);
  display: block;
  margin: 5px 20px;
  transition: all 0.3s ease-in-out;
}

.menu-tab div:nth-child(1) {
  margin-top: 20px;
}

 .menu-tab.actived {
    right: 10px;
    position: absolute;
    transition: all 600ms ease-in-out;
    top: 10px;
     z-index: 9999999;
  }

.menu-tab.actived #one {
  transform: translateY(9px) rotate(-135deg);
  transition: all 0.3s ease-in-out;
  background-color: var(--text);
}

.menu-tab.actived #two {
  opacity: 0;
  transition: 0.3s ease;
}

.menu-tab.actived #three {
  transform: translateY(-9px) rotate(-45deg);
  transition: all 0.3s ease-in-out;
  background-color: var(--text);
}

.nav-mob {
  border-right: 0;
  padding: 30;
}

.menu-hide.show {
  right: 0;
 top:80px;
  transition: all 0.3s ease-in-out;
}
.container {
  margin: 80px 20px 20px 20px;
  padding: 0;
}


.user-settings {
display: none;
}



.mobile-site-nav ul {
  display: grid;
  grid-template-columns: repeat(7, auto);
  grid-column-gap: 0;
  grid-row-gap: 0;
  justify-items: stretch;
  align-items: center;
}


  .mobile-site-nav {
    display: block;
    background: white;
    margin: 25px 0;
    border: 1px solid var(--bordergrey);
    border-radius: 0;
  }

.mobile-site-nav .secondary-nav {
  padding: 0!important;

}


.mobile-site-nav a {

  width: 50px;
  height: 50px;
}

}


@media screen and (max-width: 620px) {


  .site-control {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

.add-site-modal {
  margin: 0 0 15px 0;
  order: -1;
}

.header-grid {
  width: 100%;
  display: block;
}

.tog-lab {
  width: 45px;
}


.hc-right {
display:none;
}

#sitesGrid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;


}

.card {
  padding: 15px;
}

 .logo {
    width: 45px!important;
    transition: all 0.1s ease-in-out;
    height: 45px!important;
    top: 17px;
    left: 0;
    right: 0;
  }

.notification-wrapper {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 150px;
    text-align: right;
  }

  .logo1 {
    display: none;
  }


}


@media screen and (max-width: 480px) {
  .grid-1-6 {
    grid-template-columns: unset;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin: 0 auto 20px auto;
  }

 #typeFilterGroup {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 0;
    grid-row-gap: 15px;
    margin: 0 auto;
  }

.mobile-site-nav a {
  width: 45px!important;
  height: 45px!important;
}


}

@media screen and (max-width: 370px) {


.tdark:after {
    left: -14px;
}

.tlight::after {
    left: -12px;
}
}




@media screen and (max-width: 320px) {

 .container {
	min-width:240px;
	width:100%;
 }
 
}


.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 80px;
  background: var(--white);
  border-right: 1px solid var(--bordergrey);
}


.side-nav li {
  list-style: none;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.primary-nav {
  padding: 100px 0 20px;
}

.secondary-nav {
  padding: 10px 0 10px 0;
}



.side-nav a {
  margin: 5px auto;
  text-align: center;
  padding: 12px;
  background: none;

  display: block;
  width: 45px;
  height: 45px;
}

.side-nav a:hover {
 background:#f0ecff;
}

.side-nav .active a {
  background: var(--mainblue);
  color: var(--white);
  transition: all 0.1s ease-in-out;
}

.side-nav .active a:hover .nav-fa {
  color: var(--white);
}



.side-nav svg {
  width:100%;
  height:auto;
  display:block;
margin:0;
  text-align:center;

}

.side-nav .ga-error {
  margin: 5px auto;
  text-align: center;
  padding: 12px;
  background: none;

  display: block;
  width: 45px;
  height: 45px;
}

.side-nav .nav-fa {
fill: #959595;
}

.side-nav .nav-fa-no {
fill: #e3e3e3;
}

.side-nav a:hover .nav-fa {
 fill: #4b49ac;
}

.side-nav .active a:hover .nav-fa {
  fill: var(--white);
}


.side-nav .active .nav-fa  {
fill:var(--white);
  transition: all 0.1s ease-in-out;
}

.mobile-site-nav a {
  margin: 5px auto;
  text-align: center;
  padding: 12px;
  background: none;

  display: block;
  width: 50px;
  height: 50px;
}

.mobile-site-nav a:hover {
 background:#f0ecff;
}

.mobile-site-nav .active a {
  background: var(--mainblue);
  color: var(--white);
  transition: all 0.1s ease-in-out;
}




.mobile-site-nav svg {
  width:100%;
  height:auto;
  display:block;
margin:0;
  text-align:center;

}

.mobile-site-nav .nav-fa {
fill: #959595;
}

.mobile-site-nav a:hover .nav-fa {
 fill: #4b49ac;
}

.mobile-site-nav .active a:hover .nav-fa,
.mobile-site-nav .active .nav-fa  {
fill:var(--white);
  transition: all 0.1s ease-in-out;
}

.mobile-site-nav .ga-error {
  margin: 5px auto;
  text-align: center;
  padding: 12px;
  background: none;

  display: block;
  width: 50px;
  height: 50px;
}

.mobile-site-nav .nav-fa-no {
fill: #e3e3e3;
}

.nav-mob a {
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  background: none;
  display: block;

}


.nav-mob span {
  display: inline-block;
  vertical-align: middle;
  padding: 3px 0 0 8px;
}

.nav-mob svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
}


.nav-mob .active a {
  background: var(--darkpurple);
  color: var(--white);
  transition: all 0.1s ease-in-out;
  border-radius: 0;
}

.nav-mob .nav-fa {
fill: #fff;
}

.nav-mob a:hover .nav-fa {
 fill: #fff;
}

.nav-mob .active .nav-fa  {
fill:var(--white);
  transition: all 0.1s ease-in-out;
}

.nav-mob a:hover {
 background:var(--darkpurple);
 color:#fff!important;
}


.user-plan {
  display: inline-block;
  margin: 0 30px 0 0;
  background: var(--mainpurple);
  padding: 5px 20px;

}

.user-plan p {
  margin:0;
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}



@media screen and (min-width: 1800px) {

.header-grid {
  margin: 0;
  max-width: 1800px;
}

.max-wrap {
  max-width: 1800px;
  position: relative;
}
 
}

.col-line,
.card.psc {
  padding: 0;
}

.card-lined {
  padding: 10px 20px;
  border-bottom: 1px solid var(--bordergrey);
}

.card-lined-top {

  border-top: 1px solid var(--bordergrey);
}

.card-lined h4 {
  font: 18px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 600;
  padding: 0;
}


.card-speed {
  margin: 0;
  padding: 25px;
}


.card-speed .an-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 0;
  justify-items: center;
  align-items: center;
  margin: 0 auto 20px auto;
  max-width: 350px;
}

@media screen and (max-width: 900px) {
.card-speed .an-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-items: center;
  align-items: center;
}
}


.tooltip {
  position: absolute;
  right: 16px;
  top: 6px;
  font-size: 17px;
  color: var(--textalt);
  cursor: help;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: var(--darkblue);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 150%;
  left: -159px;
  font-size: 14px;
  line-height: 20px;
  z-index: 99999;
}


.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 25px;
  margin-left: -5px;
  border-top: 8px solid transparent;
  border-bottom: 12px solid var(--darkblue);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.timetip {
  top: 10px !important;
}

.serp-card .tooltip {
  top:10px;
}

.block-title {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 !important;
  font-weight: 600;
  padding: 0;
}

.blocks-title {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 10px 0!important;
  font-weight: 600;
  padding: 0;
}



.card-padd {
  padding: 20px;
}

.card-padd-noti {
  padding: 20px;
}

.cp-alt {
  padding: 15px 25px 25px 25px;
}

.table-col {
  padding: 15px;
}
.table-col label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.table-col .last-refs {
  margin: 20px 0 10px 0 !important;
}

.seo-block {
  margin: 0 0 20px 0;
}


.auth-body {
  position: relative;
  background: #232234;
  width: 100%;
  height: 100%;
}

.auth-inner {
  position: relative;
  z-index: 99;
  margin: 50px auto 0 auto;
  max-width: 500px;
  width: 100%;
  padding: 0 30px;
}

.auth-reg {
  max-width: 800px;
}


.reg-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 10px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}


.auth-inner .logo-auth {
  margin: 0 auto 15px auto;
}

.login-box {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
}

.login-box h2 {
  font: 22px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 15px 0;
  font-weight: 600;
  padding: 0;
}

 .login-box input[type='checkbox'] {
  margin: -3px 5px 0 0;
}

.login-box label {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.auth-field {
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 2px solid var(--bordergrey);
  padding: 10px;
  width: 100%;
  display: inline-block;
  margin: 0 0 15px 0;
  height: 50px;
}

.go-auth  {
background: var(--green);
  border: 0;
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  margin: 15px 0 0 0;
  cursor: pointer;
  width: 100%;
}


.go-auth:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

.sign-options {
  text-align: center;
  margin: 30px auto 0 auto;
}

.sign-options p {
  margin: 0;
  font-weight: 600;
}

.sign-options a {
  color: var(--mainpurple);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-style: dotted;
  display: block;
  margin: 0 0 5px;
}

.sign-options a:hover {
  color: var(--mainblue);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-style: dotted;
  display: block;
  margin: 0 0 5px;
}


.blur1 {
  background: var(--mainpurple);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(250px);
  z-index: 1;
  position: fixed;
  left: 0;
  top: 0;
}

.blur2 {
  background: var(--mainpurple);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
  position: fixed;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1050px) {
  .blur1, .blur2 {
    width: 200px;
    height: 200px;
    filter: blur(75px);
  }
}

@media screen and (max-width: 750px) {
.auth-inner {
  position: relative;
  z-index: 99;
  margin: 25px auto 0 auto;
}



.login-box {
  padding: 20px;
}

.auth-field {
  padding: 10px;
  margin: 0 0 10px 0;
  height: 45px;
}

}

.dataTables_wrapper .dataTables_paginate {
  padding: 0 !important;
  margin: 20px 0 5px 0 !important;
  font-size: 14px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  float: none !important;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {

  display: none;
}


.dataTables_wrapper .dataTables_info {
  padding: 0 !important;
  margin: 20px 0 5px 3px !important;
  font-size: 14px !important;
}


.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  color: var(--text) !important;
  border: 0 !important;
  background: transparent;
  box-shadow: none!important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: unset!important;
  padding: 0 10px!important;
  margin: 0!important;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: inherit !important;
  border: 0 !important;
  border-radius: 0!important;
  background: transparent;
  font-size: 14px!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: var(--white) !important;
  border: 0!important;
  background: var(--midpurple)!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: var(--white) !important;
  border: 0!important;
  background: var(--darkblue)!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  color: var(--white) !important;
} 

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid var(--bordergrey)!important;
}

table.dataTable thead > tr > th.sorting::before, table.dataTable thead > tr > th.sorting::after, table.dataTable thead > tr > th.sorting_asc::before, table.dataTable thead > tr > th.sorting_asc::after, table.dataTable thead > tr > th.sorting_desc::before, table.dataTable thead > tr > th.sorting_desc::after, table.dataTable thead > tr > th.sorting_asc_disabled::before, table.dataTable thead > tr > th.sorting_asc_disabled::after, table.dataTable thead > tr > th.sorting_desc_disabled::before, table.dataTable thead > tr > th.sorting_desc_disabled::after, table.dataTable thead > tr > td.sorting::before, table.dataTable thead > tr > td.sorting::after, table.dataTable thead > tr > td.sorting_asc::before, table.dataTable thead > tr > td.sorting_asc::after, table.dataTable thead > tr > td.sorting_desc::before, table.dataTable thead > tr > td.sorting_desc::after, table.dataTable thead > tr > td.sorting_asc_disabled::before, table.dataTable thead > tr > td.sorting_asc_disabled::after, table.dataTable thead > tr > td.sorting_desc_disabled::before, table.dataTable thead > tr > td.sorting_desc_disabled::after {
line-height: 11px!important;
  font-size: 12px!important;
  opacity: 0.5!important;
}

table.dataTable thead > tr > th.sorting_asc::before, table.dataTable thead > tr > th.sorting_desc::after, table.dataTable thead > tr > td.sorting_asc::before, table.dataTable thead > tr > td.sorting_desc::after {
  opacity: 1!important;
}




@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length {
  float: none !important;
    text-align: left!important;
  }


  .dataTables_wrapper .dataTables_filter {
  float: right !important;
    text-align: left!important;
  }

.reg-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 10px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}




}

@media screen and (max-width: 550px) {
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_length {
  float: none !important;
  max-width: unset!important;
}


}

@media screen and (max-width: 700px) {

.dash-time {
  display: none;
}

}

.user-check {
  display: inline-block;
  position: relative;
  padding: 0 30px 0 35px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
font-weight: 600;
}

.user-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: var(--legend-text-color);
}

.user-check:hover input ~ .checkmark {
  background-color: var(--legend-text-color);
}

.user-check input:checked ~ .checkmark {
  background-color: var(--green);
}


.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.user-check input:checked ~ .checkmark:after {
  display: block;
}

.user-check .checkmark::after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#notificationForm .grid-1-2-3 {
  align-items: start;
}

.client-email-wrapper {
  margin: 15px 0 0 0;
}

.client-toggle-links,
.client-toggle-link {
  font-weight: 600;
  color: var(--mainpurple);
}

.client-toggle-links:hover,
.client-toggle-link:hover {
  color: var(--text);
}

.client-toggle {
  margin: 10px 0 0 0;
}


.uptime-percent {
  position: absolute;
  top: 13px;
  right: 25px;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 15px;
}

.grid-1-up {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-items: stretch;
  align-items: inital;
  margin: 0 auto;
}


.uptime-hours, 
.uptime-spans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8px, 1fr));
  gap: 3px;
}

.uptime-spans .hour,
.uptime-hours .hour,
.uptime-spans span {
  width: 100%;
  height: 20px;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.uptime-spans .hour.up,
.uptime-hours .hour.up,
.uptime-spans .day.up    { background: var(--green); } /* green */

.uptime-spans .hour.down, 
.uptime-hours .hour.down,
.uptime-spans .day.down  { background: var(--red) } /* red */

.uptime-spans .hour.none,
.uptime-hours .hour.none,
.uptime-spans .day.none  { background: var(--legend-text-color) } /* gray */

.uptime-spans .hour .tip,
.uptime-hours .hour .tip, 
.uptime-spans .day .tip {
  display: none;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--white);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  height: auto !important;
  width: auto;
}

.uptime-spans .hour:hover .tip,
.uptime-hours .hour:hover .tip,
.uptime-spans .day:hover .tip {
  display: block;
}


.notification-wrapper {
  position: absolute;
  top: 20px;
  right: 110px;
}

.notification-bell {
  position: relative;
  cursor: pointer;
  font-size: 24px;
  color: var(--text);
}

#notifList div {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 24px;
  font-size: 15px;
}

.notif-count {
  position: absolute;
  top: -2px;
  right: -10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 0px 5px;
  height: 21px;
  width: 21px;
  text-align: center;
  font-weight: 600;
}

.notification-dropdown {
  display: none;
  position: absolute;
  right: -90px;
  top: 59px;
border-bottom: 1px solid var(--bordergrey);
  max-height: 500px;
  overflow-y: auto;
  z-index: 999999;
  width: 400px;
  text-align: left;
}

#markAllRead {
  color: #fff;
  font: 18px 'Figtree', Helvetica, Arial, sans-serif;
  padding: 0;
  background: none;
  border: 0;
  font-weight: 600;
  cursor: pointer;
position: absolute;
  top: 15px;
  right: 60px;
}

#deleteAllNotifications {
  color: #fff;
  font: 18px 'Figtree', Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding: 0;
  background: none;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}


#markAllRead:hover {
  color: var(--green);
  cursor: pointer;
}

#deleteAllNotifications:hover {
  color: var(--red);
  cursor: pointer;
}


.notification-dropdown.active {
    display: block;
    animation-name: dropPanel;
    animation-iteration-count: 1;
    animation-timing-function: all;
    animation-duration: 0.2s;
    box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);    
}

@keyframes dropPanel {
  0% {
    opacity: 0;
    transform: translateY(-100px) scaleY(0.5);
  }
}


.notification-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notification-dropdown ul li {
  padding: 10px 15px;
  border-left: 1px solid var(--bordergrey);
  border-bottom: 1px solid var(--bordergrey);
  border-right: 1px solid var(--bordergrey);
  border-top: 0;
  margin: 0;
}

.notification-dropdown ul li:last-of-type {
  border-bottom: 0;
}


.notification-wrapper small {
  font-size: 13px;
  color: var(--textalt);
}

.notification-wrapper h4 {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 600;
padding: 0;
  color:#fff;
}

.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 15px 20px;
  background: var(--text);
  position: relative;
  height: 50px;
}




@media screen and (max-width: 900px) {

.uptime-hours, .uptime-spans {
  gap: 5px;
}

#uptime-60 .uptime-spans {
  display: grid;
  grid-template-columns: repeat(30, auto);
}
}

@media screen and (max-width: 550px) {

#uptime-30 .uptime-spans {
  display: grid;
  grid-template-columns: repeat(15, auto);
}



}


@media screen and (max-width: 700px) {
.notification-wrapper {
  position: absolute;
  top: 20px;
  right: 100px;
}

.notification-dropdown {
  right: -75px;
  top: 59px;
  max-height: 450px;
  width: 300px;  
  border-radius: 0;
}


}



@media screen and (max-width: 420px) {
  .uptime-hours, .uptime-spans {
    gap: 3px;
  }
.grid-1-up .card-padd {
  padding: 15px;
}
.card-padd-noti {
  padding: 15px;
}

}

#edit-cms-btn {
  border: 0;
  background: var(--red);
  color: #fff;
  height: 25px;
  width: 25px;
  display: block;
  margin: 0;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 8px;
}

#edit-cms-btn:hover {
  border: 0;
  background: var(--text);
  color: #fff;
}

#cms-display p {
  margin: 0 0 0 35px;
  color: var(--text);
}

#cms-display {
  background: var(--white);
  color: var(--text);
  font: 16px 'Figtree', Helvetica, Arial, sans-serif;
  border: 0;
  padding: 10px 0;
  width: 100%;
  display: block;
  margin: 0;
  position: relative;
}

.cms-grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto 200px;
  grid-column-gap: 25px;
  grid-row-gap: 0;
  justify-items: stretch;
    align-items: inital;
}

.save-cms {
  background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  display: block;
  margin: 0;
  cursor: pointer;
  width: 100%;
  height: 50px;
}

.save-cms:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

@media screen and (max-width: 650px) {
.cms-grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto 150px;
}
}


#serpapi-status {
  margin: 0;
}

.serp-dash {
  margin: 0 0 25px 0;
}

.serp-padd {
  margin: 0;
}

#add-keyword-btn {
background: var(--midpurple);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 0;
  cursor: pointer;
  width: 150px;
}

#add-keyword-btn:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

#serpapi-save  {
background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 0;
  cursor: pointer;
  width: 150px;
}


#start-tracking-btn  {
background: var(--green);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 15px 0 0 0;
  cursor: pointer;
  width: 150px;
}


#start-tracking-btn:hover,
#serpapi-save:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

#serpapi-status a {
  color: var(--mainpurple);
  text-decoration: none;
  font-weight: 500;
}

#serpapi-status a:hover {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

#serpapi-disconnect {
  background: var(--red);
  border: 0;
  font: 15px 'Figtree', Helvetica, Arial, sans-serif;
    font-weight: normal;
  color: #fff;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 0 !important;
  text-align: center;
  cursor: pointer;
  width: 150px;
}

#serpapi-disconnect:hover {
  background: var(--text)!important;
  color: var(--white)!important;
  cursor: pointer;
}

#keyword-list li {
  background: #ffb23a;
  width: auto;
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  border-radius: 10px;
  color: #232234;
  position: relative;
  font-weight: 500;
}

.delete-btn {
  margin: 0;
  position: absolute;
  right: 5px;
  top: 6px;
  background: none;
  border: 0;
  color: #232234;
    cursor: pointer;
  font-size: 15px;
}

.delete-btn:hover {
  background: none;
  border: 0;
  color: var(--red);
    cursor: pointer;
  font-size: 15px;
}


#keyword-list {
  margin: 0 auto -10px auto;
}

.serp-col {
margin: 0 0 25px 0;
}

.form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto 150px;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  justify-items: stretch;
  align-items: inital;
margin: 0 0 10px 0;
}

@media screen and (max-width: 750px) {
.form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 0;
  grid-row-gap: 15px;
}
}

.disabled {
  opacity: 0;
  display: none;
  pointer-events: none;
  cursor: not-allowed;
}


#internalLinksTable_wrapper tr td:last-child {
  width: 100px!important;
  white-space: nowrap;
}



#internalLinksTable_wrapper .dataTable td {
  box-sizing: content-box;
  border-bottom: 1px solid var(--bordergrey) !important;
}

@media screen and (max-width: 700px) {
#internalLinksTable_wrapper td:first-of-type {
    width: auto;
  }
}

.count-box h2 {
  font: 30px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0;
  font-weight: 600;
  padding: 0;
  color: #fff;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.count-box {
  background: var(--text);
  padding: 0;
  text-align: center;
  width: 75px;
  height: 75px;
color:#fff;
}

.cb-red {
background:var(--red);
}
.cb-green {
background:var(--green);
}

.count-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 80px auto;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-items: stretch;
  align-items: center;
  margin: 0 auto 15px auto;
}

.count-text h5 {
  font: 17px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 0px 0;
  font-weight: 600;
  padding: 0;
}

.cb-rate {
  text-transform: uppercase;
  font-weight: 600;
}

.char-rec {
font-weight: 500 !important;
  padding: 0;
  display: block;
  color: var(--ctext);
  margin: -3px 0 0 -1px;
  font-size: 15px;
  font-style: italic;
}
.seo-block-new {
  margin: 0 0 20px 0;
  border-bottom: 1px solid var(--bordergrey);
  padding: 0 0 15px 0;
}

.seo-block-news {
  margin: 0;
  border-bottom: 0;
  padding: 0;
}

.schema-list {
  margin: 15px 0;
}

.schema-list h5 {
  font-size: 15px;
  margin: 0 0 2px 0;
  font-weight: 700;
}

.schema-green {
  color: var(--green);
}

.schema-red {
  color: var(--red);
}

.found-missing .fa-circle-check {
  color: var(--green);
  font-size: 18px;
  margin: -2px 3px 0 0;  
}
.found-missing .fa-circle-xmark {
  color: var(--red);
  font-size: 18px;
  margin: -2px 3px 0 0;  
}


.card-ssdom {
  position: relative;
  margin: 0 0 20px 0;
}
.card-ssdoms {
  position: relative;
  margin: 0;
}

.ssdom {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 10px 0;
  font-weight: 600;
  padding: 0;
}

.sd-status h6 {
  margin: 0 0 5px 0;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
}

.sd-status .last-ref {
  margin: 15px 0 0 0 !important;
}

.dataTables_length:after {
  content: "Per Page";
  position: absolute;
  left: 35px;
  top: 3px;
}

#internalLinksTable_wrapper .dataTable.no-footer {
  border-bottom: 0!important;
}

.sech {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
    font-weight: normal;
  font-weight: normal;
  margin: 0 0 5px 0;
  font-weight: 600;
  padding: 0;
}

.sec-block {
  margin: 0 0 20px 0;
}

.sec-block:last-of-type {
  margin: 0;
}

.side-navs {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100vh; 
  width: 80px;
  z-index: 9999;
  background: var(--white);
  border-right: 1px solid var(--bordergrey);
  transition: width 0.3s ease;
  overflow-y: auto;      
  overflow-x: hidden;  
 scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.4) transparent;
  -webkit-overflow-scrolling: touch;
}

.side-navs::-webkit-scrollbar {
  width: 6px;           
}
.side-navs::-webkit-scrollbar-track {
  background: transparent; 
}
.side-navs::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.4);
  border-radius: 3px;
}

.side-navs {
  direction: rtl;        
}
.side-navs > * {
  direction: ltr;       
}



.side-navs.actives {
  width: 250px;
  box-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.side-navs .title {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-navs.actives .title {
  opacity: 1;
}

.side-navs ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.side-navs ul li {
  list-style: none;
  width: 100%;
  position: relative;
  margin: 4px 0;
}


.side-navs ul li a:hover {
    color: #fff;
}

.side-navs ul li:hover a::before {
    background-color: var(--midpurple);
    width: 100%;
}

.side-navs ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    transition: .1s;
}

.side-navs ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: .1s;
}

.side-navs ul li a .icon {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 35px;
  margin: 0;
  text-align: center;
  font-size: 20px;
  color: var(--mainpurple);
  padding: 0 22px 0 30px;
}

.side-navs ul li a .icon i {
  position: relative;
  display: inline-block;
 vertical-align: middle; 
}



.side-navs ul li a .title {
  position: relative;
  font-size: 15px;
  min-width: 120px;
  margin: 0 0 0 15px;
  font-weight: 500;
 display: inline-block;
  vertical-align: middle; 
}



.toggles {
  cursor: pointer;
  position: absolute;
  font-size: 22px;
  top: 21px;
  left: 30px;
}




.side-navs ul li a:hover .icon,
.side-navs ul li a:hover {
    color: #fff;
}


.side-navs .active .icon {
  color: #fff!important;
}

.side-navs .active {
  background: var(--mainblue);
  color: #fff;
}

.side-navs .active a {
  color: #fff;
}


.top-level-nav .icon {
  color: var(--mainblue)!important;
}

.top-level-nav a:hover .icon {
  color: var(--white)!important;
}

.top-level-nav .active .icon {
  color: var(--white)!important;
}




@media screen and (max-width: 850px) {

.primary-nav {
  padding: 10px 0 !important;
}

.side-navs {
top: 80px;
}

.side-navs ul li a.toggles {
  border-bottom: 0px solid var(--lightgrey);
  padding: 10px 0;
  height: 80px;
}

}

@media screen and (max-width: 800px) {
.theme-toggle {
    display: none;
  }
}


@media screen and (max-width: 700px) {

  .mobile-site-nav {
    display: none;
  }


.side-navs {
  height: 0;
}

.side-navs.actives {
  width: 250px;
  height: 100% !important;
}

.side-navs ul li a {
  padding: 0px 0;
}


 .notification-wrapper {
    position: absolute;
    top: 20px;
    right: 25px;
  }

 .notification-dropdown {
    right: -5px;
  }

}

@media screen and (max-width: 850px) {
  .side-navs {
    top: 80px;
  }
}

.breaker {
  height: 2px;
  width: 80% !important;
  background: var(--bordergrey);
  margin: 10px auto !important;
}

@media screen and (max-height: 670px) {
.side-navs {
  left: -10px;
  width: 90px;
}

.side-navs.actives {
   width: 260px;
}

}

.serv-title {
  font: 16px 'Figtree', Helvetica , Arial, sans-serif;
  margin: 0 0 15px 0;
  font-weight: 600;
  padding: 0;
}

.serv-title i {
  color: var(--mainblue);
  margin: -2px 5px 0 0;
  font-size: 18px;
  display: inline-block;
}

.dn-serv {
  margin: 0 0 25px 0;
}

.con-serv {
  margin: 0 0 20px 0;
}

.dn-serv .user-check,
.con-serv .user-check {
  display: block;
  position: relative;
  padding: 3px 30px 0 35px;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
  font-weight: 600;
}

.pingg {
  color: var(--red);
  font-weight: 900;
  font-size: 20px;
  position: absolute;
  top: -1px;
  right: auto;
  margin: 0 0 0 5px;
}

.moz-tool .fa-asterisk {
  color: var(--red) !important;
  font-size: 16px !important;
  margin: 5px 5px 0 0 !important;
}