@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
  background-color: #f5f5f5;
  color: #333;
  font-family: "Inter", sans-serif;
  /* height: 100vh; */
  /* overflow: hidden; */
  padding: 10px;
  margin: 0;
  font-size: 1rem;
}

h1 {
	font-size: 1.5rem;
    font-weight: bold;
}

.form-range::-webkit-slider-thumb {
  background-color: #0085c5;
}

.btn {
  border: 0;
  outline: 0;
}

.btn.btn-primary {
  background-color: #0085c5;
}

.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
  background-color: #00a5e6;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #0085c5;
  border-color: #0085c5;
}

.generator {
  background-color: #fff;
  padding: 2rem 1rem;
  padding-top:1rem;
  border-radius: 5px;
  box-shadow: 0 1px 5px 5px rgba(0, 0, 0, 0.08);
}

.box {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 5px 5px rgba(0, 0, 0, 0.08);
}

.box .d-flex {
	padding: 0.5rem 0.5rem;
}

.generator .result-container {
  background-color: rgba(0, 0, 0, 0.04);
  align-items: center;
  position: relative;
  letter-spacing: 1px;
  width: 100%;
}

.generator .result-container #result {
  font-size: 0.95rem;
  word-wrap: break-word;
  border: 0px;
  background-color: transparent;
}

.generator .result-container #result::-webkit-scrollbar {
  width: 1rem;
}

.generator .passwordSelection {
  border: 1px solid #e4e4e4;
  padding: 1rem;
  margin: 1.5rem 0;
}

.generator .passwordSelection #rangeText {
  font-weight: bold;
  font-size: 1.25rem;
  border: 1px solid #c0c0c0;
  padding: 0.25rem;
  width: 100%;
  display: block;
  position: relative;
  top: -10px;
}

.generator .form-check.form-switch {
  margin-bottom: 0.75rem;
}

.generator .form-check.form-switch .form-check-input {
  height: 1.5rem;
  width: 2.5rem;
}

.generator .form-check.form-switch label {
  margin-left: 1rem;
  position: relative;
  top: 0.25rem;
}

/*dnslookup*/
.table>tbody>tr.success>td, .table>tbody>tr.success>th, .table>tbody>tr>td.success, .table>tbody>tr>th.success, .table>tfoot>tr.success>td, .table>tfoot>tr.success>th, .table>tfoot>tr>td.success, .table>tfoot>tr>th.success, .table>thead>tr.success>td, .table>thead>tr.success>th, .table>thead>tr>td.success, .table>thead>tr>th.success {
    background-color: #dff0d8;
}
/*dnslookup*/

#loader {
	border: 12px solid #f3f3f3;
	border-radius: 50%;
	border-top: 12px solid #444444;
	width: 70px;
	height: 70px;
	animation: spin 1s linear infinite;
	z-index:999;
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
  
.center {
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	margin: auto;
}

.loading {
	position: fixed;
	top:0;
	left: 0;
	right: 0;
	margin: auto;
	width:100%;
	height:100vh;
	background: #0000009e;
	z-index:998;
}