
body, html {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #23232b;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.3em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing:antialiased
}
#app {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.app-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header {
    height:54px;
    background: #fff;
    border-bottom: solid 2px #e6e6e6;
}
.header-inner {
    padding: 0 20px;
    margin: 0px auto;
    height: 100%;
}
.logo {
  line-height: 54px;
}
.logo:hover {
  text-decoration: none;
}

.account-button span{
  color: rgb(255, 133, 0);
}
.account-button svg{
  fill: rgb(255, 133, 0);
  stroke: rgb(255, 133, 0);
  color: rgb(255, 133, 0);
}
.apple-logo {
  font-size: 30px;
  color: #FFF;
  margin-left: 10px
}
.app_name {
  color: rgb(255, 133, 0);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-left: 15px;
}
/* .nav-right {
  
} */
.main {
  background-color: #fff;
  flex:1;
  height: 90%;
}
.main-inner {
  margin: 0px auto;
  height: 100%;
}
.main-container {
  padding: 10px;
  height: 100%;
}
.footer {
  background-color: #fff;
  border-top: 1px solid rgb(240, 241, 241);
  color: rgb(110, 114, 123);
  font-size: 12px;
  line-height: 16px;
  padding: 12px 16px;
  text-align: center;
}
.bordered {
  margin: 10px 0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.bordered.error {
  border-width: 2px;
  border-color: red;
}
.bordered.clickable {
  cursor: pointer;
}
.bordered.clickable:hover {
  border-color: #aaa;
}
.spinner-container {
  flex: 1;
  display:  flex ;
  flex-direction:  row ;
  align-items:  center ;
  justify-content:  center ;
  min-height: 100px;
}
.list-header {
  /* padding-top: 20px; */
  border-top: 1px solid #eee;
}
.list-header .title
{ 
  font-weight: 600;
  font-size: 1.1em;
}
.list-header ul {
  list-style: none;
  padding: 10px 0px;
  margin: 0;
}
.list-header ul li {
  border-bottom: 1px solid #efefef;
  padding: 6px 0;
}
.list-header ul li .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.list-header ul li .content {
  font-weight: 400;
  font-size: 0.9em;
  flex: 1;
}
.list-header ul li .actions {
  padding-right: 2px;  
}
.apple-badge-scanner-container {
  width: 300px;
  height: 450px;
  border-radius: 10px;
  border: 1px solid #aaa;
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* top: 800px; */
  /* transition-property: top;
  transition-duration: 2s; */
}

.apple-badge-scanner-container.scanner-ready {
  /* top: 0; */
  box-shadow: 0 0 0px green;
  animation: pulse 2s infinite;
}

.apple-badge-scanner-container.scanner-inactive {
  opacity: 1;
}

.apple-badge-scanner-container .start-overlay{
  position: absolute;
  height: 450px;
  width: 300px;
  border-radius: 10;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-badge-button {
  border-radius: 80px !important;
  padding: 40px !important;
  width: 50px !important;
  height: 50px !important;
  opacity: 0.8;
  border: 1px solid #777;
}
.start-badge-button:hover {
    background: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 5px green;
  }
  70% {
    box-shadow: 0 0 25px green;
  }
  100% {
    box-shadow: 0 0 5px green;
  }
}

.create-subalias-form {
  padding: 20px 30px 20px 30px;
  border: 1px solid #aaa;
  border-radius: 10px;
}

.qr-code-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: red;
  background: #b10000;
  z-index: 1000;
  display: flex;
  width: 400px;
  height: 400px;
  justify-content: center;
  align-items: center;
}

.member_count {
  flex-direction: row;
  display: flex;
  align-items: center;
  min-width: 80px;
  border-radius: 20px;
  background-color: rgb(188, 212, 241);
  padding: 5px 5px;
}
.mc_icon {
  flex: 1;
  margin: 0 9px 0 5px;
}
.mc_number {
  padding: 2px 8px;
  color: white;
  background-color: rgb(27, 130, 255);
  font-weight: 500;
  border-radius: 20px;
  font-size: 12px;
}