﻿.cd-radio-button,
.cd-checkbox {
  position: relative;
  margin: 10px 10px 10px 0;
  display: block;
}

.cd-radio-button input[type=radio],
.cd-checkbox input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0;
  margin-right: 0.5rem;
  position: absolute;
  z-index: 1;
}

.cd-radio-button label {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  padding-left: 2rem;
  line-height: 1.5rem;
  display: block;
  color: #2B2B2B;
  font-weight: 500;
}

.cd-radio-button label::before {
  content: " ";
  z-index: 3;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  border-radius: 50%;
  border: 2px solid rgba(var(--primary-rgb-color), 0.24);
  background: rgba(var(--primary-rgb-color), 0.12);
  box-sizing: border-box;
}

.cd-radio-button input[type=radio]:not(:checked) + label:hover::before {
  opacity: 0.6;
}

.cd-radio-button input[type=radio]:checked + label:before {
  border: 6px solid var(--primary-bg-color);
  background-color: #fff;
}

.cd-radio-group-inline,
.cd-checkbox-group-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.cd-radio-button .cd-input {
  margin-top: 16px;
}

.cd-radio-group-solid {
  display: flex;
}

.cd-radio-button-solid {
  position: relative;
  display: block;
}

.cd-radio-button-solid input[type=radio] {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.cd-radio-button-solid label {
  padding: 12px 32px;
  height: 42px;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
  background-color: var(--primary-hover-text-color);
  color: var(--warning-active-color);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cd-radio-button-solid input[type=radio]:hover:not(:checked) + label {
  background-color: var(--warning-color);
  color: var(--secondary-hover-text-color);
}

.cd-radio-button-solid input[type=radio]:checked + label {
  background-color: var(--warning-color);
  color: var(--primary-text-color);
}

.cd-radio-button-solid:first-child label {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}

.cd-radio-button-solid:last-child label {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
}

.mobile-only {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-only {
    display: initial;
  }
}

.cd-input {
  background: #FFFFFF;
  border: 1px solid rgba(214, 213, 213, 0.32);
  box-sizing: border-box;
  border-radius: 8px;
  height: 42px;
  width: 100%;
  padding: 0 1rem;
  font-size: 16px;
}

.cd-input-borderless {
  border: none;
  outline: none;
  text-align: center;
}

.cd-input-short {
  margin-top: 10px;
  width: 95px;
  border: 1.74671px solid rgba(212, 212, 212, 0.29);
  border-radius: 0px;
  color: black;
  font-weight: 700;
}

.cd-button {
  display: inline-block;
  padding: 10px 28px;
  height: 41px;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
}

.cd-button__fixed-width {
  height: auto;
  max-width: 200px;
}

.copy-to-clipboard {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.copy-to-clipboard button {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #E85A16;
  border: none;
  border-bottom: 1px solid #E85A16;
  background-color: white;
  margin-left: 10px;
  cursor: pointer;
}

.cd-button--primary {
  background-color: var(--primary-bg-color);
  color: var(--primary-text-color);
}

.cd-button--primary:hover {
  background-color: var(--primary-hover-bg-color);
  color: var(--primary-hover-text-color);
}

.cd-button--primary:active {
  background-color: var(--primary-active-bg-color);
  color: var(--primary-active-text-color);
}

.cd-button--success {
  background-color: var(--success-bg-color);
  color: var(--success-text-color);
}

.cd-button--success:hover {
  background-color: var(--success-hover-bg-color);
  color: var(--success-hover-text-color);
}

.cd-button--success:active {
  background-color: var(--success-active-bg-color);
  color: var(--success-active-text-color);
}

.cd-button--secondary {
  background-color: var(--secondary-bg-color);
  color: var(--secondary-text-color);
}

.cd-button--secondary:hover {
  background-color: var(--secondary-hover-bg-color);
  color: var(--secondary-hover-text-color);
}

.cd-button--secondary:active {
  background-color: var(--secondary-active-bg-color);
  color: var(--secondary-active-text-color);
}

.cd-button--warning {
  background-color: var(--warning-color);
  color: var(--primary-text-color);
}

.cd-button--warning:hover {
  background-color: var(--warning-hover-color);
  color: var(--primary-hover-text-color);
}

.cd-button--warning:active {
  background-color: var(--warning-active-color);
  color: var(--primary-active-text-color);
}

.cd-button--center {
  margin: 32px auto;
  display: block;
}

.cd-button-a-center {
  display: flex;
  justify-content: center;
  margin: 65px auto;
}

.cd-button-margin {
  margin-top: 32px;
}

.cd-button-browse {
  background-color: var(--browse-bg-color);
  color: var(--browse-text-color);
  height: 18px;
}

.cd-buttons-section {
  display: flex;
  align-items: center;
  margin: 40px 0px;
}

.cd-button-section {
  flex: 0 0 50%;
  text-align: center;
}

.disabled {
  cursor: default;
  background-color: var(--warning-hover-color);
  color: var(--primary-hover-text-color);
}

.cd-browse-for-files {
  cursor: pointer;
}

.cd-input-border-radius-none {
  border-radius: 0px;
  outline: none;
  text-align: center;
}

.url-row {
  margin-top: 14px;
}

.container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.container input {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.container h3 {
  font-size: 20px;
  font-weight: 600;
  color: #38424c;
}
.container .delete {
  position: absolute;
  top: -14px;
  right: 0;
  z-index: 10;
  margin-left: 7px;
  cursor: pointer;
}

.files {
  margin-top: 14px;
}
.files .file {
  display: flex;
  flex-grow: 1;
  padding: 7px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}
.files .file .sorting {
  width: 28px;
}
.files .file .sorting > div {
  cursor: pointer;
}
.files .file .sorting.first > div.sort-up {
  opacity: 50%;
  cursor: not-allowed;
}
.files .file .sorting.last > div.sort-down {
  opacity: 50%;
  cursor: not-allowed;
}
.files .file .info {
  width: calc(100% - 28px);
}
.files .file .info .name {
  margin: 0;
}
.files .file .info .size {
  font-size: 12px;
  color: rgba(73, 80, 87, 0.5);
  margin-bottom: 3.5px;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.progress-container {
  height: 5px;
  width: 100%;
  border-radius: 4px;
  background-color: white;
  position: relative;
}
.progress-container .progress {
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 4px;
  background-color: #80D421;
  transition: 0.5s all;
}

.cd-form-file {
  border: dashed 1.7px #D4D4D4;
  padding: 28px 14px 7px 14px;
  font-size: 16px;
  transition: all 0.2s;
  background-color: #FFFFFF;
  width: 100%;
}
.cd-form-file.fileover {
  background-color: white;
  box-shadow: 0 0 60px 2px #e3f2fd, 0.5rem 0.5rem 30px #72a4dc;
}

.cd-text-grag-file {
  color: #7C7C7C;
  font-weight: normal;
}

textarea.result {
  background-color: rgba(227, 242, 253, 0.5);
}

.cd-textarea {
  background: #FFFFFF;
  border: 1.7px solid rgba(212, 212, 212, 0.29);
  box-sizing: border-box;
  height: 200px;
  width: 100%;
  padding: 0 1rem;
  resize: none;
  padding: 20px;
}

.cd-textarea-grid-2 {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.input-textarea,
.output-textarea {
  border: 1.7px solid rgba(212, 212, 212, 0.29);
  padding: 20px;
  flex: 1 1 50%;
}

.cd-textarea:focus {
  outline: none;
}

.cd-textarea::-webkit-scrollbar {
  width: 4px;
  margin-right: 10px;
}

.cd-textarea::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #F2F2F2;
}

.cd-textarea::-webkit-scrollbar-thumb {
  background-color: #0054FA;
  height: 24px;
}

.cd-textarea-borderless {
  border: none;
  outline: none;
  text-align: center;
}

.cd-screen-speed-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cd-screen-speed-title {
  text-align: left;
  font-size: 20px;
  margin: 14px auto;
}

.cd-screen-speed-body {
  display: flex;
  flex: 1 1 50%;
  flex-direction: column;
  align-items: center;
}

.cd-screen-speed-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  color: #5a7184;
}

.cd-screen-speed-img {
  text-align: center;
}

.cd-screen-speed-img img {
  width: 200px;
}

.cd-screen-speed-legend li {
  list-style: none;
  background: url("/static/products/assets/img/ellipse_orange.svg") no-repeat;
  color: #5a7184;
  padding-left: 20px;
  padding-right: 15px;
  margin-bottom: 20px;
}

.cd-screen-speed-legend li:first-child {
  background: url("/static/products/assets/img/ellipse_red.svg") no-repeat;
}

.cd-screen-speed-legend li:last-child {
  background: url("/static/products/assets/img/ellipse_green.svg") no-repeat;
  margin-bottom: 0px;
}

.cd-screen-speed-gauge {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex: 1 1 50%;
}

@media (max-width: 989px) {
  .cd-screen-speed-info-row {
    flex-direction: column;
  }
  .cd-screen-speed-gauge {
    width: 100%;
    margin: 20px auto;
    flex-wrap: wrap;
  }
}
@media (max-width: 759px) {
  .cd-screen-speed-info-row {
    flex-direction: column;
  }
  .cd-screen-speed-gauge {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .cd-screen-speed-title {
    text-align: center;
  }
}
.cd-text-result {
  font-size: 16px;
  margin: auto;
}
.cd-text-result td {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
}

.cd-result-working-link {
  color: var(--success-text-color);
}

.cd-result-broken-link {
  color: var(--warning-color);
}

.cd-result-total-link {
  font-weight: bold;
  color: black;
}

.cd-good-link {
  color: var(--success-text-color);
}

.cd-bad-link {
  color: var(--warning-color);
}

.cd-result-link {
  width: 100%;
  overflow: auto;
}
.cd-result-link td {
  padding-right: 60px;
}

.cd-table-in-collapse {
  width: 100%;
  min-width: 300px;
}

.cd-result-link::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  margin-right: 10px;
}

.cd-result-link::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #F2F2F2;
}

.cd-result-link::-webkit-scrollbar-thumb {
  background-color: #0054FA;
  height: 24px;
}

.cd-links {
  display: flex;
  margin: 32px 0;
}

.cd-links span {
  margin-right: 60px;
}

.cd-links-status {
  font-weight: 700;
}

.cd-links-message {
  font-weight: 700;
  font-size: 14px;
  color: #000000;
}

.cd-links-link {
  min-width: 450px;
  font-weight: 400;
  font-size: 14px;
  color: #5A7184;
}

@media (max-width: 789px) {
  .cd-links-message {
    font-size: 12px;
  }
  .cd-links-link {
    font-size: 12px;
  }
}
.cd-result-block {
  position: relative;
  display: block;
  border-bottom: 2px solid #F3F3F3;
  padding: 42px 28px 28px;
  text-align: left;
  margin-bottom: 3rem;
}
.cd-result-block h2 {
  text-align: left;
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--text-color);
}

@media (max-width: 599px) {
  .cd-result-block {
    background: #fff;
    border: 1.74671px solid rgba(212, 212, 212, 0.29);
    border-radius: 8px;
    padding: 14px 10px 10px;
  }
  .cd-result-block h2 {
    text-align: center;
  }
}
.result-type-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
}
.result-type-icon.success {
  background-image: url("/static/products/assets/img/green.svg");
}
.result-type-icon.warning {
  background-image: url("/static/products/assets/img/orange.svg");
}
.result-type-icon.error {
  background-image: url("/static/products/assets/img/red.svg");
}

.chevron-icon {
  display: inline-block;
  width: 12px;
  height: 6px;
  background-size: contain;
  background-repeat: no-repeat;
}
.chevron-icon.chevron-up {
  background-image: url("/static/products/assets/img/chevron-up.svg");
}
.chevron-icon.chevron-down {
  background-image: url("/static/products/assets/img/chevron-down.svg");
}

.cd-table-result {
  table-layout: fixed;
  width: 100%;
}
.cd-table-result td {
  word-wrap: break-word;
  padding-right: 15px;
}

.cd-line-result {
  margin-top: 48px;
  display: block;
}
.cd-line-result:first-of-type {
  margin-top: 16px;
}
.cd-line-result .line-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.cd-line-result .line-container .line-headers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 2 1 20%;
}
.cd-line-result .line-container .line-headers h3 {
  color: #2B2B2B;
  font-weight: 600;
}
.cd-line-result .line-container i.result-type-icon {
  margin-right: 24px;
  min-width: 48px;
}
.cd-line-result .line-container h3 {
  margin: 0 1.5rem 0 0;
  min-width: 12.5rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.cd-line-result .line-container span {
  color: #5A7184;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: end;
}
.cd-line-result.cd-collapsable .line-container .right-panel {
  flex: 2;
  margin: 0 24px;
}
.cd-line-result.cd-collapsable .line-container .collapse-btn {
  cursor: pointer;
  float: right;
  padding: 6px;
}
.cd-line-result.cd-collapsable .line-container i.chevron-icon {
  min-width: 12px;
}
.cd-line-result.cd-result-percentage .line-container {
  justify-content: space-between;
}
.cd-line-result.cd-result-percentage .line-container .left-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}
.cd-line-result.cd-result-percentage .line-container .right-panel {
  margin: 0 1.5rem;
  background-color: #888;
  border-radius: 5px;
  height: 29px;
  position: relative;
  overflow: hidden;
  min-width: 30vw;
  max-width: 30vw;
}
.cd-line-result.cd-result-percentage .line-container .right-panel .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: left var(--transition), right var(--transition);
}
.cd-line-result.cd-result-percentage .line-container .right-panel .bar.success {
  background-color: #92E2B6;
  left: 0;
}
.cd-line-result.cd-result-percentage .line-container .right-panel .bar.warning {
  background-color: #FECEA0;
}
.cd-line-result.cd-result-percentage .line-container .right-panel .bar.error {
  background-color: #F3A8A9;
  right: 0;
}
.cd-line-result.cd-result-percentage .line-container .right-panel .bar label {
  font-weight: 400;
  font-size: 12px;
  color: #000;
}
.cd-line-result.cd-result-percentage .line-container span {
  min-width: 6rem;
  text-align: end;
}

@media (max-width: 1150px) {
  .cd-line-result.cd-result-percentage .line-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cd-line-result.cd-result-percentage .line-container .line-headers {
    align-items: flex-start;
  }
  .cd-line-result.cd-result-percentage .line-container .left-panel {
    width: 100%;
  }
  .cd-line-result.cd-result-percentage .line-container .right-panel {
    flex: auto;
    display: block;
    width: 100%;
    margin: 1rem 0 0;
    min-width: initial;
    max-width: initial;
  }
}
@media (max-width: 499px) {
  .cd-line-result.cd-result-percentage .line-container span {
    text-align: inherit;
  }
  .cd-line-result .line-container i.result-type-icon {
    margin-right: 10px;
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  .cd-line-result .line-container .line-headers {
    align-items: baseline;
    flex-direction: column;
    flex: 1 1 auto;
  }
  .cd-line-result .line-container h3 {
    min-width: 8rem;
  }
  .cd-line-result.cd-collapsable .line-container .right-panel {
    margin: 0 10px;
  }
}
.cd-productivity {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.cd-productivity .cd-prod-info-panel {
  flex: 1;
}
.cd-productivity .cd-prod-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: var(--text-color);
}
.cd-productivity .cd-prod-title-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  color: #5a7184;
}
.cd-productivity .cd-prod-img {
  width: 35%;
}
.cd-productivity .cd-prod-info-group {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}
.cd-productivity .cd-prod-info-subgroup {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.cd-productivity .cd-prod-info-block {
  min-height: 6.125rem;
  border-radius: 8px;
  color: #000;
  flex: 1;
  margin-right: 1.875rem;
}
.cd-productivity .cd-prod-info-block.single-value-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-productivity .cd-prod-info-block.single-value-block span {
  font-size: 14px;
  font-weight: 400;
}
.cd-productivity .cd-prod-info-block.single-value-block span.info-value {
  font-size: 18px;
  font-weight: 700;
  margin-right: 9px;
  transform: translateY(1px);
}
.cd-productivity .cd-prod-info-block.error-bg {
  background: #FAE8E8;
}
.cd-productivity .cd-prod-info-block.warn-bg {
  background: #FCF1E6;
}
.cd-productivity .cd-prod-info-block.white-bg {
  flex: 0.75;
  background: #fff;
  border: 1px solid #E5EAF4;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.03);
  margin-right: 0;
  padding: 5px 22px;
  max-width: 270px;
}
.cd-productivity .cd-prod-info-block.white-bg span {
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  color: #000;
}
.cd-productivity .cd-prod-info-block.white-bg span.info-value {
  font-weight: 600;
  color: var(--seo-checker-success-primary-color);
  float: right;
}
.cd-productivity .cd-prod-gauge {
  margin-left: 5rem;
}

@media (max-width: 959px) {
  .cd-productivity .cd-prod-info-group {
    flex-direction: column;
  }
  .cd-productivity .cd-prod-info-block:last-child {
    margin-right: 0;
  }
  .cd-productivity .cd-prod-info-block.white-bg {
    margin-top: 1.875rem;
    max-width: initial;
  }
}
@media (max-width: 759px) {
  .cd-productivity {
    flex-direction: column;
  }
  .cd-productivity .cd-prod-title-label {
    display: none;
  }
  .cd-productivity .cd-prod-title {
    text-align: center;
  }
  .cd-productivity .cd-prod-title-label {
    text-align: center;
  }
  .cd-productivity .cd-prod-info-panel {
    width: 100%;
  }
  .cd-productivity .cd-prod-gauge {
    margin-left: 0;
    margin-top: 40px;
  }
}
.cd-device-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  cursor: pointer;
  padding: 16px 0;
  margin: 0.3rem;
  transition: color var(--transition), box-shadow var(--transition);
}
.cd-device-btn > span {
  font-size: 18px;
  font-weight: 600;
}
.cd-device-btn > i {
  height: 24px;
  margin-right: 16px;
}
.cd-device-btn > i > svg {
  fill: var(--text-color);
  transition: fill var(--transition);
}
.cd-device-btn-active {
  box-shadow: 0px 2px 0px 0px #0054fa;
  color: #0054fa;
  cursor: initial;
}
.cd-device-btn-active > i > svg {
  fill: #0054fa;
}
.cd-device-btn-group {
  width: 100%;
  display: flex;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 299px) {
  .cd-device-btn {
    padding: 10px 0;
  }
  .cd-device-btn > span {
    font-size: 1rem;
  }
  .cd-device-btn > i {
    margin-right: 8px;
  }
}
.collapsable-block {
  display: block;
  max-height: 1000px;
  font-family: "Courier New", Courier, monospace;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.225rem;
  color: #868686;
  background: #FFFFFF;
  border: 1.74671px solid rgba(212, 212, 212, 0.29);
  border-left: 4px solid;
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 1.1875rem 0 0;
  overflow: hidden;
  transition: max-height 0.8s, padding 0.2s, border 0.2s;
}
.collapsable-block.success {
  border-left-color: var(--seo-checker-success-primary-color);
}
.collapsable-block.warning {
  border-left-color: var(--seo-checker-warn-primary-color);
}
.collapsable-block.error {
  border-left-color: var(--seo-checker-error-primary-color);
}

.collapsed {
  max-height: 0;
  border: 0;
  padding: 0rem 1.5rem 0rem 2rem;
  transition: max-height 0.3s, padding 0.3s, border 0.3s;
}

.cd-amount {
  display: flex;
  margin-top: 14px;
  margin-bottom: 24px;
  justify-content: flex-start;
  grid-gap: 30px;
  gap: 30px;
  flex: 0 1 330px;
}

.amount-absolute {
  position: absolute;
  top: 42px;
  left: 25%;
  transform: translate(50%);
}

.cd-amount-result span:first-child {
  margin-right: 18px;
}

.cd-amount-result span:last-child {
  margin-left: 18px;
}

.cd-amount-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #5A7184;
}

.cd-amount-count {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
}

.cd-links-link a {
  color: #5A7184;
}
.cd-links-link a:visited {
  color: #5A7184;
}
.cd-links-link a:hover {
  color: var(--primary-hover-bg-color);
}

@media (max-width: 996px) {
  .cd-amount {
    justify-content: center;
  }
  .amount-absolute {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
  }
  .cd-amount-title {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .cd-amount {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cd-amount-title {
    font-size: 14px;
  }
  .cd-links span {
    margin-right: 20px;
  }
}
.cd-keywords-extractor-setting {
  display: flex;
  margin-top: 50px;
  gap: 50px;
  align-items: center;
}

.cd-keywords-extractor-top {
  display: flex;
  justify-content: space-between;
  width: 160px;
}

.cd-left-keywords {
  max-width: 615px;
  margin: 0;
}

.cd-left-keywords-item {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 996px) {
  .cd-keywords-extractor-setting {
    flex-direction: column;
    justify-content: center;
  }
  .cd-left-keywords {
    margin: 0 20px;
  }
}
@media (max-width: 996px) {
  .cd-keywords-extractor-setting {
    margin-top: 25px;
    gap: 25px;
  }
}
.cd-grid-screenshots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: space-between;
}
.cd-grid-screenshots .cd-img {
  margin: 30px;
}

.cd-prod-gauge {
  width: 180px;
  height: 160px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cd-prod-gauge svg {
  position: absolute;
}

.cd-prod-gauge-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-color);
}

.cd-prod-gauge-of {
  font-size: 20px;
  font-weight: 400;
  color: #7f7f7f;
}
