@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.btn{
  position: absolute;
  top: 15px;
  left: 45px;
  height: 45px;
  width: 45px;
  text-align: center;
  background: #1b1b1b;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
}
.btn.click{
  left: 260px;
}
.btn span{
  color: white;
  font-size: 28px;
  line-height: 45px;
}
.btn.click span:before{
  content: '\f00d';
}
.sidebar{
  position: fixed;
  width: 250px;
  height: 100%;
  left: -250px;
  background: #1b1b1b;
  transition: left 0.4s ease;
}
.sidebar.show{
  left: 0px;
}
.sidebar .text{
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  background: #1e1e1e;
  letter-spacing: 1px;
}
nav ul{
  background: #1b1b1b;
  height: 100%;
  width: 100%;
  list-style: none;
}
nav ul li{
  line-height: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
nav ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav ul li a{
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding-left: 40px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}
nav ul li.active a{
  color: rgb(251, 125, 125);
  background: #1e1e1e;
  border-left-color: rgb(252, 178, 178);
}
nav ul li a:hover{
  background: #1e1e1e;
}
nav ul ul{
  position: static;
  display: none;
}
nav ul .feat-show.show{
  display: block;
}
nav ul .serv-show.show1{
  display: block;
}
nav ul ul li{
  line-height: 42px;
  border-top: none;
}
nav ul ul li a{
  font-size: 14px;
  color: #e6e6e6;
  padding-left: 80px;
}
nav ul li.active ul li a{
  color: #e6e6e6;
  background: #1b1b1b;
  border-left-color: transparent;
}
nav ul ul li a:hover{
  color: rgb(250, 97, 97)!important;
  background: #1e1e1e!important;
}
nav ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.4s;
}
nav ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 90%;
  transform: translate(-50%,-50%);
  color: #202020;
  z-index: -1;
  text-align: center;
}
.content .header{
  font-size: 35px;
  font-weight: 500;
  text-align: left;
}
.content p{
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  user-select: text;
}

.content h5 {
  text-align: left;
}

.content ul {
  text-align: left;
}

#result {
  font-size: 16px;
  text-align: left;
  user-select: text;
}

#wirelessresults {
  position: relative;
  top: 20px;
  font-size: 13px;
  text-align: left;
  user-select: text;
}

#logresults {
  position: relative;
  top: 80px;
  font-size: 13px;
  text-align: left;
  user-select: text;
}

table {
  word-wrap: break-word;
  table-layout: fixed;
  width: auto;
  border-collapse: collapse;
  border: 1px solid rgb(20, 17, 20);
  user-select: text;
}

td {
  width: auto;
  padding-left: 12px;
  box-sizing: border-box;
  user-select: text;
}

tr:first-child {
  font-weight: bold;
}

#edl-form label {
  float: left;
  padding-right: 2%;
}

#edl-form input[type=text] {
  padding:5px; 
  width: 20%;
  border:2px solid #ccc; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
}

#edl-form input[type=submit] {
  padding:5px 15px; 
  width: 15%;
  margin-right: 2%;
  background:rgb(253, 109, 109); 
  border:0 none;
  cursor:pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  float: left;
  
}

#partner-form label {
  float: left;
  padding-right: 2%;
}

#partner-form input[type=text] {
  padding:5px; 
  width: 20%;
  border:2px solid #ccc; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
}

#partner-form textarea {
  float: left;
}

#partner-form input[type=submit] {
  padding:5px 15px; 
  width: 15%;
  margin-right: 2%;
  background:rgb(253, 109, 109); 
  border:0 none;
  cursor:pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  float: left;
  
}


input[type=text] {
  padding:5px; 
  border:2px solid #ccc; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
}

input[type=email] {
  padding:5px; 
  border:2px solid #ccc; 
  -webkit-border-radius: 5px;
  border-radius: 5px;
  float: left;
  width: 45%;
}

input[type=text]:focus {
  border-color:#333;
}

input[type=submit] {
  padding:5px 15px; 
  background:rgb(253, 109, 109); 
  border:0 none;
  cursor:pointer;
  -webkit-border-radius: 5px;
  border-radius: 5px; 
  float: left;
  
}

.loading {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f77373;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 315px;
  top: 17px;

}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
