body {
    padding: 0;
    margin: 0;
}
.wrapper{
    height: 100vh;
    overflow-y: scroll;
    background-color: rgb(21, 33, 91);
    padding: 20px;
}

.form-container{
    background-color: rgb(21, 33, 91);
    margin-bottom: 70px;
}
.form-box{
    width: 300px;
    height: 500px;
    margin: 0 auto;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 0 0 black;
}


.form-box h2{
  color: white;
  text-align: center;
  font-family: 'Abel', sans-serif;
  font-weight: normal;
  font-size: 2.2em;
  margin-top: 0;
}

.form-box h3{
    color: white;
    text-align: center;
    font-family: 'Abel', sans-serif;
    font-weight: normal;
    font-size: 1.3em;
    margin-top: 0;
}

.logo-img{
    width: 150px;
    margin: 0 auto;
}

.logo-img img{
    width: 100%;
}
.form-group{
    height: 40px;
}

.form-group h4{
    color: white;
    font-family: Abel;
    font-size: 1em;
    margin-bottom: 2px;
}
.lapp-input, .dropdown-toggle{
    font-family: abel;
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin-bottom: 25px;
    box-sizing: border-box;
    outline: none;
    box-shadow: none;
    background-color: white;
}

.churchBranch{
    width: 100% !important;
}
.d-inline{
    display: inline-block;
}

.group{
    margin-left: 40px;
}

.lapp-check + span{
    height: 20px;
    color: white;
}

.lapp-submit{
    width: 100%;
    border-radius: 2px;
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    -ms-border-radius:2px;
    -o-border-radius: 2px;
    background-color: rgb(0, 7, 26);
    border:none ;
    color: white;
    outline: none;
    padding: 7px 20px;
    margin-bottom: 10px;
}

.lapp-button{
  width: 150px;
  background-color: rgb(0, 7, 26);
  border:none ;
  color: white;
  padding: 7px 20px;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.lapp-btn-free{
  text-align: center;
  background-color: rgb(0, 7, 26);
  border:none ;
  color: white;
  padding: 7px 20px;
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  cursor: pointer;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'],
    input[type='radio'] {
      --active: rgb(21, 33, 91);;
      --active-inner: #fff;
      --focus: 2px rgb(21, 33, 91);;
      --border: rgb(255, 255, 255);
      --border-hover: rgb(21, 33, 91);;
      --background: #fff;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      cursor: pointer;
      border: none;
      background: var(--b, var(--background));
      -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
      transition: background .3s, border-color .3s, box-shadow .2s;
    }
    input[type='checkbox']:after,
    input[type='radio']:after {
      content: '';
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
      transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    }
    input[type='checkbox']:checked,
    input[type='radio']:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
      border: 1px solid white;
    }
    input[type='checkbox']:disabled,
    input[type='radio']:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: .9;
    }
    input[type='checkbox']:disabled:checked,
    input[type='radio']:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    input[type='checkbox']:disabled + label,
    input[type='radio']:disabled + label {
      cursor: not-allowed;
    }
    input[type='checkbox']:hover:not(:checked):not(:disabled),
    input[type='radio']:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    input[type='checkbox']:focus,
    input[type='radio']:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    input[type='checkbox']:not(.switch),
    input[type='radio']:not(.switch) {
      width: 21px;
    }
    input[type='checkbox']:not(.switch):after,
    input[type='radio']:not(.switch):after {
      opacity: var(--o, 0);
    }
    input[type='checkbox']:not(.switch):checked,
    input[type='radio']:not(.switch):checked {
      --o: 1;
    }
    input[type='checkbox'] + label,
    input[type='radio'] + label {
      font-size: 14px;
      line-height: 21px;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
      margin-left: 4px;
      color: white;
    }
  
    input[type='checkbox']:not(.switch) {
      border-radius: 7px;
    }
    input[type='checkbox']:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      -webkit-transform: rotate(var(--r, 20deg));
              transform: rotate(var(--r, 20deg));
    }
    input[type='checkbox']:not(.switch):checked {
      --r: 43deg;
    }
    input[type='checkbox'].switch {
      width: 38px;
      border-radius: 11px;
    }
    input[type='checkbox'].switch:after {
      left: 2px;
      top: 2px;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      background: var(--ab, var(--border));
      -webkit-transform: translateX(var(--x, 0));
              transform: translateX(var(--x, 0));
    }
    input[type='checkbox'].switch:checked {
      --ab: var(--active-inner);
      --x: 17px;
    }
    input[type='checkbox'].switch:disabled:not(:checked):after {
      opacity: .6;
    }
  
    input[type='radio'] {
      border-radius: 50%;
    }
    input[type='radio']:after {
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: var(--active-inner);
      opacity: 0;
      -webkit-transform: scale(var(--s, 0.7));
              transform: scale(var(--s, 0.7));
    }
    input[type='radio']:checked {
      --s: .5;
    }
  }
  ul {
    margin: 12px;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 320px;
  }
  ul li {
    margin: 16px 0;
    position: relative;
  }
  
  html {
    box-sizing: border-box;
  }
  
  * {
    box-sizing: inherit;
  }
  *:before, *:after {
    box-sizing: inherit;
  }
  @media (max-width: 800px) {
    body {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
    }
  }
  
.clearfix{
    clear: both;
}

.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  font-family: abel;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
  font-size: 1em;
  background-color: white;
  background-image: none;
}

.chosen-container-single .chosen-single span{
  font-size: 1.2em;
}

.chosen-container .chosen-results li {
  padding: 10px 5px;
}

#branchBox, #people, #churchAttender, #ministry{
  display: none;
}

.error-box{
  display: none;
}

.iti{
  width: 100%;
}
.iti__country-list{
  width: 300px;
}

.platform{
  font-family: abel;
  color: white;
  text-align: center;
}
.platform-box{
  display: inline-block;
}
.platform-box .image-box img{
  width: 100px;
}

#date{
  font-size: 1.7em;
  margin-top: 20px;
  margin-bottom: 10px;
}
.page-header{
  font-family: abel;
  color: white;
  text-align: center;
}

.table-box{
  padding: 20px;
  background-color: transparent;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.signin-data{
  padding: 10px;
  width: 100%;
  background-color: white;
  margin-bottom: 20px;
}

.signin-data tr{
  border-bottom: 1px solid silver;
}

.signin-data tr td, .signin-data tr th{
 padding: 10px;
}