.dpio-header {
  align-items: center;
  display: flex;
  margin: 30px 20px 20px 0;
}
.dpio-header .dpio-logo {
  background-image: url("../img/dataplans.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  height: 50px;
  max-width: 312px;
  width: 100%;
}
.dpio-header .dpio-account {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  padding-left: 20px;
}
.dpio-header .dpio-info {
  border-left: 1px solid rgba(108, 117, 125, 0.3);
  flex-grow: 1;
  margin-left: 30px;
  margin-top: 10px;
  padding: 10px 0 10px 20px;
  text-align: right;
  text-transform: uppercase;
}
.dpio-header .dpio-info h4 {
  font-size: 14px;
  font-weight: lighter;
  margin: 0 0 5px;
}
.dpio-header .dpio-info h4 + strong {
  font-size: 22px;
  font-weight: bold;
}
.dpio-header .dpio-info:first-child {
  border-left: none;
}
.dpio-header .dpio-mode strong {
  color: #ffc107;
}
.dpio-header .dpio-mode.live {
  color: #007bff;
}
.dpio-header .dpio-status strong {
  color: #6c757d;
}
.dpio-header .dpio-status.online strong {
  color: #28a745;
}
.dpio-header .dpio-status.offline strong {
  color: #dc3545;
}
@media only screen and (max-width: 1100px) {
  .dpio-header {
    flex-direction: column;
  }
  .dpio-header .dpio-account {
    flex-grow: 1;
    margin-left: 0;
    padding-left: 0;
  }
  .dpio-header .dpio-info {
    margin-left: 0;
    padding-right: 20px;
  }
  .dpio-header .dpio-logo {
    margin-bottom: 10px;
  }
  .dpio-header .dpio-info {
    text-align: center;
  }
}
@media only screen and (max-width: 555px) {
  .dpio-header .dpio-account {
    flex-direction: column;
  }
  .dpio-header .dpio-info {
    border-left: none;
  }
}

.dataplans h1 {
  border-bottom: 1px solid rgba(108, 117, 125, 0.2);
  font-weight: bold;
  padding-bottom: 20px;
}
.dataplans .dpio-content {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 30px 10px;
}
.dataplans .mr-0 {
  margin-right: 0;
}
.dataplans .mr-1 {
  margin-right: 1rem;
}
.dataplans .mr-2 {
  margin-right: 2rem;
}
.dataplans .mr-3 {
  margin-right: 4rem;
}
.dataplans .mr-4 {
  margin-right: 6rem;
}
.dataplans .mr-5 {
  margin-right: 12rem;
}

.dpio-form input {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}
.dpio-form input[type=radio] {
  background: #fff;
  height: 22px;
  width: 22px;
  color: #555;
  cursor: pointer;
}
.dpio-form input[type=radio]:checked:before {
  background-color: #000;
  height: 10px;
  width: 10px;
  margin: 5px;
  content: "";
  text-indent: -9999px;
  border-radius: 50px;
  line-height: 16px;
  font-size: 24px;
  display: block;
}
.dpio-form input[type=text] {
  min-width: 100%;
}
.dpio-form .submit {
  text-align: right;
}
.dpio-form .submit input[type=submit] {
  font-size: 20px;
  font-weight: bold;
  padding: 5px 30px;
}
.dpio-form .form-table th {
  padding-bottom: 15px;
}
.dpio-form .form-table td {
  padding-top: 20px;
}
.dpio-form input[type=password] {
    min-width: 100%;
}
