.switch {
  font-size: 17px;
  width: 40px;
  height: 20px;
  /* Adjust the right position as needed */
  z-index: 9999;
  position: relative;
}





.header-links {
    list-style-type: none;
    display: flex;
    justify-content: right; /* Center the menu horizontally */
    align-items: right; /* Align the menu vertically */
    margin: 0;
    padding: 0; /* Remove default padding */
}

.header-links li {
    margin-right: 40px; /* Adjust spacing between links */
}

.header-links li:last-child {
    margin-right: 0;
}

.header-links li a {
    color: #3c4245; /* Dark color for links */
    font-weight: bold; /* Bold font weight */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Adjust font size */
    transition: color 0.3s; /* Smooth color transition on hover */
}

.header-links li a:hover {
    color: #9ba6a5; /* Darker color on hover */
}




.slider:before {
  height: 16px;
  width: 16px;
  border-radius: 50%;
}

.sun svg,
.moon svg {
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.sun svg {
  left: 75%;
}

.moon svg {
  left: 5%;
}

.gtranslate_wrapper {
  top: 10px;
  right: 20px;
}





.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FF9900;
  transition: .4s;
  border-radius: 30px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 20px;
  left: 2px;
  bottom: 2px;
  z-index: 2;
  background-color: #e8e8e8;
  transition: .4s;
}

.sun svg {
  fill: #ffffff;
  position: absolute;
  top: 2px;
  left: 23px;
  z-index: 1;
  width: 16px;
  height: 16px;
}

.moon svg {
  fill: #ffffff;
  position: absolute;
  top: 4px;
  left: 5px;
  z-index: 1;
  width: 12px;
  height: 12px;
}

/* .switch:hover */
.sun svg {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {

  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* .switch:hover */
.moon svg {
  animation: tilt 5s linear infinite;
}

@keyframes tilt {

  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.input43:checked+.slider {
  background-color: #038CFF;
}

.input43:focus+.slider {
  box-shadow: 0 0 1px #038CFF;
}

.input43:checked+.slider:before {
  transform: translateX(20px);
}
.gt_container-unisv1 a.glink span{
  font-size: 16px!important;
}
a.glink img{
  width: 20px!important;
}

.icon-with-title.bs1 .icon{
  color: #038CFF;
}
#loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Adjust the height as needed */
  width: 100%;
  position: relative; /* Add relative positioning */
  margin-top: 20px; /* Adjust margin as needed */
}

.quater {
  height: 1cm; /* Adjust size of the loader */
  width: 1cm; /* Adjust size of the loader */
  background-color: skyblue;
  position: relative;
}

.i {
  border-top-left-radius: 100%;
  animation: spin1 2s ease-in-out infinite;
  transform-origin: bottom right;
}

.ii {
  border-top-right-radius: 100%;
  animation: spin2 2s ease-in-out infinite;
  transform-origin: bottom left;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
   #headerLinks {
    display: none;
}

    .nav-icon {
        display: block; /* Display the icon on mobile */
    }

    .header-links {
        display: none; /* Hide the links by default on mobile */
    }

    .header-links.active {
        display: block; /* Display the links when active */
    }
}
/* Media query for responsiveness */
@media (max-width: 768px) {
  #loading {
    margin-top: 10px; /* Adjust margin for smaller screens */
  }
}


/* rest of your keyframes and other styles... */


@keyframes spin1 {
  0%, 25% {
    transform: rotateZ(0deg);
  }
  50%, 75% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

@keyframes spin2 {
  0%, 25% {
    transform: rotateZ(180deg);
  }
  50%, 75% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/* Font Family */
body, #whois-results {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#whois-results {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

#whois-results h2 {
    color: #007bff;
    margin-top: 0;
    font-size: 28px;
}

#whois-results ul {
    list-style-type: none;
    padding: 0;
}

#whois-results li {
    margin-bottom: 12px;
    font-size: 18px;
}

#whois-results .label {
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

#whois-results .value {
    color: #666;
    font-size: 18px;
}

#whois-results h3 {
    color: #007bff;
    margin-top: 20px;
    font-size: 24px;
}

#whois-results pre {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    white-space: pre-wrap;
    font-size: 16px;
}

/* Styles for DNS Records Table */
.dns-records {
    margin-bottom: 20px;
    text-align: center;
}

.dns-records h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.dns-table-wrapper {
    overflow-x: auto;
}

.dns-table {
    width: 100%;
    border-collapse: collapse;
}

.dns-table th,
.dns-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

.dns-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.dns-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.dns-record {
    background-color: #fff;
}

.record-icon {
    margin-right: 5px;
    font-size: 14px;
}

/* Styles for Font Awesome Icons */
.record-icon:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Specific styles for different record types */
.record-icon.globe:before {
    color: #007bff; /* Blue color for A and AAAA records */
}

.record-icon.sitemap:before {
    color: #6610f2; /* Indigo color for NS records */
}

.record-icon.envelope:before {
    color: #dc3545; /* Red color for MX records */
}

.record-icon.file-alt:before {
    color: #ffc107; /* Yellow color for TXT records */
}

.record-icon.arrow-right:before {
    color: #28a745; /* Green color for PTR records */
}

.record-icon.cog:before {
    color: #6c757d; /* Gray color for SOA and SRV records */
}

.record-icon.certificate:before {
    color: #6f42c1; /* Purple color for CAA records */
}

.record-icon.link:before {
    color: #17a2b8; /* Cyan color for CNAME records */
}

.record-icon.question:before {
    color: #343a40; /* Dark Gray color for unknown record types */
}

.banner-container, .secondbanner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Adjust margin as needed */
}

.hide {
    display: none;
}
.C6 {
    margin-bottom: 20px; /* Adjust the margin as needed */
}
#copyright {
    color: white;
}


.pt60.pt96-M.pb48.pb72-L {
  background-image: url("img/IIIETA_FOOTER.png") ;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
 padding-bottom: 370px;   
}



