
/* ======================
    Iscroll
  ========================*/ 
*, 
*:after, 
*:before { 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box; }

html {
   -ms-touch-action: none;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}
body,ul,li {
   padding: 0;
   margin: 0;
   border: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #efefef;
    background: #FFFFFF;
    overflow: hidden; /* Prevents iOS rubber banding for mobile Iscroll */
    font-size: 14px;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: -webkit-focus-ring-color none;
}

.scrollable {
  -webkit-overflow-scrolling: touch;
}


#scrollable {
  -webkit-overflow-scrolling: touch;
}



.header {
   position: absolute;
   z-index: 2;
   top: 0;
   left: 0;
   width: 100%;
   height: 45px;
   line-height: 45px;
   background: #FFFFFF;
   color: #6B6B6B;
   font-size: 20px;
   text-align: center;
   font-weight: bold;
   border-bottom: 1px solid #E2E2E2;
}

.tab-bar {
   position: absolute;
   z-index: 2;
   left: 0;
   width: 100%;
   border-top: 1px solid #EEEEEE;
   background: #FFFFFF;
   bottom: 0px;
   display: inline-block;
   height: 75px;
}

.tab-bar > li {
margin:  0 auto;
list-style:  none;
text-align:  center;
}

.tab-bar button {
  padding: 0;
  float: left;
  position: relative;
  width: 25%;
  margin-top: 10px;
  background: none;
  border: none;
  
}

.tab-bar li a {
  display: block;
  text-align: center;
  list-style-type: none;
  color: #efefef;
  text-decoration: none;
}
.tab-bar p {
  font-size: 11px;
  position: relative;
  text-align: center;
  padding: 0;
  margin: 0;
}
.tab-bar button .icon,
.tab-bar button i {
  font-size: 20px;
  color: #726F70;
}



#wrapper,
#wrapper2,
#wrapper3,
#wrapper4 {
   position: absolute;
   z-index: 1;
   left: 0;
   width: 100%;
   top: 45px;
   bottom: 70px;
}

#scroller,
#scroller2,
#scroller3,
#scroller4 {
   position: absolute;
   z-index: 1;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
   width: 100%;
   -webkit-transform: translateZ(0);
   -moz-transform: translateZ(0);
   -ms-transform: translateZ(0);
   -o-transform: translateZ(0);
   transform: translateZ(0);
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   -webkit-text-size-adjust: none;
   -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
   -o-text-size-adjust: none;
   text-size-adjust: none;
}

/*#scroller ul,
#scroller2 ul,
#scroller3 ul {
   list-style: none;
   padding: 0;
   margin: 0;
   width: 100%;
   text-align: left;
   color: #0E0E0E;
}

#scroller li,
#scroller2 li,
#scroller3 li {
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  background-color: #fafafa;
  font-size: 14px;
}*/

/* ================================
    Page Transitions
   ================================ */


body {
  overflow: hidden;
}

.pt-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    perspective: 1200px;
}

.pt-page {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 20px;
    visibility: hidden;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    padding-top: 50px;
    background: #FFFFFF;
}

.pt-page-current, .no-js .pt-page {
    visibility: visible;
    z-index: 1;
}

.no-js body {
    overflow: auto;
}

.pt-trigger-container {
    position: absolute;
    width: 300px;
    z-index: 999999;
    left: 50%;
    margin-top: 75px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pt-trigger {
    border: none;
    font-size: 12px;
    font-weight: 500;
    height: 100%;
    cursor: pointer;
    position: absolute;
    z-index: 20;
    font-family: 'Open Sans';
    color: #666666;
    background: transparent;
    padding: 0;
    margin: 0;
}

.pt-trigger:active, 
.pt-trigger:focus, 
.pt-trigger:visited, 
.pt-trigger:hover {
    -webkit-webkit-highlight: none;
    -moz-webkit-highlight: none;
    -ms-webkit-highlight: none;
    -o-webkit-highlight: none;
    webkit-highlight: none;
}

/* Button & Icon Styles */
.right,
.btn-next {
    right: 0;
    bottom: 0;
}
.left,
.btn-back {
    bottom: 0;
    right: 0;
}

.icon {
  width: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 70%;
  border-radius: 10px;
  line-height: inherit;
  height: 40px;
  font-size: 20px;
  padding-top: 0;
  margin-right: 12px;
}

/* Font Awesome Custon Icon Styles*/
.fa {
  line-height: inherit;
}

.pad {
  padding-top: 10px;
}

.fa-angle-left,
.fa-angle-right,
.fa-angle-up,
.fa-angle-down {
  font-size: 30px;
  height: 30px;
}

.fa-chevron-left,
.fa-chevron-right,
.fa-chevron-up,
.fa-chevron-down {
  font-size: 22px;
}

.fa-caret-left,
.fa-caret-right,
.fa-caret-up,
.fa-caret-down {
  font-size: 20px;
}

.fa-arrow-left,
.fa-arrow-right,
.fa-arrow-up,
.fa-arrow-down {
  font-size: 18px;
}

/* Page Styles */
.pt-page-ontop {
    z-index: 999;
}

/*.pt-page h1 {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 30px;
    font-family: 'Open Sans';
    text-transform: uppercase;
    color: #7E7E7E;
}*/
.pt-page-1 {
  background: #FFFFFF;
    
}

.pt-page-2 {
  background: #E6E6E6;
   
}

.pt-page-3 {

    
}

.pt-page-4 {
    
}

/* ============================
   Choc. Custom Styles 
   ==============================*/

nav > h1 {
  text-align: center;
  display: inline-block;
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 !important;
  font: normal 12pt/14pt HelveticaNeue, Sans-serif;
  position: absolute;
  top: 0;
  left: 100px;
  right: 100px;
  z-index: -1;
  white-space: nowrap;
  xoverflow: hidden;
  text-overflow: ellipsis;
}

/* ==============================
   Lists
   ============================== */
.list {
  list-style: none;
    xborder-top: solid 1px #c8c8c8;
    xborder-bottom: solid 1px #c8c8c8;
  background-color: #B8AEAE;
  width: 100%;
  color: #494949;
}

.list > li {
  padding: 13px 15px 13px 15px;
  background-color: #ffffff;
  font-size: 12pt;
  border-bottom: 1px solid #efefef;
  position: l;
}
.list > li::before {
  display: block;
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.list > li:last-of-type::before {
  border-bottom: none;
}
.list > li.nav::after {
  display: block;
  content: '';
  height: 6px;
  width: 6px;
  border-right: solid 2px #c7c7cc;
  border-top: solid 2px #c7c7cc;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  float: right;
  position: absolute;
  top: 16px;
  right: 15px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

/* List Footer */
.list + p,
.list + p + p {
  color: #7f7f7f;
  font-family: HelveticaNeue, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.list ~ p {
  margin: 0 15px;
}
.list ~ p + p {
  margin-top: 5pt;
}
.list > li[data-goto] {
  cursor: pointer;
}
.list > li[data-goto]:hover,
.list > li[data-goto].touched,
li[data-show-article]:hover,
li[data-show-article].touched,
.list.select > li:hover,
.list.select > li.touched,
.list.select > li.selected {
  background-color: #d9d9d9;
  cursor: pointer;
}
/* ==============================
   List title & subtitle
   ============================== */
.list > li > h3,
.list > li > h4 {
  width: 80%;
  font-weight: 200;
  margin: 0;
}
.list > li h3 {
  line-height: 18pt;
}
.list > li h4 {
  line-height: 14pt;
  color: #7f7f7f;
}
.list > li > h4,
.list > li > div > h4 {
  font-size: 11pt;
  margin: 0;
}
.list > li > aside > h4 {
  margin: 0;
  font-weight: normal;
  color: #7f7f7f;
}
/* ==============================
   List detail
   ============================== */
.list > li > p {
  margin: 6px 0px;
  color: #7f7f7f;
}
.list > li p + p {
  margin-top: 6px;
}
.list > li.comp > div > p {
  font-size: 10pt;
  margin: 0;
  color: #7f7f7f;
}
.list h3,
.list h4,
.list p {
  pointer-events: none;
}
/* ==============================
   List header
   ============================== */
section h2 {
  font: normal 11pt/12pt HelveticaNeue, Sans-serif;
  color: #4d4d4d;
  margin: 40px 0 6px 15px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #7f7f7f;
}
/* Display header as is */
section h2.normal-case {
  text-transform: none;
}
/* Allow header to wrap */
section h2.wrap {
  white-space: normal;
}
section > h2 {
  margin: 26px 0 6px 15px !important;
}

/* =====================================
    Login Page
   ===================================== */
.login {
margin: 20px auto;
width: 300px;
}
.login-screen {
background-color: transparent;
padding: 20px;
border-radius: 5px;
position: absolute;
margin: 0 auto;
}

.app-title {
text-align: center;
color: #FFF;
}

.login-form {
text-align: center;
}
.control-group {
margin-bottom: 10px;
}

.control-group > input {
text-align: center;
background-color: #efefef;
border: 2px solid;
border-radius: 3px;
font-size: 16px;
font-weight: 200;
padding: 10px 0;
width: 250px;
border-color: #F00C5E;
}

.control-group > input:focus {
border: 2px solid #FF327C;
box-shadow: none;
background: #fff;
}

.btn {
  border: 2px solid transparent;
  background: #413E3F;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 250px;
  margin: 0 auto;
}

.btn:hover {
  background-color: #3C3C3C;
}

.login-link {
  font-size: 12px;
  color: #000;
  display: block;
  margin-top: 12px;
}


/* =================================
   Helper Classes
   ================================= */
.hide {
  display: none;
}
