.boxDnsLeakChecker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  color: #fff;
  padding-bottom: 30px;
  margin-bottom: 15px;
}

.col-4 {
  width: 33.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.boxDnsLeakChecker h1 {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
}

.dnsLeakTestSubTitle {
  text-align: center;
  margin: 20px auto 40px;
  font-size: 16px;
  max-width: 90%;
}

.dnsLeakTestInfo {
  width: 100%;
  margin: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dnsInfo {
  display: flex;
  align-items: flex-start;
  margin: auto;
}

.dnsInfo img {
  margin: 0 8px 0 0;
}

.info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info div b {
  font-size: 18px;
  overflow-wrap: anywhere;
  font-family: "GoogleSansBold";
}

.info div img {
  object-fit: contain;
  height: 18px;
}

.div {
  display: flex;
  align-items: center;
  flex-direction: row;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

.tableBoxDNS {
  width: 80%;
  max-width: 100%;
  margin: 50px auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 20px 5px rgba(35, 69, 120, 0.15);
  padding: 0 0 30px;
}

.tableBoxDNS table {
  width: 100%;
}

.tableBoxDNS th {
  padding: 25px 15px 15px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: start;
  color: #0a1048;
}

.tableBoxDNS td {
  font-size: 15px;
  padding: 15px 15px 15px 20px;
}

tbody tr:first-child .dnsLeakTestTdIsp {
  border-radius: 20px 20px 0 0;
}

tbody tr:last-child .dnsLeakTestTdIsp {
  border-radius: 0 0 20px 20px;
}

.dnsLeakTestTdIsp {
  background: #effaf2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dnsLeakTestTdIsp img {
  max-width: 21px;
  max-height: 21px;
}

.text-decoration-underline {
  text-decoration: underline !important;
  font-size: 16px;
}

.me-3 {
  margin-right: 1rem !important;
}

.loading {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loader-spinner {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.12);
  border-top-color: #0ea5ff;
  animation: spin 0.85s linear infinite;
  display: inline-block;
  position: absolute;
  top: 42.5%;
}

.hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .dnsInfo {
    margin: 0;
  }

  .info div b {
    font-size: 16px;
  }

  .tableBoxDNS {
    width: 100%;
    margin: 0 0 15px 0;
  }
}

@media (max-width: 500px) {
  .dnsLeakTestInfo {
    flex-direction: column;
    gap: 20px;
  }

  .info div b {
    font-size: 16px;
  }
}

@media (min-width: 578px) {
  .boxDnsLeakChecker h1 {
    font-size: 35px;
  }

  .tableBoxDNS th,
  .tableBoxDNS td {
    font-size: 16px;
  }

  .dnsLeakTestInfo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .dnsInfo img {
    margin: 0 12px 0 0;
  }

  .tableBoxDNS th {
    padding: 32px 15px 15px 32px;
    font-size: 18px;
  }

  .tableBoxDNS td {
    padding: 15px 15px 15px 32px;
    color: #0a1048;
    font-size: 18px;
  }

  .dnsLeakTestSubTitle {
    max-width: 70%;
    margin: 30px auto 60px;
  }
}

@media (min-width: 1200px) {
  .boxDnsLeakChecker h1 {
    font-size: 40px;
  }

  .dnsLeakTestSubTitle {
    font-size: 18px;

  }
}