@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
.yl-audit {
  width: 100%;
  padding: 3%;
  font-family: Arial;
  font-size: 14px;
  margin: auto;
  box-sizing: border-box;
  font-family: Roboto;
  color: #0a2157;
  max-width: 1000px;
}
@media (max-width: 1023px) {
  .yl-audit {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  .yl-audit {
    font-size: 8px;
  }
}
.yl-audit .loadingMessage {
  font-size: 18px;
  color: #ffc107;
  text-align: center;
  margin-bottom: 15px;
  display: none;
}
.yl-audit .loadingMessage .subLoadingMessage {
  display: flex;
  justify-items: center;
  justify-content: center;
  align-items: center;
}
.yl-audit .loadingMessage .subLoadingMessage > div {
  padding: 1em;
}
.yl-audit .loadingMessage .subLoadingMessage > div .spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #ffc107);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 0);
          mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 9px), #000 0);
  animation: spinner-zp9dbg 1s infinite linear;
}
@keyframes spinner-zp9dbg {
  to {
    transform: rotate(1turn);
  }
}
.yl-audit .searchEngine {
  display: flex;
  font-size: 1.4em;
  justify-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  align-items: center;
}
.yl-audit .searchEngine label {
  line-height: 1em;
  padding: 1%;
  margin: 1%;
  white-space: nowrap;
}
.yl-audit .searchEngine input {
  padding: 1%;
  margin: 1%;
  flex: 1;
  min-width: 0;
  box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06), 1px 3px 8px rgba(39, 44, 49, 0.03);
}
.yl-audit .searchEngine button {
  padding: 1%;
  margin: 1%;
  background-color: #2f3744;
  box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06), 1px 3px 8px rgba(39, 44, 49, 0.03);
  color: #fff;
  border: none;
}
.yl-audit .header {
  margin: 3%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.yl-audit .header div {
  padding: 2rem;
}
.yl-audit .header div .chartResults {
  width: 100% !important;
  aspect-ratio: 1/1;
  margin: auto;
  max-width: 100%;
}
.yl-audit .header h1 {
  font-size: 3em;
}
.yl-audit .header h2 {
  font-size: 2.6em;
  color: #0a2157;
}
.yl-audit .header .scoreSummary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.yl-audit .header .scoreSummary svg {
  background-color: transparent !important;
}
.yl-audit .header .scoreSummary .score-details {
  text-align: left;
}
.yl-audit .header .scoreSummary .score-details h3 {
  margin: 0;
  font-size: 20px;
}
.yl-audit .mainCategory {
  box-shadow: 8px 14px 38px rgba(39, 44, 49, 0.06), 1px 3px 8px rgba(39, 44, 49, 0.03);
  transition: all 0.25s ease;
  border-radius: 10px;
  margin: 3% 0 0 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.yl-audit .mainCategory .title {
  background-color: #2f3744;
}
.yl-audit .mainCategory .title h2 {
  font-size: 2em;
  margin: 0;
  color: #fff;
  font-weight: normal;
}
.yl-audit .mainCategory .subCategory h3 {
  display: none;
}

h3 {
  margin: 2%;
}

table {
  width: 100%;
  font-size: 1em;
  margin: 0;
}
table tr:nth-child(odd) {
  background-color: #f8f9fa;
}
table tr td {
  padding: 2%;
  font-size: 1.2em;
  text-align: center;
  border: none;
}
table tr td.resultColumn {
  text-align: left;
}
table tr th {
  padding: 2%;
  color: #0a2157;
  font-size: 1em;
  border: none;
}
@media (max-width: 767px) {
  table tr th {
    font-size: 1.2em;
  }
}

.stateColumn {
  width: 5%;
  text-align: center;
}

.checkpointColumn {
  width: 25%;
}

.resultColumn {
  width: 30%;
}

.precoColumn {
  width: 30%;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2%;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.badge {
  display: inline-block;
  padding: 0.65em 0.65em;
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.bgDanger {
  background-color: #dc3545;
  color: #fff;
}

.bgSuccess {
  background-color: #86c149;
  color: #fff;
}

.value {
  font-weight: bold;
}

.error, .danger {
  color: #dc3545 !important;
}
.error a, .danger a {
  color: #dc3545 !important;
}

.warning {
  color: #F6AF65 !important;
}

.success {
  color: #86c149 !important;
}/*# sourceMappingURL=yl-audit.css.map */