#td {
    --wordpress-blue: #2271b1;
    --wordpress-grey: rgb(60, 67, 74);
    --success: #89d71d;
    --warning: #ff6a21;
    --failure: #d90d37;
    --not-available: #f1f1f1;
}

@media (max-width: 425px) {

}

.dashboard > div > .title {
    color: #929292;
    display: flex;
    flex-direction: column;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    padding-top: 8px;
    overflow: visible;
}

.dashboard > div > .title > .score > span {
    color: var(--failure);
    display: inline-block;
    font-size: 42px;
    text-align: right;
    width: 75px;
}

.dashboard > div > #gauges {
    height: 78px;
    position: relative;
}

.dashboard > div > #gauges md-circular-progress {
    --_active-indicator-color: #f0f0f1;
    --_active-indicator-width: 15;
    --_size: 140px;
    transform: rotate(-90deg);
}

.dashboard > div > #gauges > #gauge {
    z-index: 1;
}

.dashboard > div > #gauges > #gauge-background {
    left: 0;
    position: absolute;
    z-index: 0;
}

.dashboard > div > .sections {
    --md-list-container-color: white;
    width: 100%;
}


.dashboard .sections .section .numeric-score {
    display: flex;
    font-family: "Inter", Helvetica, serif;
    margin-bottom: auto;
    border-radius: 8px;
    justify-content: center;
    padding: 10px 8px;
    width: 34px;
}

.dashboard .sections .section .numeric-score.failure {
    background-color: #ffbdcb;
    color: var(--failure);
}

.dashboard .sections .section .numeric-score.warning {
    background-color: #ffd4bc;
    color: var(--warning);
}

.dashboard .sections .section .numeric-score.not_available {
    background-color: #f0f0f1;
    color: #929292;
    font-size: 24px;
}

.dashboard .sections .section .numeric-score.success {
    background-color: #dbf1bc;
    color: var(--success);
}

.dashboard > div > .sections > .section > .title {
    display: inline-flex;
    font-family: "Inter", Helvetica, serif;
    font-weight: 600;
    overflow: visible;
    text-transform: uppercase;
}

.dashboard > div > .sections > .section > .title > .coming-soon {
    background-color: #f1f7fb;
    border-radius: 12px;
    display: inline-flex;
    font-family: "Inter", Helvetica, serif;
    width: fit-content;
    color: var(--wordpress-blue);
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
	margin-bottom: 16px;
    margin-left: 10px;
    padding: 0 10px;
}

.dashboard > div > .sections > .section > .supporting-text {
    font-family: "Inter", Helvetica, serif;
}

.dashboard > div > .sections > .section > .supporting-text > div {
    margin-bottom: 4px;
}

.dashboard .sections .section .supporting-text.failure {
    color: var(--failure);
}

.dashboard .sections .section .supporting-text.warning {
    color: var(--warning);
}

.dashboard > div > .sections > .section > .supporting-text.not_available {
    color: #929292;
}

.dashboard > div > .sections > .section > .supporting-text.success {
    color: #89d71d;
}

.dashboard > div > .sections > .section > .supporting-text > .details > .title {
    font-weight: 600;
}

.dashboard > div > .sections > .section > .supporting-text > .details > .description {
    margin-bottom: 10px;
}

.help {
    background-color: #929292;
    border-radius: 8px;
    color: var(--md-elevated-button-container-color);
    display: inline-flex;
    font-family: "Inter", Helvetica, serif;
    font-size: 12px;
    height: 16px;
    justify-content: center;
    line-height: 16px;
    margin-bottom: 16px;
    margin-left: 4px;
    position: relative;
    vertical-align: top;
    width: 16px;
    z-index: 2;
}

.help:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.tooltip {
  background-color: #3c434a;
  color: #f4f4f4;
  font-family: "Inter", Helvetica, serif;
  font-size: 12px;
  font-weight: 400;
  left: 20px;
  min-width: 560px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  text-align: center;
  text-transform: none;
  transition: opacity 0.3s;
  visibility: hidden;
  z-index: 1;
}