	
/* Button Continue To Payment */
.ButtonStylePetite{
  background: #337ab7;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  text-shadow:none;
  margin:20px;
	
}

.ButtonStyle{
  background: #337ab7;
  color: #ffffff;
  font-family: Arial, sans-serif;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;	
  text-shadow:none;
  z-index: 100;
  position: relative;	
}

.ButtonStyle:hover {
  filter: contrast(115%);
}
.ButtonStyle:disabled {
  opacity: 0.5;
  cursor: default;
}	
/* Make it wide */



@media (min-width: 1000px) {
    .container{
        width: 100%;
    }
}

@media (min-width: 1190px)
{
    #storeInfoHolder
    {
        display: block;
    }
}

@media (max-width: 1190px)
{
    #storeInfoHolderSmall
    {
        display: block;
        margin-left:10px;
    }
}
	
	
/* The default form control puts a z-index of 2 which is problematic on the sales entry page */
.input-group .form-control {
	z-index: auto;
}

body {
  padding-top: 0px;
  padding-bottom: 30px;
}

.row {
	margin-left:0px;
	margin-right:0px;
}

.theme-dropdown .dropdown-menu {
  position: static;
  display: block;
  margin-bottom: 20px;
}

.theme-showcase > p > .btn {
  margin: 5px 0;
}

.theme-showcase .navbar .container {
  width: auto;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display:block;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 0px;
}


/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */

body > .container {
  padding: 0px;
  position:relative;
  top:140px;
  margin-bottom:0px;
  overflow-y: scroll;
  height: calc(100vh - 185px)
}

.container .text-muted {
  margin: 20px 15px 0;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-top: -15px;
}


	#storeInfoHolder{
/*
		overflow-y: scroll;
		height: calc(100vh - 180px);
*/
		/*border: 1px solid black;*/
		position: relative;
		top: 0px;		
	}
	
	

code {
  font-size: 80%;
}

label.error{
	color: red;
}

/* Loading Overlay CSS
-------------------------------------------------- */
@font-face {
  font-family: "demo";
  src: url('/css/fonts/icons.woff') format("woff"), url('/css/fonts/icons.ttf') format("truetype");
}

@keyframes loadingStart {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading {
  position: relative;
  pointer-events: none;
}

#css-input:checked ~ .loading .loading-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: loadingStart 3s 300ms linear 1 both;
  -moz-animation: loadingStart 3s 300ms linear 1 both;
  -o-animation: loadingStart 3s 300ms linear 1 both;
  animation: loadingStart 3s 300ms linear 1 both;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
#css-input:checked ~ .loading .loading-text {
  font-size: 0.875rem;
  line-height: 1.3125rem;
  text-shadow: white 0 0 1em, white 0 0 0.5em, white 0 0 0.25em;
  position: relative;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
#css-input:checked ~ .loading .loading-text:after {
  content: "...";
}
#css-input:checked ~ .loading .loading-spinner {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: -3.9375rem auto 0;
  color: #1a1d1d;
  text-align: center;
}
#css-input:checked ~ .loading .loading-icon {
  font-size: 4.8125rem;
  line-height: 5.25rem;
  text-shadow: rgba(255, 255, 255, 0.75) 0 0 0.5em;
  -webkit-animation: loading 1s steps(4) infinite;
  -moz-animation: loading 1s steps(4) infinite;
  -o-animation: loading 1s steps(4) infinite;
  animation: loading 1s steps(4) infinite;
  display: block;
  vertical-align: middle;
}
#css-input:checked ~ .loading .loading-icon:before {
  vertical-align: middle;
  content: "\e000";
  font-family: "demo";
}

/*The following are for subtotal rows in reports*/
    .dataTables_scrollBody thead{
        visibility:hidden;
    }
    .group{
        background-color:#333!important;
        font-size:11px;
        color:#fff!important;
        opacity:0.7;
    }
.hidden {
    display: none;
}


/*This should put some pix between rows*/

.row-buffer {
	margin-top:10px;
}

.epiph-muted {
font-size:12px;
font-family:Arial, Helvetica, sans-serif;
color:#333333;
margin:0px;
padding:0px;
}

.epiph-h1 {
 font-size:30px;
 font-weight:bold;
 margin:2px;
 text-shadow:#999999;
}

.epiph-h2 {
 font-size:22px;
 margin:2px;
 color:#272727;
}

.widget {
 display: inline-block;
 margin:  .5em;
 padding:  0; 
 width:98%;
}

@media all and (min-width: 50px)   {  .epiph-h1  { font-size:0.8em;  } }
@media all and (min-width: 100px)  {  .epiph-h1  { font-size:1.0em;  } }
@media all and (min-width: 200px)  {  .epiph-h1  { font-size:1.3em;  } }
@media all and (min-width: 300px)  {  .epiph-h1  { font-size:1.5em;  } }
@media all and (min-width: 400px)  {  .epiph-h1  { font-size:1.7em;  } }
@media all and (min-width: 500px)  {  .epiph-h1  { font-size:1.9em;  } }
@media all and (min-width: 600px)  {  .epiph-h1  { font-size:2.1em;  } }
@media all and (min-width: 700px)  {  .epiph-h1  { font-size:2.4em;  } }
@media all and (min-width: 800px)  {  .epiph-h1  { font-size:2.6em;  } }
@media all and (min-width: 900px)  {  .epiph-h1  { font-size:2.8em;  } }
@media all and (min-width: 1000px) {  .epiph-h1  { font-size:2.0em;  } }
@media all and (min-width: 1100px) {  .epiph-h1  { font-size:2.2em;  } }
@media all and (min-width: 1200px) {  .epiph-h1  { font-size:2.4em;  } }
@media all and (min-width: 1300px) {  .epiph-h1  { font-size:2.6em;  } }
@media all and (min-width: 1400px) {  .epiph-h1  { font-size:2.8em;  } }
@media all and (min-width: 1500px) {  .epiph-h1  { font-size:3.0em;  } }
@media all and (min-width: 300px)  {  .epiph-h2  { font-size:1.1em;  } }
@media all and (min-width: 700px)  {  .epiph-h2  { font-size:1.4em;  } }
@media all and (min-width: 800px)  {  .epiph-h2  { font-size:1.6em;  } }
@media all and (min-width: 900px)  {  .epiph-h2  { font-size:1.8em;  } }
@media all and (min-width: 1000px) {  .epiph-h2  { font-size:1.8em;  } }
@media all and (min-width: 1500px) {  .epiph-h2  { font-size:2.0em;  } }



.bg-light-gray {
	background-color: #eeeeee
}

.bg-dark-gray {
	background-color: #737373
}

.text-green {
	text-shadow: 1px 1px 2px black;
	color: #6ca62f
}

.text-red {
	text-shadow: 1px 1px 2px black;
	color: #be1310
}
.text-blue {
	text-shadow: 1px 1px 2px black;
	color: #2499be
}
.text-yellow {
	text-shadow: 1px 1px 2px black;
	color: #f0d326
}

.text-bright-green {
	text-shadow: 1px 1px 2px black;
	color: #00f800
}

.text-white {
	color: white
}

.row .h5 {
	margin-left:0px;
	margin-right:0px;
}

.col-padding {
	padding:20px;
}

.fill { 
    min-height: 100%;
    height: 100%;
}

.cursor-pointer{
	cursor:pointer;
}


.rpt-table-container {
  margin: 0 auto;
  width: 100%;
}



/* Multi-column nav menu Begin */
    .dropdown-menu {
    	min-width: 200px;
    	z-index:110000;
    }
    .dropdown-menu.columns-2 {
    	min-width: 400px;
    }
    .dropdown-menu.columns-3 {
    	min-width: 600px;
    }
    .dropdown-menu li a {
    	padding: 2px 5px;
    	font-weight: 300;
    	font-size:12px;
    }
    .addInfo {
    	padding: 2px 5px;
    	font-weight: 300;
    	font-size:12px;
    }    
    .multi-column-dropdown {
    	list-style: none;
    	margin-left: 0px;
	    padding-left: 15px;
	    z-index: 110000;
    }
    .multi-column-dropdown li a {
    	display: block;
    	clear: both;
    	line-height: 1.428571429;
    	color: #333;
    	white-space: normal;
    	font-size:12px;
    }
    .multi-column-dropdown li a:hover {
    	text-decoration: none;
    	color: #262626;
    	background-color: #f5f5f5;
    }
     
    @media (max-width: 767px) {
    	.dropdown-menu.multi-column {
    		min-width: 240px !important;
    		overflow-x: hidden;
    	}
    }
/* Multi-column nav menu End */

/*message center*/

.table-hover-pointer{
	cursor: pointer;
}

.msgRowUnread {
	font-weight: bold;
}

.msgRowread {
	font-weight:normal;
}

.msgRowacknowledged {
	font-weight:normal;
	color: green;
}

.msgRowdeleted {
	font-weight:normal;
	text-decoration: line-through;
	color:gray;
}

.msgLabels {
    display: inline;
    font-weight: 700;
    margin-bottom: 5px;
    max-width: 100%;
    box-sizing: border-box;
    color: #333;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857;

}



.small-text{
	font-size: 10px;
	line-height: 1;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.link-blue {
	color: #2499be
}

.link-super-red {
	border-width: 0px;
	border-style: none;
	text-shadow: 0px 0px 0px;
	color: #ea38ff
}

.link-red {
	color: red
}

.link-yellow {
	text-shadow: 1px 1px 2px #c3c3c3;
	color: #ffb808;
}

.link-green {
	color: green
}

/*Banner*/
.banner-warn {
	background-color: #edcf6f;
	font-color: black;
	font-weight: 900;
	border-width:1px;
	border-style: dashed;
	box-sizing: border-box;
	color: rgb(51, 51, 51);
	cursor: pointer;
	display: block;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	outline-color: rgb(51, 51, 51);
	outline-style: none;
	outline-width: 0px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	position: relative;
	text-decoration: none;
	text-decoration-color: rgb(51, 51, 51);
	text-decoration-line: none;
	text-decoration-style: solid;
	text-shadow: rgba(255, 255, 255, 0.25) 0px 1px 0px;	
}


.avatar-nav{
	padding: -10px;
}


