body, .modal-body, .modal-footer {
	background-color: #F9FBFD;
}

h2 {
	margin-bottom: 0;
}

#shipments .product-image {
	height: 50px;
	float: left;
	padding-right: 10px;
}

/* Subscriptions List Page */
#subscriptions {
	margin-bottom: 40px;
}

#subscriptions h2 {
	padding-bottom: 20px;
}

#subscriptionsTable thead tr.filter th {
	border: none;
}
#subscriptionsTable {
	margin-top: -1px !important;
}

/* Susbcriptions Details Page */
#subscription_detail {
	margin-bottom: 60px;
}
#subscription_detail #avatar .fa-user {
	background-color: white;
	border: 1px solid silver;
	border-radius: 25px;
	padding: 10px 15px;
	color: #6C757D;
}
#subscription_detail .dropleft .dropdown-toggle::before {
	content: none;
}
#subscription_detail .productName {
	width: 60px;
}
#subscription_detail textarea {
	height: 100px;
}

.shopify .user-actions {
	position: absolute;
	top: 10px;
	right: 10px;
}
.card dl.row {
	margin-bottom: 0px;
}

.main {
	margin-left: 200px;
	padding: 0;
	min-height: 100vh;
	position: relative;
	max-width: 100vw;
	width: auto;
	overflow: hidden;
}

#hijacked-warning {
	margin-bottom: 0;
}

.navbar {
	border-radius: 0;
	border-bottom: 1px solid silver;
	background-color: white;
	-webkit-box-shadow: 0 6px 5px -8px #999;
	-moz-box-shadow: 0 6px 5px -8px #999;
	box-shadow: 0 6px 5px -8px #999;
	padding: 0 5px;
	margin-bottom: 20px;
}
.navbar a {
	color: #2071db;
}
.navbar-right {
	margin-right: 0px;
}
.btn-primary {
	background-color: #4689c4;
}
.text-muted {
	color: lightgray;
}
.text-muted-blue {
	color: #2071db;
}
.navbar .icon-bar {
    background-color: #2071db;
}

.logo {
	font-family: 'Permanent Marker', cursive;
	color: #2071db;
	padding: 0 5px 0 0;
	font-size: 18pt;
	position: relative;
	top: 10px;
}
.logo.logo-white {
	color: white;
}
.logo.logo-large {
	font-size: 36pt;
}
.rooster-logo {
	height: 40px;
	width: 40px;
	margin-left: 20px;
}
object{
    pointer-events: none;
}

.beta {
	font-size: 8pt;
	position: relative;
	top: -8px;
	left: -5px;
	color: #2071db;
}

/* Authorization CSS */
.auth-box {
	background-color: #2071db;
	color: white;
	padding: 40px 20px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.auth-box .logo {
	text-align: center;
	margin-bottom: 20px;
	padding: 0 15px;
}
.auth-box a, auth-box a:hover {
	color: white;
}
.auth-box p {
	padding-top: 20px;
}

/* Batch Select  */
#batch-form .col-md-4 {
	padding-left: 0px;
}
#batch {
	font-size: 20px;
	height: 40px;
}
.refresh p {
	font-size: 8pt;
}

/* Modal CSS */
.modal-body {
	position: relative;
	min-height: 350px;
}

/* Shipping Dashboard CSS */
.count-container {
	margin-bottom: 20px;
}
.count-container h2 {
	font-size: 24px;
	text-align: left;
}
.box-list {
	padding: 0 15p;
}
.box-list .card {
	padding: 0;
	border: 1px solid white;
	background-color: #0c4d8e;
}
.box-list .card .card-body {
	padding: 1.25rem 0px;
}
.box-list .card h3 {
	font-size: 40px;
}
#ecom-products .list-group-item {
	background-color: transparent;
}
#ecom-products .list-group-item .label {
	font-style: italic;
	font-size: .8rem;
}
#ecom-products .list-group-item .labelValue {
	font-weight: bold;
	font-size: 1.2rem;
	padding-left: 10px;
}

/* Inventory State */
.good {
	background-color: green;
}
.warn {
	background-color: #c4c401;
}
#inventory .warn:hover {
	background-color: #9e9e00;
}
.danger {
	background-color: #bc0303;
}
#inventory .danger:hover {
	background-color: #9b0303;
}
.inventory-box-title {
	margin: 0;
}

.item-box {
	height: 120px;
}
.item-box p {
	margin: 0;
}

/* Loading CSS */
.loading .container {
	width: 200px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 45%;
	margin: auto;
}

.loading .load-rooster {
	width: 50px;
	position: absolute;
	top: 65px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	align-self: flex-end;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	transform-origin: bottom;
	animation-name: rooster-hop;
    animation-timing-function: ease;
}
.loading .load-text {
	position: absolute;
	top: 165px;
	left: 85px;
	color: #2071db;
}

.loading .dot { 
	width: 10px;
	height: 15px;
	border-radius: 50%;
	background-color: #000;
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.loading .dot-3 {
	background-color: #2071db;
	animation: dot-3-move 1.5s ease infinite;
	left: 100px;
}

.loading .dot-2 {
	background-color: #4689c4;
	animation: dot-2-move 2.5s ease infinite;
	left: 140px;
}

.loading .dot-1 {
	background-color: #2071db;
	animation: dot-1-move 1s ease infinite;
	left: 165px;
}

@keyframes rooster-hop {
	0%   { transform: scale(1,1)      translateY(0); }
	10%  { transform: scale(1.05,.95)   translateY(0); }
	30%  { transform: scale(.95,1.05)   translateY(-20px) translateX(5px); }
	50%  { transform: scale(1.02,.98) translateY(0) translateX(5px); }
	57%  { transform: scale(1,1)      translateY(-5px) translateX(0px); }
	64%  { transform: scale(1,1)      translateY(0) translateX(0px); }
	85%  { transform: scale(1,1)      translateY(-5px) translateX(-5px); }
	93%  { transform: scale(1,1)      translateY(0) translateX(-5px); }
	100% { transform: scale(1,1)      translateY(0); }
}

@keyframes dot-3-move {
	0%   { transform: scale(1,1)      translateY(0); }
	57%  { transform: scale(1,1)      translateY(-5px); }
	64%  { transform: scale(1,1)      translateY(0); }
	85%  { transform: scale(1,1)      translateY(-5px); }
	93%  { transform: scale(1,1)      translateY(0); }
	100% { transform: scale(1,1)      translateY(0); }
}

@keyframes dot-2-move {
	0%   { transform: scale(1,1)      translateY(0); }
	20%  { transform: scale(1.05,.95)   translateY(0); }
	30%  { transform: scale(1,1)      translateY(-10px); }
	35%  { transform: scale(1,1)      translateY(0); }
	45%  { transform: scale(1,1)      translateY(0); }
	55%  { transform: scale(1,1)      translateY(-8px); }
	63%  { transform: scale(1,1)      translateY(0); }
	100% { transform: scale(1,1)      translateY(0); }
}

@keyframes dot-1-move {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(25deg); }
   95% { transform: rotate(-25deg); }
  100% { transform: rotate(0deg); }
}

/* Modal Loading */
.modal-body .loading .container {
	top: 20%;
	left: 30%;
}

/* Edit Store page */
#edit-store .card {
	margin: 0 10px;
	padding: 0;
}
#edit-store .card .app-logo {
	max-width: 150px;
}
