:root {
	--white: #fff;
	--black: #000;
	--primary: #721012;
	--grey: #303030;
	--light-grey: #e7e7e7;
	--yellow : #feee50;
	--green: #74f94d;
	--grey-log: #c3c3c3;
	--aqua: #65dafb;
 }
.log-list .table-log {
	text-align: left;
    width: 100%;
}
.log-list .table-log td {
	border-top: none;
} 
.log-list .table-log td .woo-ua-current,
.log-list .table-log td .winning_bid {
	display: none;
}
.log-list .item-unsold {
	background-color: #000;
}
.log-list .item-sold {
	background-color: #74f94d;
}
.log-list .item-hidden {
	background-color: #feee50;
}
.log-list .item-live {
	background-color: #fff;
}
.log-list .item-updated {
	background-color: #c3c3c3;
}
.log-list .item-payout-cancelled,
.log-list .item-payout {
	background-color: #65dafb;
}
.log-list .item-wallet {
	background-color: rgb(255, 0, 0);
}
.log-list .item-wallet-added {
	background-color: #10722c;
}
.log-list .item-cabinet {
	background-color: #721012;
}
.log-list .seller-log {
	background-color: #ccc;
	padding: 20px;
	margin-bottom: 20px;
}
.log-list .log-item-shop_item .item-sold.item-color {
	background-color: #483D8B;
}
.log-list .log-item-shop_item .item-hidden.item-color {
	background-color: #9370DB;
}
.log-list .table-log th small {
	font-size: 12px;
	display: block;
}
.log-list .table-log  td img {
	width: 60px !important;
}
 
/* Tooltip container */
.status-tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.status-tooltip .tooltiptext {
	visibility: hidden;
	width: 300px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 10px 14px;
	border-radius: 6px;
	position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
	transform: translateY(-50%);
	font-size: 14px;
}
.log-list .table-auction:first-child {
	border-right: 2px solid #000;
} 

/* Show the tooltip text when you mouse over the tooltip container */
.status-tooltip:hover .tooltiptext {
	visibility: visible;
}
.log-list .table-log td:not(.table-auction td) {
	padding: 0;
}
.log-list .table-auction {
	padding: 10px 12px;
	font-size: 12px;
	position: relative;
}
.log-list .table-auction .subitem-wrap {
	display: flex;
	justify-content: space-between;
}
.log-list .table-auction .subitem-wrap .subitem {
	width: 33%;
}
.log-list .table-auction .subitem-wrap .subitem > span {
	font-size: 10px;
	display: block;
	line-height: 1;
}
.log-list .table-auction .subitem-wrap .subitem strong {
	font-size: 12px;
	display: block;
}
.log-list .table-auction input[type="checkbox"] {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.account-info .seller-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.seller-wrap {
    display: flex;
    justify-content: space-between;
}

.seller-wrap .seller-payments {
    width: 50%;
    padding-right: 10px;
}
.seller-wrap .seller-logs {
    width: 50%;
    padding-left: 10px;
    border-left: 2px solid #000;
}
.seller-wrap .user_note {
	border: 1px solid #000;
	padding: 10px;
}
.date-wrap {
	display: flex;
	justify-content: space-between;
}
.date-wrap .date-field {
	width: 48%;
}
.date-wrap .date-field input {
	width: 100%;
}
.inline-box {
	display: flex;
    justify-content: flex-start;
	width: 100%;
    flex-wrap: wrap;
}
.inline-box li {
	width: auto;
	margin: 0 5px;
	font-size: 12px;
}
.inline-box li input {
	margin-right: 5px;
}
/* .log-filter input[type="checkbox"] {

} */
/* Hide the browser's default checkbox */
.log-filter label {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-bottom: 14px;
    height: 22px;
  }
  
.log-filter label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
.log-filter label .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	border: 2px solid #000;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .log-filter label input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .log-filter label .checkmark:after {
	left: 7px;
    top: 3px;
	width: 5px;
	height: 10px;
	border: solid var(--black);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.log-filter label .checkmark.check-bg-black:after {
	border-color: var(--white);
}
.check-bg-white {
	background-color: var(--white);
}
.check-bg-green {
	background-color: var(--green);
} 
.check-bg-yellow {
	background-color: var(--yellow);
}
.check-bg-black {
	background-color: var(--black);
}
.check-bg-grey {
	background-color: var(--grey-log);
}
.check-bg-payment {
	background-color: var(--aqua);
}
 
.js-send-invoice.disabled {
	pointer-events: none;
	position: relative;
}
.js-send-invoice.disabled:before {
	content: '';
	position: absolute;
	right: -38px;
    top: 50%;
	transform: translateY(-50%);
	background-image: url('../images/loading.gif');
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 30px;
	height: 30px;
}

.js-accordian-title { 
	background-image: url('../images/arrow-down.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	width: 12px;
	height: 12px;
}
.log-list .item-log-main {
	border: 1px solid #000;
	margin-bottom: 10px;
	background-color: #ffff;
}
.log-list .table-auction tr.accordian-heading td {
	border: none !important;
	padding: 0 !important;
}
.log-list .table-auction tr.accordian-heading td .accordian-item {
	display: flex;
	justify-content: space-between;
	padding: 14px 5px;
}
.log-list .table-auction tr.accordian-content {
	display: none;
}
.log-list .item-log {
	display: none;
}
.log-list .item-log.payment-log,
.log-list .item-log.wallet-log,
.log-list .item-log.wallet-log-added,
.log-list .item-log.item-first-log {
	display: block;
}
.log-list .item-log .item-detail {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.log-list .item-log .item-color {
	width: 4%;
	border-right: 1px solid #000;
	align-self: normal;
	min-height: 56px;
	position: relative;
}
.log-list .item-log .item-color input {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.log-list .item-log .item-title {
	width: 18%;
}
.log-list .item-log .item-label {
	width: 17%;
}
.log-list .item-log .item-prices {
	width: 22%;
}
.log-list .item-log .item-prices .subitem span {
	font-size: 10px;
}
.log-list .item-log .item-prices .subitem-wrap {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.log-list .item-log .item-prices .subitem-wrap .subitem {
	width: 100%;
}
.log-list .item-log div {
	font-size: 12px;
	margin-right: 4px;
}
.log-list .item-log .item-log_time,
.log-list .item-log .item-log_date,
.log-list .item-log .item-method,
.log-list .item-log .item-price,
.log-list .item-log .item-amt {
	width: 18%;
}
.log-list .item-log div.item-fees .button-fees {
	display: inline-block;
    border-radius: 18px;
    width: 28px;
    text-align: center;
    padding: 0;
    font-size: 12px;
    vertical-align: middle;
    min-height: 22px;
}
.log-list .item-log div.item-fees {
	position: relative;
}
.log-list .item-log div.item-actions {
	width: 10%;
	display: flex;
	justify-content: space-between;
}
.log-list .item-log div.item-arrow {
	margin-left: 10px;
}
.popup-contact {
	position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
	display: flex;
    align-items: center;
}
.popup-contact .inner-popup {
	max-width: 450px;
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px;
    border-radius: 5px;
    position: relative;
    margin: 0 auto;
}
.popup-contact .close-contact-popup {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    text-decoration: none;
    display: block;
    font-size: 22px;
}
.popup-contact input[type="text"] {
	width: 100%;
}
.popup-contact button[type="button"] {
	position: relative;
}
.popup-contact button[type="button"]:after {
	content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../images/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    display: none;
    width: 40px;
    height: 40px;
    background-size: cover;	
}
.popup-contact button[type="button"].loading {
	display: block;
}

/* seller tab */
.seller-tab .seller-tab-menu ul {
	display: flex;
	justify-content: flex-start;
	margin-right: 10px;
}
.seller-tab .seller-tab-menu ul li {
	margin-right: 10px;
}

.seller-tab .seller-tab-menu ul li a {
	display: inline-block;
	padding: 10px 10px;
	text-decoration: none;
	background-color: #fff;
	color: #000;
}
.seller-tab .seller-tab-menu ul li.active a {
	background-color: #2271b1;
	color: #fff;
}
.seller-tab .seller-tab-content {
	display: none;
}
.seller-tab .seller-tab-content.active {
	display: block;
}
.loader-wrap {
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
  
.log-list .item-log .item-note .item-color {
	min-height: 0;
}
.log-list .item-log .item-note-text {
	width: 87%;
	padding: 4px 0 8px;
}

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

.btn-loader.loading:after {
	content: '';
	background-image: url('../images/loading.gif');
	background-repeat: no-repeat;
	background-size: 24px;
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .table-auction {
        padding: 10px 12px;
        font-size: 14px;
        display: block;
        width: 100%;
    }
    .table-auction:first-child {
        border-right: none;
    }
    .table-auction:first-child {
        border-bottom: 2px solid #000;
    }
}
