/* CSS Document */
#wrapper{
    background: #161622;

}

.div-status{
    padding-top: 8rem;
    margin-bottom: 3rem;
    background: #1A1C2B;
    padding-bottom: 3rem;
}

.status-txt{
    color: white;
    text-align: center;
    font-family: 'montserrat.bold.ttf';
        padding-top: 2rem;
        font-size: 25px;
}
.faq-hd{
    color: white;
    text-align: center;
    font-family: 'montserrat.bold.ttf';
        padding-top: 2rem;
        padding-bottom: 1rem;
        font-size: 25px;
}


* {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dashboard {
  display: block;
 /* max-width: 1024px;*/
  margin: 0 auto;
        padding: 3rem 0;

}
.dashboard-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
}
.dashboard-title {
  -webkit-box-flex: 1;
          flex: 1;
  font-size: 2.5rem;
    color: white;
}
.dashboard-clock {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.dashboard-clock-digital {
  font-weight: bold;
  font-size: 1.5rem;
    color: white;
}
.dashboard-clock-binary {
  margin-left: 5px;
  border-collapse: separate;
}
.dashboard-clock-binary td {
  height: .4rem;
  width: .4rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.dashboard-clock-binary .num1 {
  background-color: #2eb35a;
}

.server {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}
.server-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin: 0 2rem;
}
.server-details {
  -webkit-box-flex: 1;
          flex: 1;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.server-details li {
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #7e8794;
}
.server-details li:last-child .data {
  font-weight: normal;
  color: rgba(230, 245, 255, 0.32);
        padding-top: 6px;
}
.server-details .data {
  display: block;
  margin: -1.7rem 0 0 0;
  padding: 0 1rem 0 0;
  font-weight: 600;
  text-align: right;
  color: #c1c6cb;
}
.server-details .signal {
  color: #2eb35a;
}
.server-details .signal::before {
  content: '';
  display: inline-block;
  width: .6rem;
  height: .6rem;
  background-color: currentColor;
  border-radius: 50%;
  margin-right: .5rem;
  margin-top: -.2rem;
  vertical-align: middle;
}
.server-list {
  /*display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21.5rem, 1fr));
  grid-gap: 2rem;*/
}
.server.detected {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #d22c32;
  -webkit-animation: redalertblink 2s ease-in-out infinite;
          animation: redalertblink 2s ease-in-out infinite;
}
.server.detected .server-icon,
.server.detected .signal {
  color: #d22c32;
}
.server.detected:hover {
  background-color: rgba(210, 44, 50, 0.2);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes redalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(210, 44, 50, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

@keyframes redalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(210, 44, 50, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

.server.maintenance {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #f7ca18;
  -webkit-animation: maintenancealertblink 2s ease-in-out infinite;
          animation: maintenancealertblink 2s ease-in-out infinite;
}
.server.maintenance .server-icon,
.server.maintenance .signal {
  color: #f7ca18;
}
.server.maintenance:hover {
  background-color: rgba(247, 202, 24, 0.2);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes maintenancealertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(247, 202, 24, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

@keyframes maintenancealertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(247, 202, 24, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

/* == #3498db == */
.server.testing {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
  -webkit-animation: testingalertblink 2s ease-in-out infinite;
  animation: testingalertblink 2s ease-in-out infinite;
}
.server.testing .server-icon,
.server.testing .signal {
  color: #3498db;
}
.server.testing:hover {
  background-color: rgba(52, 152, 219, 0.2);
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes testingalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(52, 152, 219, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

@keyframes testingalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(52, 152, 219, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

/* == #7ed321 == */
.server.working {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border-color: #7ed321;
  -webkit-animation: workingalertblink 2s ease-in-out infinite;
  animation: workingalertblink 2s ease-in-out infinite;
}
.server.working .server-icon,
.server.working .signal {
  color: #7ed321;
}
.server.working:hover {
  background-color: rgba(126, 211, 33, 0.2);
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes workingalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(126, 211, 33, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

@keyframes workingalertblink {
  0% {
    background: rgba(210, 44, 50, 0);
  }
  50% {
    background: rgba(126, 211, 33, 0.2);
  }
  100% {
    background: rgba(210, 44, 50, 0);
  }
}

.faq {
  background: #313341;
  /*box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);*/
  border-radius: 4px;
}

.faq .card-pay {
  border: none;
  background: none;
  border-bottom: 1px solid #5b5863;
}

.faq .card-pay .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card-pay .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}
.faq .card-pay .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: white;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card-pay .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #DD0A2E;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card-pay .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card-pay .card-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card-pay .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

.faq-text{
    color: white;

}

.undtctd{
    font-size: 15px !important;
    padding-top: 2px;
}
















@media (max-width: 500px){
    .dashboard-title {
    font-size: 22px;
            margin: 0;
    }

}