/*  Custom Page Layout  */

html, body {
  background-color: whitesmoke;
  width: 100%;
  margin: 0px;
  font-family:  sans-serif;
  font-size: 14px;
  text-align: center;
}

h1 {
    font-size: 40px;
        color: white;
}
h2 {
    font-size: 32px;
        color: #333333;
}
h3 {
    font-size: 24px;
        color: #333333;
}
h4 {
    font-size: 18px;
        color: #333333;
}

p {
    font-size: 14px;
    font-size: 1.4em;
        color: black;
}
a:link {
    color: #8B8C91;
    text-decoration: none;
}
a:visited {
    color: #8B8C91;
    text-decoration: none;
}
a:hover {
    color: maroon;
    text-decoration: none;
}
a:active {
    color: red;
    text-decoration: none;
}
a[name] {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}

hr {
  /*border: 0;
  height: 2px;*/
  margin-top: 10px;
  margin-bottom: 10px;
}

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

/* Navigation Banner */
#banner {

}

/* Navigation bar */
    .navbar {
        margin: 0px !important;
    }
  .nav_bar {
    position: relative;
    z-index: 100;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    /*height: 100px;*/
    text-align: center;
    border: 0;
    box-shadow: 0px 0px 5px 3px #000;
    margin-bottom: 0px;
    display: table;
    background-color: rgba(0,0,0,0.95);
  }

/*  Navigation Bar Text  */
    .navbar-fixed {
      z-index: 100;
      width: 100%;
      justify-content: space-around;
    }
/*  Navigation LIST Text  */
    .nav-fade ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nav-fade li {
       padding-left: 10px;
       padding-right: 10px;
       padding-bottom: 5px;
       padding-top: 5px;
       font-size: 20px;
       color: #FFF;
       display: inline-block;
       vertical-align: middle;
       text-align: center;
       opacity: 0.6;
       transition: 0.2s ease-in-out;
       -moz-transition: 0.2s ease-in-out;
       -webkit-transition: 0.2s ease-in-out;
    }
    .nav-fade li:hover {
      color: white;
      opacity: 1;
      font-weight: bold;
      text-shadow: 2px 2px 4px #000000;
      cursor: pointer;
      transition: 0.2s ease-in-out;
      -moz-transition: 0.2s ease-in-out;
      -webkit-transition: 0.2s ease-in-out;
    }
/*  Navigation LINK  */
    .nav-fade a {
      font-size: 20px;
      color: white;
    }
    .nav-fade a:visited {
      font-size: 20px;
      color: #F0F0F0;
    }
    .nav-fade a:active {
      font-size: 20px;
      color: #F0F0F0;
      text-shadow: 4px 4px 6px #000000;
    }
/*  Navigation DROPDOWN  */
    .dropbtn {
        display: inline-block;
        color: white;
        text-align: center;
        text-decoration: none;

    }

    li.dropdown {
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        margin: 0 auto;
        position: absolute;
        height: 150px;
        z-index: 999;
        transition: 1s;
    }

    .dropdown:hover .dropdown-content {
      display: block;
      margin: 0 auto;
      top: 48px;
      border-radius: 8px;
      width: 250px;
      height: 250px;
      z-index: 500;
      background-color: rgba(0,0,0,0.85);
      transition: 1s;
}

/*  Website Container */
    #container {
        padding-top: 20px;
    }
    .containter {
      position: absolute;
      left: 0px;
      right: 0px;
      width: 100%;
      overflow: hidden;
    }

/*  Light Gray Clearing */
    .clear-lightgray {
      display: table;
      left: 0px;
      right: 0px;
      width: 100%;
      background-color: #E8E8E8;
      overflow: hidden;
    }

/*  Parallax Section  */
    .parallax {
      display: table;
      width: 100%;
      height: 500px;
      background-image: url('/assets/img/pti_photos/jed/portfolio/999826_10152282902779025_894814393_n.jpg');
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      text-align: center;
    }

/*  Page footer */
    .footer {
      display: table;
      left: 0px;
      right: 0px;
      width: 100%;
      background-color: #333333;
      color: white;
      overflow: hidden;
    }
    .subscribe {
      margin: 20px auto;
      width: 90%;
}
    .footertext {
      text-align: center;
      margin: 0 auto;
      width: 90%;
      padding: 20px;
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3;
      -webkit-column-gap: 40px;
      -moz-column-gap: 40px;
      column-gap: 40px;
      -webkit-column-rule: 2px solid white;
      -moz-column-rule: 2px solid white;
      column-rule: 2px solid white;
    }

/*  Terms of Use Section  */
    .bottom {
      display: table;
      background-color: #333;
      text-align: center;
      width: 100%;
    }
    .bottomtext {
      color: white;
      text-align: center;
      margin: 0 auto;
      width: 100%;
      padding: 20px;
      text-align: center;
      vertical-align: middle;
      text-shadow: 3px, 3px, 3px #000;
    }
    .poweredby {
        padding-top: 10px; padding-bottom: 10px;
        height: 40px;
        background-color: #000 !important;
        color: #EEE !important;
    }
    
/*  Contact Portion and styling  */
    .contact {
      list-style-type: none;
      line-height: 30px;
      padding: 2;
      text-align: left;
      font-size: 14px;
    }

/*  Back to top styling */
    #back-top {
    	position: fixed;
    	bottom: 20px;
    	right: 20px;
      z-index: 20;
    }
    #back-top a {
    	width: 108px;
    	display: block;
    	text-align: center;
      vertical-align: middle;
    	font: 11px/100% Arial, Helvetica, sans-serif;
      -webkit-border-radius: 25px;
      -moz-border-radius: 25px;
      border-radius: 25px;
    	text-transform: uppercase;
    	text-decoration: none;
    	color: #bbb;
    	-webkit-transition: 1s;
    	-moz-transition: 1s;
    	transition: 1s;
    }
    #back-top a:hover {
    	color: #000;
      box-shadow: 3px 3px 5px 5px #363636;
    }
    #back-top span {
    	width: 108px;
    	height: 108px;
    	display: block;
    	margin-bottom: 7px;
    	background: #ddd no-repeat center center;
    	-webkit-border-radius: 25px;
    	-moz-border-radius: 25px;
    	border-radius: 25px;
    	-webkit-transition: 1s;
    	-moz-transition: 1s;
    	transition: 1s;
    }
    #back-top a:hover span {
    	background-color: #777;
    }

    #myModal .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 125%;
}
.socialshareicons {
  display: table-row;
  background-color: #242424;
  box-shadow: 2px 2px 3px 2px #999;
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.socialshareicons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.socialshareicons a {
  color: darkgray;
}
.socialshareicons li {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 25px;
  overflow: hidden;
  opacity: 0.6;
  transition: 0.5s;
}
.socialshareicons li:hover {
  opacity: 1;
  transition: 0.5s;
}



/* Side Bar */
ul.sidebarlist {
  list-style-type: none;
      -webkit-padding-start: 0px;
}

/* AYL CUSTOM */
.subtitle {
    color: #666666;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    float: left;
}

.tinyfont {
    font-size: 10px;
    color: #666666;
}


.loading {
    display:none;
    text-align:center;
}

#maincontent {
    min-height: calc(100vh - 360px);
}

/* Center place holder */

::-webkit-input-placeholder {
   text-align: center;
}

:-moz-placeholder { /* Firefox 18- */
   text-align: center;  
}

::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;  
}

:-ms-input-placeholder {  
   text-align: center; 
}

.section input[type='text'], .section input[type='password']{
    max-width: 300px; height: 50px; border-color: black; border-width: thin; border-radius: 10px; box-shadow: 3px 3px 5px 2px #000; opacity: 0.8;
}

.section {
    width: 95%; /*max-width: 350px;*/ margin: 0px auto 0px auto; padding: 10px 0px 10px 0px; overflow:hidden;
}

.redprint{
    color: red;
}


/* Table */

th{
    text-align:center !important;
}

.tablerow td {
    border-bottom: 1px solid #EEE;
    padding: 3px;
}

.greybgbox {
	border-radius: 2px;
	background-color: rgba(221, 221, 221);
	background-color: rgba(221, 221, 221, 0.75);
	border: 1px solid #FFF;
}
.tablerowtitle {
    display: inline-block;
    width: 200px;
    line-height: 40px;
}
.tablerowcontent {
    padding: 5px;
}

.tablerow {
    border-bottom: 1px solid #EEE;
    padding: 3px;
}

.imgformbox{
    margin:0px 10px 0px 10px;
}


/* reports */
.tableTitle {
    border-bottom: 1px solid #666666;
    color: #333333;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
}
.tableSubTitle{
    border-bottom: 1px solid #666666;
    color: #333333;
    background: #EEEEEE;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}
.tableSubTitleTop {
    border-top: 1px solid #666666;
    color: #333333;
    background: #EEEEEE;
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}
#sideTitle {
    padding: 5px;
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    line-height: 18px;
}


.whitebgbox{
    background-color: #FFFFFF;
}

/* admin / accounts  */
    .labelfield {
        font-weight: 800;
        color: #333;
    }
    .entryfield {
        font-weight: 400;
        color: #777;
    }
    .labelfieldDescription {
        font-weight: 400;
        color: #aaa;
    }
    .center {
        text-align: center;
    }
    .left {
        text-align: left;
    }
    .sectionexplination {
       font-weight: 400;
       color: #aaa; 
       font-size: 1em;
        padding: 15px;
    }
    a.popularLink {
        color: #AAA;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 0.9em;
        border-bottom: 1px dotted #aaa;
        transition: all 0.3s ease-in;
    }
    
    a.popularLink:hover {
        color: #777; 
        font-weight: 400;
        font-size: 0.9em;
        border-bottom: 1px dotted #333;
    }
    
     [data-toggle="collapse"][aria-expanded="true"] > .js-rotate-if-collapsed
        {
            transition: all 0.3s ease-in-out;
            -webkit-transform: rotate(359deg);
            -moz-transform:    rotate(359deg);
            -ms-transform:     rotate(359deg);
            -o-transform:      rotate(359deg);
            transform:         rotate(359deg);
            color: maroon;
            
        }
    
    .text-small {
        font-size: 0.8rem;
        opacity: 0.8;
    }
    
    .test-account {
        color: #aaa;
        font-weight: 800;
    }
    
    #PAYPAL {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    #STRIPE {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    #WORLDPAY {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .editpayment {
        border-left: 10px solid orange; 
        margin-bottom: 50px;  
    }

    .sectionBlock {
        margin-top: 15px;
    }



.navbar-fixed {
    top: 0px;
    z-index: 98;
    position: fixed;
    width: 100%;
    transition: all 0.3s ease-in-out;
    background-color: rgba(211,211,211,1);
    box-shadow: 0px 0px 5px #777;
}

.navbar-fixed-submenu {
    top: 35px;
    height: 50px;
    z-index: 95;
    position: fixed;
    width: 100%;
    transition: all 0.5s ease-in-out;
    background-color: rgba(240,240,240,1);
    box-shadow: 0px 0px 10px #333;
}


/* ADDS BTN OUTLINE */
.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}
    
.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}


