input[type=number] {
	-moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	background: #EEEEEE;
	/* Margin bottom by footer height */
	margin-bottom: 95px;
	background-image: url('../images/background_pattern_light.svg');
}

/*********************/
/* Generic bootstrap */
.border {
	border: 1px solid;
}

.cursor-help {
	cursor: help;
}

.d-none {
	display:none;
}

.d-inline{
	display:inline;
}

.d-block {
	display:block;
}

.d-inline-block{
	display:inline-block;
}

.d-flex {
	display: flex;
}

.d-flex.center {
	align-items: center;
}

.align-middle {
	vertical-align:middle !important;
}

.justify-content-between{
	justify-content: space-between;
}

.justify-content-center{
	justify-content: center;
}

.p-0 {
	padding:0;
}

.p-1 {
	padding:1em;
}

.pt-0 {
	padding-top: 0;
}

.pr-0 {
	padding-right: 0;
}

.pb-0 {
	padding-bottom: 0;
}

.pl-0 {
	padding-left: 0;
}

.pt-1 {
	padding-top :1em
}

.pr-1 {
	padding-right: 1em;
}

.pb-1 {
	padding-bottom: 1em;
}

.pl-1 {
	padding-left: 1em;
}

.m-auto {
	margin: auto;
}

.m-0 {
	margin:0;
}

.mt-auto {
	margin-top: auto;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.5em;
}

.mt-2 {
	margin-top: 1em;
}

.mr-auto {
	margin-right:auto;
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-1 {
	margin-right: 0.5em;
}

.mr-2 {
	margin-right: 1em;
}

.mb-auto {
	margin-bottom:auto;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.5em;
}

.mb-2 {
	margin-bottom: 1em;
}

.mb-3 {
	margin-bottom: 1.5em;
}

.ml-auto {
	margin-left: auto;
}

.ml-0 {
	margin-left: 0 !important;
}

.ml-1 {
	margin-left: 0.5em;
}

.ml-2 {
	margin-left: 1em;
}

.text-decoration-dashed {
	text-decoration-style: dashed;
	text-decoration-line: underline;
}

.text-start {
	text-align:left;
}

.h-100 {
	height:100%;
}

.w-80 {
	width:80%;
}

.w-100, .bootstrap-tagsinput {
	width: 100%;
}

.font-weight-bold {
	font-weight:bold;
}

.bootstrap-tagsinput .tag {
	position: relative;
	display: inline-block;
	height: 27px;
	padding: 6px 21px;
	margin: 0 5px 5px 0;
	overflow: hidden;
	font-size: 13px;
	line-height: 15px;
	vertical-align: middle;
	cursor: pointer;
	border-radius: 4px;
	-webkit-transition: .25s linear;

	transition: .25s linear;
}

.bootstrap-tagsinput .tag > span {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 0 10px 0 0;
	font-size: 12px;
	color: #fff;
	text-align: right;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: opacity .25s linear;
	transition: opacity .25s linear;
  }

.bootstrap-tagsinput .tag:hover {
	padding-right: 28px;
	padding-left: 14px;
	color: #fff;
	background-color: #009688;
}

.bootstrap-tagsinput .tag > span::after {
	font-family: 'FontAwesome';
	line-height: 27px;
	content:"\f00d" !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.bootstrap-tagsinput .tag:hover > span{
	filter: none;
	opacity: 1;
	-webkit-filter: none;
}

/* Generic bootstrap */
/*********************/

input.date-selector-input {
	line-height: 1.42857143 !important;
}

/* Add a slight shadow to panels and other containers */
.panel, .nav-pills.nav-stacked {
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.06);
}

.floating-notifications-container {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 10;
}

.floating-notification {
	position: relative;
	background-color: #323232;
	color: #FFFFFF;
	font-size: 14px;
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	height: auto;
	padding: 14px 15px;
	margin-top: 20px;
	overflow: hidden;
	clear: both;
	min-width: 288px;
	max-width: 568px;
	cursor: pointer;
}

#ws-notice-trade-issues.floating-notification, #ws-notice-item-cooldown.floating-notification {
	background-color: #e67e22;
}

#ws-notice-bulk-item-tools.floating-notification {
	color:#2c3e50;
	border: 2px solid #3498db;
	background-color: #ffffff;
	cursor:default;
	width:475px;
}

#ws-notice-bulk-item-tools.floating-notification #bulkSelectedItemsTitle {
	font-size:1.15em;
}

a.secondary {
	color:#9decdc;
}

a.floating-notification {
	display: block;
	transition: background 0.1s ease-in-out;
}

a.floating-notification:hover, a.floating-notification:active, a.floating-notification:focus {
	text-decoration: none;
	color: #fff;
	background: #222;
}

a.floating-notification::after {
	position: absolute;
	display: block;
	content: "\f054";
	top: 50%;
	right: 0;
	margin: -7px 0 0;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 0;
	transition: all 0.1s ease-in-out;
}

a.floating-notification:hover::after {
	right: 15px;
	opacity: 1;
}

.temporary-notification {
	background: #3498db;
	padding-bottom: 17px;
}

a.temporary-notification:hover, a.temporary-notification:active, a.temporary-notification:focus {
	background: #237fbc;
}

.temporary-notification .fa {
	opacity: 0.4;
}

.temporary-notification .temporary-notification-timer {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: #000;
	opacity: 0.2;
}

.consolidation-notification-bars-container {
	margin-top: 10px;
}

.consolidation-progress-block {
	display: flex;
	flex-wrap: wrap;
	margin-top: 5px;
}

.consolidation-progress-item {
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: grey;
	margin-left: 1px;
	margin-right: 1px;
	margin-top: 2px;
	transition: 0.25s;
}

.consolidation-progress-item.state-PENDING {
	background-color: #95a5a6;
}

.consolidation-progress-item.state-SENT {
	background-color: #49abec;
}

.consolidation-progress-item.state-CONFIRMED {
	background-color: #2980b9;
}


.consolidation-progress-item.state-ACCEPTING {
	background-color: #9b59b6;
}


.consolidation-progress-item.state-TRADED {
	background-color: #27ae60;
}


.consolidation-progress-item.state-DONE {
	background-color: #27ae60;
}


.trade-offers-notification-offers-container {
	width: 100%;
	overflow: auto;
	max-height: 150px;
}

.trade-offers-notification-offer-template {
	display: none;
}

.trade-offers-notification-offer {
	display: block;
	min-width: 84px;
	min-height: 45px;
	position: relative;
	margin-bottom: 5px;
}

.trade-offer-name {
	display: inline-block;
	margin-top: 1em;
	margin-left: 5px;
}

.trade-offer-view-btn {
	display: inline-block;
	right: 10px;
	position: absolute;
}

.trade-offers-notification-offers-container::-webkit-scrollbar {
	width: 8px;
}

.trade-offers-notification-offers-container::-webkit-scrollbar-track {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	border: none;
}

.trade-offers-notification-offers-container::-webkit-scrollbar-thumb {
	background-color: #CCCCCC;
	border-radius: 6px;
}

.trade-offers-notification-offers-container::-webkit-scrollbar-thumb:hover {
	background-color: #AAAAAA;
}

.breadcrumb {
	height: 40px;
	line-height: 36px;
	padding: 0;
	list-style: none;
	background: none;
	box-shadow: inset 0 0 0 1px rgb(221, 221, 221);
}

.breadcrumb li:first-child a {
	border-radius: 4px 0 0 4px;
}

.breadcrumb li, .breadcrumb li a, .breadcrumb li span {
	display: inline-block;
	vertical-align: top;
}

.breadcrumb li:not(:first-child) {
	margin-left: -3px;
}

.breadcrumb li + li:before {
	padding: 0;
	content: "";
}

.breadcrumb li span {
	padding: 0 10px 0 15px;
}

.breadcrumb li a, .breadcrumb li span {
	height: 40px;
	line-height: 38px;
	padding: 0 10px 0 25px;
}

.breadcrumb li:first-child a, .breadcrumb li:first-child span {
	padding: 0 10px 0 15px;
}

.breadcrumb li a {
	position: relative;
	color: #fff;
	text-decoration: none;
	background-color: #3498db;
	border: 1px solid #3498db;
}

.breadcrumb li a:after, .breadcrumb li a:before {
	position: absolute;
	top: -1px;
	width: 0;
	height: 0;
	content: '';
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.breadcrumb li a:before {
	right: -10px;
	z-index: 3;
	border-left: 10px solid #3498db;
}

.breadcrumb li a:after {
	right: -11px;
	z-index: 2;
	border-left: 10px solid #318ac5;
}

.breadcrumb li a:focus, .breadcrumb li a:hover {
	background-color: #4fc1e9;
	border: 1px solid #4fc1e9;
}

.breadcrumb li a:focus:before, .breadcrumb li a:hover:before {
	border-left-color: #4fc1e9;
}

.breadcrumb li a:active {
	background-color: #2494be;
	border: 1px solid #2494be;
}

.breadcrumb li a:active:after, .breadcrumb li a:active:before {
	border-left-color: #2494be;
}

.hr-dashed {
	border-style: dashed;
}

/* -- snackbar material -- */

.snackbar {
	background-color: #323232;
	color: #FFFFFF;
	font-size: 14px;
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	height: 0;
	-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
	-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, padding 0s linear 0.2s, height 0s linear 0.2s;
	-moz-transform: translateY(200%);
	-webkit-transform: translateY(200%);
	transform: translateY(200%);
}

.snackbar.snackbar-opened {
	padding: 14px 15px;
	margin-bottom: 20px;
	height: auto;
	-moz-transition: -moz-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s;
	-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s;
	transition: transform 0.2s ease-in-out, opacity 0.2s ease-in, height 0s linear 0.2s, height 0s linear 0.2s;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}

.snackbar.toast {
	border-radius: 200px;
}

/* -- end snackbar -- */

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 95px;
	background-color: #F5F5F5;
	border-top: 1px solid #E6E6E6;
}

.footer .container {
	padding-top: 20px;
	padding-bottom: 8.5px;
}

.footer-right {
	float: right;
}

.footer-separator {
	margin: 0 10px;
	opacity: 0.2;
}

.footer-dev-stats:hover, .footer-dev-stats:focus {
	text-decoration: none;
}

.footer-dev-stats:hover {
	color: #2bd2b1;
}

.footer-dev-stats > span {
	margin-right: 10px;
}

.account-creation-page {
	max-width: 70%;
	margin-left: 15%;
}

.account-pending-verification-page {
	max-width: 70%;
	margin-left: 15%;
	text-align: center;
}

.account-pending-verification-page i {
	margin: 30px 0 0;
	font-size: 60px;
	opacity: 0.5;
	color: #18bc9c;
}

.account-pending-verification-page p {
	max-width: 480px;
	margin: 30px auto;
	line-height: 24px;
}

.account-pending-verification-page .btn {
	width: 200px;
}

.nav.collapse {
	display: block;
}

.collapsable {
	background-color:#efefef;
	padding:10px;
}

.navbar {
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
	padding-top: 16px;
}

.navbar-inverse {
	background-color: #009688;
}

.nav-alert {
	border-radius: 0px;
	margin-bottom:21px;
	text-align: center;

}

.nav-container {
	padding: 8px;
}

.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
	background-color: #067F74;
	color: #B4D5D1;
}

.navbar-brand img {
	height: 30px;
	width: auto;
}

.navbar-nav > li > a.cart-nav-link {
	padding-top: 14px;
	padding-bottom: 14px;
}

.cart-nav-wrapper {
	display: inline-block;
	height: 32px;
	line-height: 16px;
	margin-left: 4px;
	vertical-align: middle;
}

.cart-nav-wrapper #cart-value {
	display: block;
}

.cart-nav-wrapper #cart-num-items {
	display: block;
	font-size: 12px;
	opacity: 0.7;
}

.cart-nav-popout {
	display: none;
	min-width: 240px;
	margin-top: 10px !important;
	border-radius: 4px !important;
	padding: 10px;
	text-align: center;
}

.cart-nav-popout::before {
	content: ' ';
	display: block;
	position: absolute;
	top: -10px;
	right: 40px;
	border: 5px solid transparent;
	border-bottom-color: #fff;
}

.cart-nav-popout .close {
	color: #777;
}

.cart-nav-popout .cart-popout-timer {
	display: inline-block;
	position: absolute;
	left: 7px;
	top: 6px;
	transform: rotate(-90deg);
}

.cart-nav-popout .cart-popout-keep-shopping-btn {
	position: relative;
}

.cart-nav-popout .cart-popout-keep-shopping-text {
	vertical-align: middle;
}

.cart-nav-popout .cart-popout-timer circle {
	stroke-dasharray: 50;
	stroke-dashoffset: 0;
}

.cart-nav-popout .cart-popout-icon {
	margin: 20px 0;
}

.cart-nav-popout .cart-popout-icon img {
	max-width: 80px;
	margin: 0 auto;
}

.cart-nav-popout .cart-popout-item-name {
	margin-bottom: 0;
}

.cart-nav-popout .cart-popout-description {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 13px;
}

.breadcrumbs {
	background-color: #FDFFFF;
}

.mast {
	text-align: center;
	color: #FFFFFF;
	background-color: #00838F;
	padding: 60px;
	margin: 0 0 20px 0;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.06);
	border: 2px solid #006973;
}

.mast h1 {
	font-weight: 700;
}

.well {
	overflow: auto;
}

#sits_logo {
	margin-top: -4px;
}

.fa-del {
	color: red;
}

#cart-total {
	font-size: 18px;
	margin-top: 4px;
	margin-bottom: 18px;
	background: rgba(0, 0, 0, .05);
	padding: 10px;
	overflow: auto;
}

.cart-column-total strong {
	display: block;
	font-size: 16px;
}

.cart-column-total small {
	color: #777;
}

.ttl-items {
	font-size: 13px;
}

.dl-total {
	margin-bottom: 0;
	float: right;
}

.dl-coupons {
	margin-bottom: 0;
	float: left;
}

.modal .close {
	font-size: 30px;
	line-height: 22.5px;
	margin-top: 0;
}

@media (min-width: 992px) {
	#cardDetailsEntryModal .modal-dialog {
		width: 720px;
	}
}

#verifyAddressModal #verifyAddressCode {
	text-transform: uppercase;
}

#verifyPhoneModal .modal-verify-required {
	display: none;
	color: #e74c3c;
	font-weight: bold;
}

#auctionBidPriceModal .modal-dialog {
	width: 700px;
}

#auctionBidPriceModal .list-group-item {
	text-align: center;
	outline: none !important;
}

#auctionBidPriceModal .list-group-item.is-selected {
	background: #ecf0f1;
}

#auctionBidPriceModal .list-group-item.is-locked:not(.is-selected) {
	opacity: 0.4;
	pointer-events: none;
}

#auctionBidPriceModal .list-group-item.is-locked.is-selected .fake-radio-btn {
	background: none;
	border: 0;
	padding-top: 4px;
}

#auctionBidPriceModal .list-group-item.is-locked.is-selected .fake-radio-btn::before {
	content: "\f023";
	color: #3498db;
	margin: 0 0 0 3px;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#auctionBidPriceModal .list-group-item.is-locked.is-selected .fake-radio-btn .fake-radio-btn-inner {
	display: none !important;
}

.email-list > li > div {
	overflow:hidden;
	text-overflow:ellipsis;
}

#auctionBidPriceModal .modal-bid-inputs {
	margin: 5px 0 0;
	transition: opacity 0.15s ease-in-out;
}

#auctionBidPriceModal .modal-bid-inputs.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

#auctionBidPriceModal .modal-bid-need-funds, #auctionBidPriceModal .modal-bid-no-card {
	display: none;
	font-size: 14px;
}

#auctionBidPriceModal .modal-bid-need-funds .btn, #auctionBidPriceModal .modal-bid-no-card .btn {
	margin-top: 10px;
}

#walletFundsModal.is-wide .modal-dialog {
	width: 800px;
}

#walletFundsModal.is-wide .auction-wallet-funds-hint {
	padding-right: 15px;
	text-align: center;
}

#walletFundsModal.is-wide .auction-wallet-funds-hint h4 {
	margin: 0 0 20px;
}

#walletFundsModal.is-wide .auction-wallet-funds-hint .btn {
	margin: 30px auto 0;
}

#walletFundsModal.is-wide .modal-body {
	display: flex;
}

#walletFundsModal.is-wide .modal-body > div {
	display: flex;
	width: 50%;
	justify-content: center;
	flex-direction: column;
}

#walletFundsModal.is-wide .modal-body > div:last-child {
	padding-left: 15px;
}

#authCodeModal {
	z-index: 2000 !important; /*Show above other modals*/
}

.auth-code-modal {
	max-width: 380px;
}

.auth-code-modal .form-group {
	text-align: center;
}

.auth-code-modal .modal-footer {
	text-align: center;
}

.paypal-verification-modal-spinner {
	text-align: center;
	margin-top: 25px;
	font-weight: bold;
	font-size: 20px;
}

.stripe-card-dialog {
	text-align: center;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 50px;
	display: none;
}

.use-existing-stripe-card {
}

.use-new-stripe-card {
}

.use-existing-card {
	font-size: 18px;
	font-weight: bolder;
	margin-bottom: 10px;
}

.no-saved-cards {
	color: rgba(128, 128, 128, 0.86);
	font-style: italic;
	margin-top: 15px;
	margin-left: 25px;
	font-size: 16px;
}

.add-new-card {
	font-size: 18px;
	font-weight: bolder;
	margin-bottom: 10px;
}

.add-new-card-dialog {

}

.existing-card {
	margin-top: 10px;
}

.card-dialog-splitter-inner {
	width: 1px;
	background-color: rgba(0, 0, 0, 0.15);
	height: 105px;
	margin-left: 50%;
}

@media (max-width: 992px) {
	.card-dialog-splitter-inner {
		width: 100%;
		height: 1px;
		margin-left: 0%;
		margin-top: 20px;
		margin-bottom: 20px;
	}
}

.payment-buttons {
	margin: 30px auto;
	text-align: center;
}

.charitable-cause-wrapper {
	text-align: center;
	width: 100%;
}

.charitable-cause-cart-display {
	max-width: 85%;
	margin: auto;
	margin-top: 30px;
}

.charitable-cause-title {
	font-weight: bolder;
	margin-top: -35px;
	margin-bottom: 35px;
}

.charitable-cause-description {
	font-size: 16px;
	line-height: 26px;
}

.charitable-cause-buttons {
	margin-top: 20px;
}

.charitable-cause-buttons .row {
	margin-bottom: 10px;
}

.warning-wrapper {
	width: 100%;
}

.warning-cart-display {
	margin: auto;
	margin-top: 30px;
}

.warning-title {
	font-weight: bolder;
	margin-top: -35px;
	margin-bottom: 25px;
}

.warning-description {
	font-size: 16px;
	line-height: 26px;
}

.warning-buttons {
	margin-top: 20px;
}

.warning-buttons button:first-child {
	margin-right: 1em
}

.warning-buttons .row {
	margin-bottom: 10px;
}

.charitable-cause-line {
	max-width: 70%;
	border-color: rgb(210, 213, 214);
}

.item-variants-container {
	min-height: 100px;
	min-width: 200px;
	max-width: 700px !important;

	position: absolute;
	top: 0px;
	left: 0px;
}

.variants-popover-loading-container {
	text-align: center;
}

.items-variant-container .popover-content {
	width: 100%;
	height: 100%;
}

.variants-popover-title {
	font-weight: bold;
	text-align: center;
}

.variants-popover-results {
	width: 100%;
	text-align: left;
}

.variants-popover-results ul {
	padding-left: 10px !important;
}

.variants-popover-separator {
	border-top: 1px solid #DDDDDD;
	height: 1px;
	margin-top: 10px !important;
	margin-bottom: 10px;
	margin-left: -15px;
	margin-right: -15px;
}

.secondary-separator {
	border-color: black;
}

.sponsored-popover-container {
	text-align: center;
	word-break: break-word;
}

.sponsored-popover-container .avatar-container {
	max-width: 32px;
	max-height: 32px;
	display: inline-block;
}

.sponsored-popover-header {
	font-size: 1.1em;
	font-weight: bolder;
	margin-bottom: 10px;
	display: inline-block;
}

.sponsored-popover-separator {
	border-top: 1px solid #DDDDDD;
	height: 1px;
	margin-top: 10px !important;
	margin-bottom: 10px;
	margin-left: -15px;
	margin-right: -15px;
}


.item-popover-alert {
}

.item-popover-image {
	max-width: 125px;
	margin-top: -15px;
}

.item-popover-image-container {
	width: 100%;
	text-align: center;
}

.item-popover-separator {
	border-top: 1px solid #DDDDDD;
	height: 1px;
	margin-top: -30px !important;
	margin-bottom: 10px;
	margin-left: -15px;
	margin-right: -15px;
}

.item-popover-container.appid-570 .item-popover-image {
	margin-top: 0px;
}

.item-popover-container.appid-570 hr.item-popover-separator {
	margin-top: -10px !important;
}

.item-popover-container.appid-753 .item-popover-image {
	max-width: 100px;
	margin-top: 0px;
	margin-bottom: 20px;
}

.item-image {
	position: relative;
}

.item-secondary-image {
	position: absolute;
	left: 47px;
	top: 62px;
	width: 40px !important;
	height: 40px !important;
}

.item-secondary-image-unusalifier {
	position: absolute;
	left: 54px;
	top: 70px;
	width: 45px !important;
	height: 45px !important;
}

.item-secondary-image-fabricator {
	position: absolute;
	left:25px;
	top:14px;
	width:100px;
	height:100px;
	opacity:78%;
}

.item-tertiary-image-kseyes {
	position: absolute;
	right:0px;
	bottom:0px;
	width:60px;
	height:60px;
	opacity:90%;
}

.item-secondary-image-large {
	position: absolute;
	left: 127px;
	top: 177px;
	width: 90px !important;
	height: 90px !important;
	z-index:2;
}

.auction-image .item-tertiary-image-kseyes {
	width:125px;
	height:125px;
}

.item-secondary-image-unusalifier-large {
	position: absolute;
	left: 140px;
	top: 185px;
	width: 130px !important;
	height: 130px !important;
	z-index:2;
}

.item-secondary-image-fabricator-large {
	position: absolute;
	left:61px;
	top:55px;
	width:70%;
	height:70%;
	opacity:78%;
	z-index:2;
}

.unusual-image {
	position: absolute;
}


.search-loading-icon {
	display: none;
	text-align: center;
	margin: 50px 0;
}

.search-loading-icon .fa {
	margin: 0 10px 0 0;
	opacity: 0.5;
}

.search-loading-extra {
	display: block;
}


.all-items-filter.disabled {
	pointer-events: none;
	opacity: 0.5;
	transition: 0.5s;
}

.related-items {
	overflow: auto;
	max-height: 325px;
	padding-top: 4px;
}

.item-html-name {
	transition: color 0.1s ease-in-out;
}

.item-name-sm {
	font-size: 12px;
}


.paint-color {
	width: 15px;
	height: 15px;
	position: relative;
	float: right;
	border-radius: 100px;
}

.paint-color-inline {
	width: 15px;
	height: 15px;
	border-radius: 100px;
	margin-right: 3px;
	margin-bottom: -2px;
	display: inline-block;
}

.num-input-wrapper {
	width: 100px;
	margin: auto;
}

.num-input-wrapper-large {
	width: 120px;
	margin: auto;
}

.item-amt:focus {
	border-color: #3498DB;
}

.cart-item-img {
	max-width: 50px;
}

.cart-item-amt {
	text-align: center;
	width: 50px;
	padding: 0;
	font-size: 18px;
	height: 35px !important;
}

.cart-table td {
	vertical-align: middle !important;
}

.cart-table a {
	text-decoration: none !important;
}

.cart-table a .item-html-name {
	opacity: 1;
	transition: opacity 0.1s ease-in-out;
	-webkit-backface-visibility: hidden;
}

.cart-table a:hover .item-html-name, .cart-table a:focus .item-html-name {
	opacity: 0.6;
}


#payment-buttons-inner {
	display: flex;
	flex-direction: row;
	align-items: normal;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 445px) {
	#payment-buttons-inner {
		flex-direction: column;
	}

	.payment-processor:not(:first-child) {
		margin-top: 10px;
	}
}

.payment-processor {
	transition: opacity 0.3s ease-in-out;
	display: inline-block;
	margin: 0 3px;
}

.processor-disabled {
	opacity: 0.5;
}

.processor-disabled > * {
	pointer-events: none;
}

.amt_sell {
	font-size: 20px;
	text-align: center;
}

/* Item Pages */
.item-image-large {
	width: 256px;
	height: 256px;
}

.row-image {
	width: 280px;
	text-align: center;
	vertical-align: middle;
}

.item-price {
	font-size: 25px;
}

.add-to-cart {
	text-align: center;
	margin: auto;
}

.cartErrorStr {
	font-size: 16px;
	color: red;
	margin-top: 8px;
	text-align: center;
}

#globalPost {
	padding-left: 70px;
	padding-right: 70px;
}

#globalPost p {
	font-size: 16px;
}

#currency-selection {
	margin-bottom: 8px;
}

.promo-code {
	width: 250px;
	float: left;
}

.cart-updating {
	float: left;
	margin: 10px 12px;
}

.btn-light {
	color: #212529;
	background-color: #f8f9fa;
	border-color: #dce4ec;
}

.btn-marketplace-credit {
	color: #FFFFFF;
	background-color: #149C82;
	border-color: #149C82;
}

.btn-marketplace-credit:hover {
	background-color: #227B6A;
	border-color: #227B6A;
}

.btn-geel-coin {
	color: #FFFFFF;
	background-color: #2ECC71;
	border-color: #2ECC71;
}

.btn-geel-coin:hover {
	background-color: #27AE60;
	border-color: #27AE60;
}

.payment-geel-icon {
	max-width: 25px;
	margin-left: -8px;
	margin-right: 6px;
	border-radius: 100px;
}

.payment-btn-icon {
	max-width: 18px;
	margin-left: -8px;
	margin-right: 6px;
}

.payment-btn-icon.google-pay {
	max-width: 28px;
}

.btn-email-primary {
	margin-right: 5px;
}


.shop-title {
	text-align: center;
	margin-bottom: 22px;
	margin-top: -5px;
}

.alert {
	border-width: 2px;
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.06);
}

.alert a {
	color: #00FFCD;
}

.alert-warning {
	border-color: #e28e32;
}

.alert-warning a {
	color: #00846A;
}

.alert-danger {
	border-color: #c3516a;
}

.alert-danger a {
	color: #74FFE4;
}

.alert-info {
	border-color: #4588bb;
}

.alert-success {
	border-color: #49a3a5;
}

/** User Shop **/
.shop-info-panel {
	width: 70%;
	margin-left: 15%;
	margin-bottom: 70px;
}

.shop-send-message-btn {
	float: right;
}

.shop-userinfo {
	text-align: center;
}

.shop-userinfo-avatar {
	border-radius: 100px;
	width: 90px;
	margin-bottom: 10px;
}

.shop-userinfo-username {

}

.shop-usermessage-title {
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
	overflow-wrap: break-word;
	word-break: break-word;
}

.shop-usermessage-message {
	text-align: center;
	overflow-wrap: break-word;
	word-break: break-word;
}

/** User Messages **/
@media (max-width: 767px) {
	.user-message-thread-link {
		background-color: white;
	}

	.user-message-thread-nav {
		width: unset !important;
	}

	li[data-notification-id] a {
		padding-top: 7px !important;
		padding-bottom: 7px !important;
	}
}

.message-divider {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.message-list-avatar {
	width: 32px;
	border-radius: 20px;
	margin-left: 5px;
	margin-right: 7px;
}

.user-message-thread-link {
	margin-left: 0px !important;
	padding-left: 10px !important;
	padding-top: 0px !important;
}

.user-message-thread-link:hover {
	background-color: #ddd !important;
}

.user-message-thread-link.unread {
	background-color: #EFF0FF;
}

.user-message-thread-link.unread:hover {
	background-color: #D7D8EF !important;
}

.user-message-thread-nav {
	width: 400px;
	padding-top: 2px;
	padding-bottom: 2px;
}

.user-message-thread-nav-user {
	text-align: center;
	margin-top: 5px;
	margin-bottom: auto;
}

.user-message-thread-nav-avatar {
	max-width: 48px;
	border-radius: 26px;
}

.user-message-thread-nav-username {
	font-size: 12px;
	color: #34495E;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-message-thread-nav-message-title {
	color: #34495E;
	text-overflow: ellipsis;
	overflow: hidden;
}

.user-message-thread-nav-message-text {
	font-size: 14px;
	color: #7F8C8D;
	text-overflow: ellipsis;
	overflow: hidden;
	max-height: 17px;
}

.user-message-thread-nav-message-dateline {
	font-size: 11px;
	margin-top: 13px;
	color: #7F8C8D;
}

.nav a {
	transition: .15s;
	transition-property: initial;
	transition-duration: 0.15s;
	transition-timing-function: initial;
	transition-delay: initial;
}

.navbar-avatar {
	padding-top: 10px !important;
	padding-bottom: 9px !important;
}

.nav #messages-menu .messages-empty {
	min-width: 240px;
	text-align: center;
	padding: 50px 20px 30px;
}

.nav #messages-menu .messages-view-all a, .nav #notices-menu .messages-view-all a {
	text-align: center;
	padding: 8px 20px 6px;
}

.nav #messages-menu .messages-view-all a:hover {
	background-color: #ddd !important;
	color: #7b8a8b;
}

.nav #notices-menu .dropdown-menu .fa {
	margin: 0 5px 0 0;
}

.nav #notices-menu .dropdown-menu > li, .nav #notices-menu .dropdown-menu > li > a {
	word-break: normal;
	white-space: normal;
}

@media (min-width:992px) {
	.nav #notices-menu ul {
		width:550px;
	}
}

.nav #notices-menu .dropdown-menu > li > a:hover {
	background-color: #ddd !important;
	color: #7b8a8b;
}

.avatar-container {
	position: relative;
	overflow: visible;
	text-align: center;
}

.avatar-container img {
	border-style: solid;
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	border-radius: 200px !important;
	margin: 0 !important;
}

.avatar-extra {
	background-size: 100% 100% !important;
	background-repeat: no-repeat !important;
	position: absolute;
	height: 35px;
	width: 35px;
	right: 0;
	top: 50%;
}

.avatar-extra-shop {
	height: 55px;
	width: 55px;
	right: 15%;
	top: 40%;
}

@media (max-width: 991px) {
	.avatar-extra-shop {
		right: 35%;
	}
}

@media (max-width: 767px) {
	.avatar-extra-dashboard {
		right: 41%;
	}
}

.user-notices-unread {
	background: #D83C2D;
	color: #EEEEEE !important;
	font-weight: bold;
}

.user-notices-unread:hover {
	background: #AE2417 !important;
}

#blog-unread-count {
	display: inline-block;
	background: #D83C2D;
	color: #fff;
	padding: 0 8px;
	margin-left: 4px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: bold;
}

.seller-signup > .panel-body {
	padding: 15px;
}

.blog-posted-on {
	font-style: italic;
}

.blog-container {
	max-width: 900px;
}

.blog-avatar {
	overflow: visible; /* for hats! */
	margin-right: 10px;
}

.blog-title {
	margin-bottom: 5px;
}

.blog-time {
	font-size: 16px;
	margin-top: 5px;
}

.blog-bread {
	margin-bottom: 20px;
	margin-top: 20px;
	overflow: hidden;
}

.blog-posted {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-post-html {
	margin-top: 20px;
	font-family: Tahoma, serif;
	font-size: 1.15em;
	line-height: 28px;
}

.blog-post-html ul br {
	display: none;
}

.blog-post-html li {
	margin-bottom: 5px;
}

.blog-pagination {
	margin-bottom: 21px;
	text-align: center;
}

.blog-cont {
	position: relative;
	border: 2px solid rgb(221, 221, 221);
	border-radius: 6px;
}

.blog-cont .panel-body {
	position: relative;
	padding: 15px 30px;
}

.blog-cont .badge {
	margin: 0 0 0 5px;
	vertical-align: 0;
}

.blog-cont .badge-important {
	background: #e74c3c;
}

.blog-cont .badge-feature {
	background: #f39c12;
}


.blog-cont .badge-patch_notes {
	background: #3498db;
}

.blog-cont.is-preview .blog-post-html {
	max-height: 129px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-cont.is-preview .blog-post-html img {
	display: none;
}

.blog-cont.is-preview .blog-continue {
	display: block;
	text-align: center;
	margin-top: 15px;
}

.popover {
	max-width: 400px;
}

.search-container {
	margin: 0 6px;
	position: relative;
}

.search-options .btn {
	display: block;
	min-width: 90px; /* Adjust this width to the biggest button */
}

#allSortDirectionBtn {
	min-width: 0 !important;
	margin-left: 3px;
}

.item-title-container {
	display: flex;
	border-bottom: 1px solid #3498DB;
	flex-wrap: wrap;
}

.item-title {
	font-size: 20px;
	padding: 15px;
	flex-grow: 1;
}

.item-buttons {
	padding: 11px;
	flex-grow: 1;
	text-align: right;
}

#item-amt {
	width: 150px;
	margin: auto;
	text-align: center;
}

.community-descriptor .description {
	word-wrap: break-word;
}

.community-descriptor .description a {
	color: inherit;
}

/* Auctions */

.auction-title {
	font-size: 20px;
	padding: 15px;
	border-bottom: 1px solid #3498DB;
}

.auction-options {
	display: flex;
	height: 100%;
	padding: 15px;
	text-align: center;
	border-right: 1px solid #3498DB;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.auction-image {
	position:relative;
	border-right: 1px solid #3498DB;
	height: 100%;
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.auction-image-main {
	z-index: 1;
}

.auction-image .unusual-image {
	z-index: 0;
}

.auction-image img {
	max-width: 100%;
}

.auction-details {
	padding: 15px;
	max-width:400px;

}

#bid-amount-label {
	font-size: 18px;
}

#bid-amount-group {
	width: 200px;
	margin: auto;
}

.items-page-filtered-explanation {
	margin-bottom: 30px;
	font-weight: bold;
}

.current-bid {
	font-size: 20px;
	margin-bottom: 40px;
	font-weight: bold;
}

.current-bid:last-child {
	margin-bottom: 0;
}

.current-bids {
	font-size: 14px;
	font-weight: normal;
}

.current-bid-amount {
	font-size: 25px;
	font-weight: normal;
}

.auction-details h4 {
	text-align: center;
	font-size: 20px;
}

.auctioneer-details {
	display: flex;
	justify-content: center;
}

.auctioneer-avatar {
	width: 60px;
	height: 60px;
	border-radius: 100px;
	border: 1px solid #3498DB;
}

.auctioneer-name {
	font-size: 18px;
	margin-left: 10px;
	display: flex;
	align-items: center;
}

.auction-description {
	margin-top: 30px;
}

.auction-page {
	position: relative;
}

.auction-page .info-row {
	min-height: 350px;
}

.auction-page.is-winning::after {
	content: 'Currently Winning!';
	position: absolute;
	top: 87px;
	left: 50%;
	width: 140px;
	background: #27ae60;
	color: #fff;
	margin: 0 0 0 -70px;
	padding: 4px 8px;
	font-size: 14px;
	text-align: center;
	border-radius: 4px;
	z-index: 1;
}

.auction-page.is-outbid::after {
	content: 'You were outbid';
	position: absolute;
	top: 87px;
	left: 50%;
	background: #f39c12;
	color: #fff;
	margin: 0 0 0 -55px;
	padding: 4px 8px;
	font-size: 14px;
	border-radius: 4px;
	z-index: 1;
}

.auction-page.is-winning.has-won::after {
	content: 'Auction Won!';
}

.auction-page .current-bid strong {
	display: block;
	font-size: 25px;
	font-weight: normal;
}

.auction-page .current-bid .auction-box-info {
	font-weight: normal;
}

.auction-page .place-bid-group .auction-place-bid {
	margin-top: 15px;
}

.auction-page .auction-options {
	position: relative;
}

.auction-page .place-bid-bptf {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	font-size: 14px;
	color: #777;
}

.auction-page .place-bid-bptf strong {
	color: #333;
}

.auction-page .place-bid-bptf .is-good-deal {
	margin-left: 5px;
	color: #27ae60;
}

.auction-page .place-bid-bptf .is-good-deal i {
	margin-right: 2px;
	vertical-align: 3px;
}

.auction-page [data-value=bids] table {
	margin-bottom: 0;
}

.auction-page hr {
	width: 100%;
}

.auction-userinfo-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	padding: 15px;
	text-align: center;
	border-right: 1px solid #3498DB;
}

.auction-userinfo-avatar {
	border-radius: 100px;
	width: 90px;
	margin-bottom: 10px;
}

.auction-userinfo-username {
	font-weight: bold;
	font-size: 1.5em;
}

/* Auction userinfo popovers */
.auction-popover-container .auction-userinfo-panel {
	border-right: unset;
}

.auction-popover-container .auction-userinfo-avatar {
	width: 35px;
	display: inline-block;
	margin-bottom: 0px;
}

.auction-popover-container .auction-userinfo-username {
	display: inline-block;
	font-size: 1.2em;
}

.auction-popover-container hr {
	margin-top: 10px;
	margin-bottom: 10px;
	border-color: #bdc3c766;
	width: 100%;
}

.auction-page .auction-item-image {
	text-align: center;
}

.auction-page .auction-item-image img {
	width: 50%;
	height: auto;
}

.auction-page .auction-details {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.auction-create hr {
	margin: 15px -15px;
}

.auction-create h3 {
	margin: 0 0 15px;
	font-size: 20px;
}

.auction-creation-disabled-form {
	display: none;
}

.auction-creation-no-items-container {
	display: flex;
	width: 100%;
	height: 100%;

	text-align: center;
	justify-content: center;
	flex-flow: column;
}

.auction-item-selected-indicator {
	font-size: 3em;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	color: #16a085;

	text-align: center;
	padding-top: 180px;
}

.auction-create .auction-creation-descriptors-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -5px;
}

.auction-create .auction-creation-descriptor {
	position: relative;
	max-width: 300px;
	min-width: 300px;
	min-height: 150px;
	margin: 5px;
	flex-grow: 1;
	flex-basis: 0;
}

.auction-create .auction-creation-descriptor .panel {
	border-color: #3498DB;
	margin-bottom: 0;
	padding: 5px;
	height: 100%;
	width: 100%;
}

.auction-create .confirm-container {
	width: 100%;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 5px;
}

.auction-create .item-grid {
	height: 400px;
	padding: 10px;
	overflow-y: scroll;
	position: relative;
}

.auction-create .auction-creation-item-name {
	text-align: center;
}

.auction-create .auction-creation-item-image-container {
	text-align: center;
	margin-top: 20px;
}

.auction-create .auction-creation-item-image-container.nodisplay {
	display: none;
}

.auction-creation-item-image-container img {
	max-width: 100px;
}

.auction-create .auction-creation-item-name .item-html-name {
	font-size: 22px !important;
}

.item-grid.completed {
	pointer-events: none;
}

.item-grid.completed .panel {
	opacity: 0.5;
}

.auction-create .item-cell {
	position: relative;
	display: block;
	width: 102px;
	height: 110px;
	margin: 5px;
	float: left;
	border: 2px dashed #dce4ec;
	border-radius: 4px;
}

.auction-create .item-cell:hover, .pointer {
	cursor: pointer;
}

.auction-create .item-cell .item-icon {
	position: absolute;
	height: 60px;
	top: 5px;
	left: 10px;
	right: 10px;
	bottom: 15px;
	background-size: cover;
	background-position: center;
}

.auction-create .item-cell .item-name {
	position: absolute;
	bottom: 5px;
	left: 5px;
	right: 5px;
	text-align: center;
	line-height: 10px;
}

.auction-create .item-cell .item-html-name {
	font-size: 10px !important;
}

@media (max-width: 768px) {
	.flex-row {
		flex-direction: column;
	}

	.auction-options {
		border-right: none;
		border-bottom: 1px solid #3498DB;
	}

	.auction-image {
		border-right: none;
		border-bottom: 1px solid #3498DB;
	}

	.auction-image {
		text-align: center;
	}

	.auction-image img {
		max-width: 200px;
	}
}

/* End Auctions */

.twoFactorSpinnerContainer {
	display: none;
	text-align: center;
	font-size: 2em;
	margin-top: 0.5em;
}

.twoFactorErrorContainer {
	text-align: center;
	font-weight: bold;
	color: #E74C3C;

	margin-top: 1em;
}

#twoFactorAuthCode {
	text-align: center;
}

.mp-pagination {
	display: inline;
}

.mp-pagination-spinner-container {
	margin-right: 10px;
}

.pagination-manual-container #pagination-manual-text-entry {
	text-align: center;
}

.set-price-modal-tts {
	font-weight: bolder;
	font-size: 1.8em;
	margin-top: 8px;
}

.set-price-graph-loading {
	text-align: center;
}

.set-price-modal-amt {
	font-weight: bolder;
	font-size: 1.6em;
}

.set-price-modal-item-name {
	margin-top: 5px;
}

.dashboard-items-list td, .dashboard-auctions td {
	vertical-align: middle !important;
}

.dashboard-item-buttons {
	line-height: 200%;
}

.pagination-heading, .pagination-footer {
	display: flex;
}

.pagination-footer {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
}

.pagination-title {
	display: flex;
	align-items: center;
	flex-grow: 1;
}

.outpost-dashboard-image {
	max-width: 300px;
	width: 100%;
}

.outpost-dashboard-image-container {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.backpack-dashboard-image {
	max-width: 300px;
	width: 100%;
}

.backpack-dashboard-image-container {
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.flex-row {
	display: flex;
}

.col-3 {
	flex-grow: 1;
	flex-shrink: 1;
	width: 100%;
}

.search-options {
	display: flex;
	margin-top: 5px;
	flex-wrap: wrap;
	justify-content: center;
}

.search-options > div {
	margin-bottom: 5px;
}

.searchElem_select.changed button {
	background-color: #2a4867;
	border-color: #2a4867;
}

.searchElement button > i.multiple-option-icon:not(:first-child) {
	margin-left:5px;
}

.searchElement button > img.search-image-emblem.large {
	margin: 0px;
	width: 16px;
	height: 16px;
}

.searchElement button > img.search-image-emblem.large:not(:last-child) {
	margin-right:8px;
}

.searchElement ul.dropdown-menu li.active > a {
	background-color:rgba(136,134,134,.15);
}

.searchGroup_inline {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -3px;
}

.searchGroup_inline .searchElement {
	margin-bottom: 3px;
}


.searchGroup_wholewidth {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: -3px;
}

.searchGroup_wholewidth .searchElement {
	margin-bottom: 3px;
}

.select-ul-emblem {
	width: 36px;
	height: 36px;
	margin-left: -10px;
	margin-right: 5px;
	visibility: hidden;
	display: inline-block;
}

.select-ul-emblem.small {
	width: 32px;
	height: 32px;
	margin-right: 10px;
}

.select-ul-emblem.dota2-hero, .select-ul-emblem.steam-app {
	width: 57px;
	height: 32px;
	margin-right: 5px;
}

.select-ul-emblem[src] {
	display: inline-block;
	visibility: visible;
}

.searchGroup_right_hover_item_search {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin-bottom: -3px;
}

.searchGroup_right_hover_item_search .searchElement {
	margin-bottom: 3px;
}

.searchGroup_right_hover_item_search .right-hover-group-label {
	display: none;
}

@media (min-width: 1400px) {
	.searchGroup_right_hover_item_search {
		width: 200px;
		display: flex;
		flex-wrap: wrap;
		position: absolute;
		top: -28px;
		right: -200px;
	}

	.searchGroup_right_hover_item_search .right-hover-group-label {
		display: block;
		font-weight: bold;
		width: 100%;
		text-align: center;
	}

	.searchGroup_right_hover_item_search .searchElement {
		margin-top: 5px;
	}
}

.searchElem_select .dropdown-menu {
	max-height: 300px;
	overflow-y: auto;
	overflow-x: hidden;
}

#searchElem_strange i, #searchElem_craftable i, #searchElem_festivized i {
	margin-left: -3px;
	margin-right: 3px;
}

.search-options .btn {
	margin-right: 5px;
	max-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;

}

.search-options .input-group-btn {
	width: 0% !important;
}

input.select-search {
	width: 95%;
	margin-left: 2.5%;
	padding-left: 5px;
	border-radius: 5px;
	border-style: solid;
	border-color: #dce4ec;
}

.search-image-emblem {
	width: 24px;
	height: 24px;
	margin-left: -5px;
	margin-right: 5px;
}

.search-image-emblem.small {
	width: 16px;
	height: 16px;
	margin-left: -2px;
	margin-right: 2px;
}

.search-image-emblem.large {
	width: 32px;
	height: 32px;
	margin-left: -8px;
	margin-right: 8px;
}

.search-image-emblem.xtra-large {
	width: 48px;
	height: 48px;
	margin-left: -10px;
	margin-right: 10px;
}

.search-image-emblem-570 {
	width: 32px;
	height: 24px;
	margin-left: -5px;
	margin-right: 5px;
}

.search-image-emblem-570.large {
	width: 48px;
	height: 32px;
	margin-left: -8px;
	margin-right: 8px;
}

.searchElem_toggle #sortdir {
	min-width: 0px !important;
	margin-left: -3px !important;
}

#allSortDirectionBtn {
	min-width: 0px !important;
	margin-left: -3px !important;
}

#allSearchInput {
	margin-right: 5px;
	margin-left: 0px;
	max-width: 300px;
}

.search-text-elem {
	margin-right: 5px;
	margin-left: 0px;
	max-width: 300px;
}


.buy-order-card-info {
	display: flex;
	align-items: center;
}

.buy-order-card-info .card {
	font-size: 25px;
	flex-grow: 1;
}

.buy-order-button-container {
	margin-top: 8px;
}

.panel-full-height {
	height: 100%;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
}

.panel-full-height .panel-body {
	flex-grow: 1;
}

.col-panel-padding {
	padding-bottom: 21px;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.buy-order-item-name {
	font-size: 16px;
	margin-bottom: 15px;
}

.add-wallet-funds-hint {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.wallet-hr {
	margin: 10px 0;
}

th.header {
	position:sticky;
	top: 0 ;
}

.table-display {
	display: table-row;
}

.table-box:first-child {
	font-weight: bold;
	padding-right: 0.5em;
}

.table-box {
	display: table-cell;
}

input[type='text'].form-control.small {
	width: auto;
	display: inline;
}

#confirmOptionModal {
	/* Standard is 1050 for modals */
	z-index: 1060 !important;
}

.panel-heading-buttons {
	display: flex;
	align-items: center;
}

.panel-heading-buttons .heading-title {
	flex-grow: 1;
}

/* Increase height of labels to match buttons, when in a list group */
.list-group-item .label {
	font-size: 13px;
	line-height: 1.5;
	display: block;
	float: right;
	font-weight: normal;
}

@media (min-width: 769px) {
	.row-eq-height {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.row-eq-height .col-md-6 {
		width: 50%;
		flex-grow: 1;
		flex-shrink: 1;
	}
}

@media (max-width: 550px) {

	.item-image-large {
		width: 150px;
		height: 150px;
	}
}

/* Comments */

.comments-entry {
	display: flex;
	flex-direction: row;
	padding: 10px;
}

.comments-entry input {
	flex-grow: 1;
	margin-right: 10px;
}

.comments-list {
	display: flex;
	flex-direction: column;
}

.comment {
	display: flex;
	flex-direction: row;
	padding: 5px 10px;
}

.comment-deleted {
	opacity: 0.5;
	background: rgba(231, 76, 60, 0.1) !important;
}

.comment-deleted .comment-delete {
	display: none;
}

.comment-delete {
	margin-left: 5px;
}

.comment-delete a, .comment-delete a:hover {
	color: #E74C3C;
}

.comment:nth-child(odd) {
	background-color: rgba(0, 0, 0, .02);
}

.comment-avatar {
	margin-right: 10px;
}

.comment-avatar img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
}

.comment-block {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.comment-title {
	display: flex;
	flex-direction: row;
	margin-bottom: 5px;
}

.comment-content {

}

.comment-username {
	flex-grow: 1;
}

.comment-time {
	font-size: 14px;
}

/* Announcements */
.alert-announcement {
	display: flex;
}

.alert-announcement .close {
	position: relative;
	top: -4px;
}

.alert-announcement .alert-icon {
	margin-right: 10px;
}

.announcement-content {
	flex-grow: 1;
}

.announcement-footer {
	display: flex;
	margin-top: 5px;
	font-size: 12px;
}

.announcement-comments {
	flex-grow: 1;
}

.announcement-border-danger {
	border-color: #e74c3c;
}

.announcement-border-info {
	border-color: #3498db;
}

mptrans.activated {
	border: 1px solid red;
}

app-switcher {
	width: 100%;
	margin-bottom: 20px;
}

.auction-boxes-container {
	text-align: center;
	margin: 25px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.auction-box {
	position: relative;
	background-color: #455A64;
	color: #EEEEEE;
	display: inline-block;
	margin: 3px 2px;
	padding: 0 0 0 164px;
	border-radius: 4px;
	width: 374px;
	height: 234px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.075);
	transition: background 0.1s ease-in-out;
}

.auction-box.is-winning::after {
	content: 'Currently Winning!';
	position: absolute;
	top: -10px;
	right: -6px;
	background: #27ae60;
	color: #fff;
	padding: 4px 8px;
	font-size: 12px;
	border-radius: 4px;
	z-index: 1;
}

.auction-box.is-outbid::after {
	content: 'You were outbid';
	position: absolute;
	top: -10px;
	right: -6px;
	background: #f39c12;
	color: #fff;
	padding: 4px 8px;
	font-size: 12px;
	border-radius: 4px;
	z-index: 1;
}

.auction-box.is-winning.has-won::after {
	content: 'Auction Won!';
}

.auction-box-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 164px;
	height: 234px;
	text-align: center;
}

.auction-box-image-link {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px;
}

.auction-box-image img {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -60px;
	width: 120px;
	height: 120px;
}

.auction-box-detail {
	display: block;
	height: 234px;
	padding: 15px;
	background: #37474F;
	text-align: center;
	border-radius: 0 4px 4px 0;
}

.auction-box-name {
	display: block;
	height: 64px;
}

.auction-box-name-link:hover, .auction-box-name-link:focus {
	text-decoration: none;
}

.auction-box-bid {
	color: #b4bcc2;
}

.auction-box-bid strong {
	display: block;
	font-size: 25px;
	font-weight: normal;
	color: #fff;
}

.auction-box-bid .is-winning, .auction-page .is-winning {
	color: #27ae60;
}

.auction-box-bid .no-bids, .auction-page .no-bids {
	color: #b4bcc2;
}

.auction-box-info .separator {
	margin: 0 4px;
	opacity: 0.2;
}

.auction-box-total-bids {
	opacity: 0.6;
	font-size: 13px;
}

.auction-box-remaining {
	font-size: 13px;
}

.auction-box-remaining .fa {
	opacity: 0.4;
	margin: 0 2px 0 0;
}

.auction-box-remaining .text-danger {
	color: #fd6f60 !important;
}

.auction-box-info .auction-box-deal-pct {
	display: none;
}

.auction-box-info .auction-box-deal-pct span {
	color: #27ae60;
	font-size: 13px;
	font-weight: bold;
}

.auction-box-info .auction-deal-separator {
	display: none;
}

.auction-box-info.has-deal {
	margin-left: -15px;
	margin-right: -15px;
}

.auction-box-info.has-deal .auction-box-deal-pct {
	display: inline-block;
}

.auction-box-info.has-deal .auction-deal-separator {
	display: inline-block;
}

.auction-box-actions {
	margin-top: 25px;
}

.auction-box-actions > * {
	margin: 0 2px;
}

.auction-box-actions .input-group {
	display: inline-table;
	vertical-align: top;
}

.fake-radio-btn {
	width: 20px;
	height: 20px;
	display: inline-block;
	background-color: white;
	border-radius: 100px;
	border: 2px solid #cccccc;
	padding-top: 4px;
	margin-right: 10px;
	margin-bottom: -4px;
	position: relative;
}

.fake-radio-btn.checked {
	border: 2px solid #3498db;
}

.fake-radio-btn.checked .fake-radio-btn-inner {
	display: inline-block !important;
}

.fake-radio-btn-inner {
	display: none;
	width: 12px;
	height: 12px;
	background-color: #3498db;
	border-radius: 100px;
	z-index: 100000;
	position: absolute;
	top: 2px;
	left: 2px;
}

.form-control.StripeElement--focus {
	border-color: #2c3e50;
}

.card-auth-hint {
	opacity: 0.85;
	font-size: 0.8em;
	font-style: italic;
}

.card-security-hint {
	font-size: 0.9em;
	font-style: italic;
}

.nav-pills.nav-stacked {
	background-color: #FFF;
	border-radius: 4px;
	border: 1px solid #2c3e50;
}

.nav-pills.nav-stacked > li > a {
	border-radius: 0;
}

.nav-pills.nav-stacked > li:first-child > a {
	border-top-left-radius: 2.5px;
	border-top-right-radius: 2.5px;
}

.nav-pills.nav-stacked > li:last-child > a {
	border-bottom-right-radius: 2.5px;
	border-bottom-left-radius: 2.5px;
}

.seller-setup .panel-body {
	padding: 30px 15px;
}

.seller-setup .panel-body p {
	font-size: 16px;
}

.seller-setup .panel-body h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

.step-flow {
	display: flex;
	border-bottom: 1px solid #dce4ec;
}

.step-flow .step {
	color: rgb(44, 62, 80);
	flex-grow: 1;
	flex-basis: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0.5;
	padding: 15px;
}

.step-flow .step:hover {
	text-decoration: none;
	opacity: 1;
}

.step-flow .step .fa {
	margin-bottom: 5px;
}

.step-flow .step:not(:last-child) {
	border-right: 1px solid #dce4ec;
}

.step-flow .step-active {
	opacity: 1;
}

.big-choices {
	display: flex;
}

.big-choices .big-choice {
	color: rgb(44, 62, 80);
	flex-grow: 1;
	border: 1px solid #ecf0f1;
	border-radius: 4px;
	padding: 10px 15px;
	display: flex;
}

.big-choices .big-choice:focus {
	text-decoration: none;
}

.big-choices .big-choice:hover {
	text-decoration: none;
	color: #555555;
	background-color: #ecf0f1;
}

.big-choices .big-choice:not(:last-child) {
	margin-right: 10px;
}

.big-choice .big-choice-text {
	flex-grow: 1;
}

.payout-method-actions {
	margin-top: 20px;
	text-align: center;
}

.btn-routable {
	max-height:46px;
	background-color: #226;
	color:white;
}

.btn-routable svg {
	color:white;
	height:auto;
	width:6em;
}

.sell-conditions-spaced li {
	margin: 5px 0;
}

.bottom-border-light {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#checkoutCoinbaseButton {
	background-color: #0050ff;
}

#checkoutCoinbaseButton img {
	height: 19px;
	vertical-align: top;
}

#checkoutCoinbaseButton:hover {
	background-color: #0041d0;
}

@media screen and (max-width: 991px) {
	.navbar-right {
		position: relative;
		height: 60px;
		margin: 0 -15px;
		background: rgba(0, 0, 0, 0.1);
	}

	.navbar-right > li {
		position: static;
		float: left;
		width: auto;
		height: 60px;
	}

	.navbar-right > li > a {
		padding-top: 19.5px;
		padding-bottom: 19.5px;
	}

	.navbar-avatar {
		padding-bottom: 10px !important;
	}

	.navbar-right .dropdown .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
	}

	#primary-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
		padding-left: 15px;
		padding-right: 15px;
	}

	.container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
		margin-left: -15px;
		margin-right: -15px;
	}

	.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
		margin-left: 0;
	}

	.navbar > .container {
		width: auto;
	}

	.navbar-collapse {
		border-top: 1px solid transparent;
	}

	#userNav .navbar-nav {
		margin-left: 15px;
	}

	.navbar-right {
		clear: both;
		float: none !important;
		margin-left: -15px;
	}

	#user-menu {
		float: right;
	}

	.nav-pills.nav-stacked {
		margin-bottom: 21px;
	}
}

/* Mobile and below */
@media screen and (max-width: 767px) {
	body {
		margin-bottom: 150px;
	}

	.nav.collapse {
		display: none;
	}

	.nav.collapse.in {
		display: block;
	}

	.navbar-nav .dropdown .dropdown-menu {
		background: transparent;
		transition: background 0.15s ease-in-out;
	}

	.navbar-nav .dropdown.open .dropdown-menu {
		background: #15a589;
	}

	.footer {
		height: 150px;
		text-align: center;
	}

	.footer-right {
		float: none;
		margin-bottom: 10px;
	}

	.item-buttons {
		padding: 11px 15px 15px;
		text-align: right;
	}

	.cart-nav-popout {
		right: auto;
		left: 15px;
		width: 280px;
	}

	.cart-nav-popout::before {
		left: 40px;
		right: auto;
	}

	/* Two factor form */

	.form-2fa .form-control {
		margin-bottom: 4px;
	}

	.form-2fa .btn {
		margin-bottom: 4px;
		display: block;
		width: 100%;
	}
}

@media (max-width: 485px) {
	.search-options .btn {
		margin-top:3px;
		margin-right:5px;
	}
}

@media (max-width: 740px) {
	.email-list .list-buttons {
		display:flex;
		justify-content: space-between;
		margin-bottom:1em;
	}

	.email-list .list-info {
		text-align:justify;
	}
}