:root {
	--white: #fff;
	--black: #000;
	--primary: #721012;
	--grey: #303030;
	--light-grey: #e7e7e7;
	--yellow : #feee50;
	--green: #74f94d;
	--grey-log: #c3c3c3;
	--aqua: #65dafb;
	--dark-grey: #303030;
 }
* {
	padding: 0px;
	margin: 0px;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}
body {
	font-family: 'museo';
	font-weight: 300;
	color: var(--grey);
	font-size: 1em;
	line-height: 1.7em;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	transition: all ease 0.35s;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'museo', sans-serif;
	color: var(--grey);
	font-weight: 300;
	letter-spacing: 1px;
}
h1 {
	font-size: 50px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 35px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 26px;
}
h6 {
	font-size: 18px;
}
.styled-heading {
	font-size: 100px;
    color: var(--text-red);
    letter-spacing: 3px;
}
.styled-heading-2 {
	color: var(--text-red);
	font-weight: 700;
	text-shadow: 0.1em 0.1em 0em var(--light-grey);
}
.grey-heading {
    font-weight: 700;
    font-size: 52px;
    color: var(--grey);
    text-align: left;
    text-shadow: 0.1em 0.1em 0em var(--light-grey);
    position: relative;
}
.grey-heading:before {
    content: '';
    background-size: initial;
    background-position: top center;
    background-image: url('../images/freelance-writer-12.png');
    margin-bottom: 10px !important;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: block;
    height: 30px;
    width: 80%;
    z-index: -1;
    background-repeat: no-repeat;
}
input, button, textarea {
	outline: none;
}
button, button:focus {
	border-radius: 0;
	outline: none;
}
a {
 transition: ease all .35s;
	color: var(--grey);
}
a:hover {
	text-decoration: none;
	outline: none;
	color:var(--text);
}
a:focus {
	outline: none;
}
ul {
	list-style: none;
	margin-bottom: 0;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="phone"],
input[type="url"],
input[type="password"],
textarea {
    padding: 15px;
    font-size: 14px;
	border-radius: 3px;
	width: 100%;
    margin: 0;
    outline: 0;
	line-height: normal;
	background-color: var(--white);
    border: 1px solid var(--light-grey);
    padding: 2px;
	color: var(--grey);
	padding: 14px 10px;
}

/* keyframes */
@keyframes flipInY{ 
	0%{
		transform:perspective(400px) rotateY(90deg);
		animation-timing-function:ease-in;
		opacity:0
	}
	40%{
		transform:perspective(400px) rotateY(-20deg);
		animation-timing-function:ease-in
	}
	60%{
		transform:perspective(400px) rotateY(10deg);
		opacity:1
	}
	80%{
		transform:perspective(400px) rotateY(-5deg)
	}
	to{
		transform:perspective(400px)
	}
}
@keyframes fadeInDown {
	0% {
	   opacity: 0;
	   transform: translateY(-20px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
 }  
 @keyframes fadeInUp {
	0% {
	   opacity: 0;
	   transform: translateY(0);
	}
	100% {
	   opacity: 1;
	   transform: translateY(-20px);
	}
 }  
 @keyframes fadeOutTop{
	 0%{
		 opacity:1;
		 transform:translatey(0)
		}
	to{
		opacity:0;
		transform:translatey(-60%)
	}
}
@keyframes fadeInTop{
	0% {
		opacity:0;
		transform:translatey(-60%)
	}
	to {
		opacity:1;
		transform:translatey(0)
	}
}
@keyframes fadeInBottom{
	0%{
		opacity:0;
		transform:translatey(60%)
	}
	to {
		opacity:1;
		transform:translatey(0)
	}
}
@keyframes fadeOutBottom{
	0%{
		opacity:1;
		transform:translatey(0)
	}
	to {
		opacity:0;
		transform:translatey(60%)
	}
}
@keyframes Grow{
	0%{
		opacity:0;
		transform:scaleY(.5)
	}
	to{
		opacity:1;
		transform:scale(1)
	}
}

/* container */
.container {
	max-width: 1110px;
}
.container-md {
	max-width: 1207px;
}
.container-narrow {
    max-width: 660px;
}

img {
	margin: 0;
	max-width: 100%;
	height: auto;
}
.btn,
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.button {
	display: inline-block !important;
	text-align: center;
	user-select: none;
	border: 1px solid var(--primary) !important;
	transition:  0.20s;
	color: var(--primary) !important;
	background-color: var(--white) !important;
	outline: none;
	height: auto;
	font-size: 15px !important;
	line-height: 1 !important;
	border-radius: 3px !important;
	position: relative !important;
	padding: 8px 20px !important;
	font-weight: 300 !important;
	cursor: pointer;
}

.button .icon-right-open-mini:before {
	width: 4px;
}
.button .icon-right-open-mini:first-child {
	margin-left: 8px;
}

#placebidbutton.disabled {
	pointer-events: none !important;
}

.color-toggle {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
 
/* Hide the checkbox input */
.color-toggle input {
	display: none;
}
 
/* Describe slider's look and position. */
.toggle-check {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: gray;
	transition: .4s;
	border-radius: 34px;
}
.toggle-check:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked+.toggle-check {
	background-color: var(--black);
}
input:checked+.toggle-check:before {
	background-color: var(--white);
} 
input:checked+.toggle-check:before {
	transform: translateX(26px);
}
/* toggle color theme */
.toggle-theme {
	align-self: center;
}
.toggle-theme label {
	margin-bottom: 0;
}  
.toggle-theme .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 70px;
    height: 35px;
	background-color: black;
	transition: all 1s ease;
	position: relative;
	border-radius: 30px;
	cursor: pointer;
}
.toggle-theme .box .ball {
	width: 35px;
	height: 35px;
	background-color: grey;
	transition: all 1s ease;
	position: absolute;
	border-radius: 50%;
	border: 3px solid black;
}
.toggle-theme .box .scenary {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	transition: all 1s ease;
	padding: 0px 10px 0px 10px;
}
.toggle-theme .box .scenary svg {
	width: 24px;
}
.toggle-theme input[type="checkbox"] {
	display: none;
}
.toggle-theme .box {
	background-color:var(--black);
	color: var(--white);
}
.toggle-theme.toggle-checked .box {
	background-color:var(--white);
}
.toggle-theme .box .ball {
	transform:translatex(0%);
}
.toggle-theme.toggle-checked .box .ball {
	transform:translatex(100%);
}


textarea {
	height: 100px;
}
.wrapper {
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}
/* slick arrows */
.slick-arrow {
	position: absolute;
	background: #fff;
	border: 1px solid #e6e6e6;
	-webkit-box-shadow: 0 2px 1px 0 rgba(0, 0, 0, .1);
	box-shadow: 0 2px 1px 0 rgba(0, 0, 0, .1);
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 10;
	display: inline-block;
	outline: none;
	overflow: hidden;
	text-indent: -999px;
}
.slick-arrow:before {
	content: '';
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAUCAYAAAC58NwRAAAAAXNSR0IArs4c6QAAAF1JREFUKBVjZiAOiAGVcQHxN2KUiwIVXYFiUSYCOkCK9wOxNgF1YGmYyf+BPJANID5OMKoYOWgIxQOyWhQ2ScEI0zmqCRoSGAFBKB5eAzU6AfFVWFASS4OyKMg2BgCmti2M8ORj6gAAAABJRU5ErkJggg==");
	-webkit-background-size: 12px 20px;
	background-size: 12px 20px;
	background-position: 50%;
	background-repeat: no-repeat;
	width: 12px;
	height: 20px;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slick-slide {
	outline: none;
}

/* notice-banner */
.notice-banner {
	background-color: var(--white);
	color: var(--primary);
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
}
/* header */

.header {
	position: fixed;
	width: 100%;
	z-index: 999;
	opacity: 1;
	background-color: var(--white);
	box-shadow: 0 1px 0 rgb(0 0 0 / 10%);
}
.header.header-fix {
	opacity: 0.8;
}
.header .header-top {
	padding: 4px 20px;
	background-color: var(--primary);
}
.header .header-top a {
	color: var(--light-grey);
	font-size: 13px;
	letter-spacing: 2px;
	margin-left: 10px;
	font-family: 'museo';
}
.header .header-top a i {
	margin-right: 4px;
}
.header .header-top ul {
	display: inline-block;
}
.header .header-top ul li {
	display: inline-block;
	margin: 0 10px;
}
.header .header-top ul li a {
	margin-left: 0;
}
.header .header-main .header-logo {
	margin-right: 40px;
}
.header .header-main .header-logo img {
	max-width: 140px;
	width: 100%;
}
.header .header-main nav {
	z-index: 9;
}
.header .header-main li {
	display: inline-block;
	padding-right: 22px;
}
.header .header-main ul li a {
	font-family: 'museo';
	text-transform: uppercase;
	font-size: 14px;
	padding-bottom: 38px;
}
.header .header-main li ul.sub-menu {
	position: absolute;
    padding: 20px 0;
    z-index: 9999;
    width: 240px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	text-align: left;
	top: 100%;
	right: 0;
}
.header .header-main li:hover ul.sub-menu {
	opacity: 1;
	visibility: visible;
	-webkit-animation: flipInY .6s ease-in-out;
    animation: flipInY .6s ease-in-out;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
.header .header-main li li {
	padding: 0 20px 20px 36px;
	margin: 0;
	display: inline-block;
	font-size: 14px;
	width: 100%;
}
.header .header-main li li a {
	padding-bottom: 0;
}
.header .header-main li.menu-item-has-children > a:after {
	content: '\e803';
	font-family: 'badgers-icons';
	margin-left: 10px;
}
.header .header-top .menu-toggle {
	display: block;
	width: 20px;
	transition: 0.35s;
}
.header .header-top .menu-toggle span {
	height: 2px;
	width: 20px;
	display: block;
	background-color: #7f7f7f;
	margin: 4px 0;
}
.header .header-top .menu-toggle:after {
	content: '';
	height: 2px;
	width: 20px;
	display: block;
	background-color: #7f7f7f;
}
.header .header-top .menu-toggle:before {
	content: '';
	height: 2px;
	width: 20px;
	display: block;
	background-color: #7f7f7f;
}
.header .header-main .search-toggle {
	color: var(--grey);
	transition: 0.35s;
	margin-right: 10px;
}
.header .header-main .button-search {
    border: 1px solid #000;
    color: #000;
    line-height: 1;
    border-radius: 3px;
    position: relative;
    font-weight: 300;
    cursor: pointer;
	margin-right: 10px;
    padding: 8px 5px;
    font-size: 12px;
}
.header .header-main .social-links li {
	padding-right: 0;
}
.header .header-main .social-links li a {
	padding-bottom: 0;
}
.header .header-main .social-links ul {
	line-height: 1;
}
#menu-mobile-menu {
	display: none;
}
.header .header-main ul li.desktop-hamberger {
	padding: 32px 10px;
}
.header .header-main ul li.desktop-hamberger > a {
	text-indent: -999px;
	overflow: hidden;
	background-image: url('../images/hamburger.png');
	background-position: center;
	background-size: 30px;
	background-repeat: no-repeat;
	padding-bottom: 0;
	width: 40px;
    height: 40px;
    display: inline-block;
}
.header .header-main ul li.desktop-hamberger > a:after {
	display: none;
}
.header .header-main .select2-container {
	min-width: 240px;
}
.header .header-bottom {
	margin-bottom: 1rem;
}
.header .header-bottom .select2-container {
	width: 100% !important; 
}
.header .header-bottom .select2-hidden-accessible {
	width: 100% !important;
}

/* popup-search */ 
.popup-search {
	display: none;
	position: absolute;
	top: 0!important;
	left: 0!important;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	background-color: rgba(51,47,47,.9);
	opacity: 0;
	line-height: 1;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	transition: background-color .5s linear;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	will-change: opacity;
	z-index: 1000;
}
.popup-search.active { 
	position: fixed;
	transform-style: "";
	perspective: 2000px;
	transform-origin: center center;	
	display: block;
	opacity: 1;
	z-index: 999999;
}
.popup-search .search-form-inner {
	border-radius: 5px;
    border: 1px solid var(--light-grey);
	max-width: 572px;
	width: 100%;
    margin: 0 0 0 -286px;
	padding: 70px 48px 50px;	
    position: fixed;
    z-index: 1001;
    top: 50%;
    left: 50%;
    text-align: left;
    background: #fff;
    border: none;
    box-shadow: none;
    transform-origin: 50% 25%;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    will-change: top,left,margin,transform,opacity;
}
.popup-search .close-form {
	position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
}
.header .header-main .search-form .search-form-inner {
	position: relative;
    opacity: 0;
    height: 1px;
	z-index: 1;
	position: relative;
	opacity: 0;

	-webkit-animation: fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeOutTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}
.header .header-main .search-form.active .search-form-inner {
	/* animation: none !important;
    -o-animation: none !important;
    -webkit-animation: none !important;
	-moz-animation: none !important; */
	opacity: 1;
	-webkit-animation: fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
	position: relative;
	background-color: #fff;
    z-index: 9;
}
.header .header-main .search-form .search-form-inner form {
	top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1000;
	width: 100%;
	max-width: 60%;
}
.header .header-main .search-form input {
	height: 100%;
	width: 100%;
	max-width: 630px;
	border: none;
	text-transform: uppercase;
	font-size: 16px;
}
.header .header-main .search-form .close-form {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--grey);
	z-index: 9999;
}
.header .header-main .button {
	margin-right: 10px;
	border-color: #000 !important;
    color: #000 !important;
}
.header .pay-note {
	text-align: center;
}
.header .pay-note img {
	width: 80px;
    height: 46px;
}
.header .pay-note p {
	margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
	line-height: 1.4;
	margin-bottom: 4px;
}
/* .header .header-main .search-form.active {
	z-index: 999;
    -webkit-animation: fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
	animation: fadeInTop 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
	opacity: 1;
} */
.header-sticky-height {
	height: 110px;
}
.header-toggle {
	display: none;
	position: relative;
} 
.header-toggle:before, .header-toggle:after {
    content: '';
    width: 30px;
    background-color: var(--grey);
    height: 2px;
    display: block;
    transition: 0.35s;
}
.header-toggle:before, .header-toggle:after {
    content: '';
    width: 22px;
    background-color: var(--grey);
    height: 2px;
    display: block;
    transition: 0.35s;
}
.header-toggle span {
    background-color: var(--grey);
    margin: 6px 0;
    display: block;
    height: 2px;
    width: 22px;
}

/* banner-hero */
 .banner {
	background-image: url('../images/banner-image1.jpeg');
	background-color: #303030;
    background-position: 50%;
    background-repeat: no-repeat;
	background-size: cover;
	min-height: 450px;
 } 

 /* search-auction */
 .search-auction {
	padding: 40px 0;
	margin-bottom: 50px;
	background-color: #fafafa;
 }
 .search-auction .search-box {
	max-width: 700px;
    margin: 0 auto;
	width: 100%;
 }
 /* search-box */
 .search-box input[type="text"] {
	padding: 11px 0 5px;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--grey);
    width: 100%;
    font-size: 18px;
    color: var(--grey);
	background: transparent;
	font-weight: 100;
 }
 .search-box form {
	 position: relative;
 }
 .search-box button {
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    font-size: 26px;
	color: var(--grey);
    z-index: 9;
    cursor: pointer;
 }

 /* .woocommerce .products {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
	justify-content: flex-start;
	width: 100%;
 } */
 .woocommerce ul.products::before {
	display: none;
 }
 /* .woocommerce .products li  {
    width: calc(33.33% - 20px) !important;
    margin-bottom: 20px;
	float: none !important; 
	margin: 0 !important;
 } */

 .woocommerce .products li .woo-ua-current,
 .ic-timer,
 .ic-bid {
	position: relative;
 }
 .woocommerce .products li .woo-ua-current:before,
 .ic-bid:before,
 .ic-timer:before {
	content: '';
	display: inline-block;
	background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    vertical-align: middle;
    margin-right: 6px;
 }
 .ic-timer:before {
	background-image: url('../images/timer.png');
 }
 .ic-bid:before {
	background-image: url('../images/auction.png');
 }
 .woocommerce .products li .woo-ua-current:before {
	background-image: url('../images/auction.png');
 }
 .woocommerce div.product div.summary span.uwa_imgtext,
 .woocommerce .products li span.uwa_imgtext {
	width: 100%;
 }
 .woocommerce div.product div.summary .uwa_winning,
 .woocommerce div.product div.summary .uwa_losing {
	position: relative;
 }	
 .woocommerce .products li  {
	padding: 0 !important;
 }
 .product-stream {
	position: relative;
    margin: 0 -30px;
 }
 .product-stream ul.products li {
	margin: 0!important;
    float: none !important;
    width: 33.33% !important;
    padding: 20px !important;
    border: none !important;
 }
 .product-stream ul.products li .product-inner {
	border: 1px solid var(--light-grey);
    border-radius: 4px;
    position: relative;
 }
 
 .woocommerce .products li .product-image {
	position: relative;
    margin: 0;
 }
 .woocommerce .products li .product-image img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin-bottom: 5px !important;
 }
 .woocommerce .products li .product-has-gallery {
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url('../images/gallery.png');
	background-size: cover;
	background-repeat: no-repeat;
	display: block;
	width: 30px;
	height: 30px;
 }
 .auction-labels {
	display: flex;
	justify-content: space-between;
	align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
    width: 100%;
 }
 .auction-labels .product-has-desc {
	background-color: var(--white);
	font-size: 12px;
    padding: 2px 10px;
    font-weight: 700;
}
 /* .woocommerce .products li .watchlist-wrap {
	position: absolute;
    top: 10px;
    right: 10px;
	z-index: 1;
 } */
 /* .woocommerce .products li .watchlist-wrap > p {
	background-color: rgb(255, 255, 255, 0.7);
    padding: 7px;
    line-height: 1;
 }  */
.woocommerce .products li .watchlist-wrap .js-watchlist-ajax {
	position: relative;
}
.woocommerce .products li .watchlist-wrap .js-watchlist-ajax.js-watchlist-ajax--active:after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('../images/loading.gif');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
    right: 50%;
    top: -14px;
}
 .woocommerce .products li .watching-product {
	position: absolute;
    top: 0;
    right: 0;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
	margin: 0;
    background: yellow;
    color: #000;
 }
 .woocommerce .products li .watching-product a {
	padding: 5px 10px;
	display: block;
	text-decoration: underline !important;
	color: #000;
 }
 .woocommerce .products li a.watch-custom {
	text-decoration: none;
    font-size: 14px;
	position: relative;
 }
 .woocommerce .products li a.watch-custom:before {
	margin-right: 0.5em;
 }
 .woocommerce .products li .uwa-watchlist-button {
	position: relative;
 }
 .woocommerce .products li a.watch-custom:before,
 .woocommerce .products li .loop-watchlist-action  a.add-uwa:before,
 .woocommerce .products li .uwa-watchlist-button a.add-uwa:before {
	content: '\e809';
	font-family: "badgers-icons" !important;
	font-size: 22px;
 } 
 .woocommerce .products li a.watch-custom:before,
 .woocommerce .products li .loop-watchlist-action  a.add-uwa:before,
 .woocommerce .products li .uwa-watchlist-button a.add-uwa:before {
	content: '\e809';
	position: absolute;
	left: -24px;
    top: 50%;
    transform: translateY(-50%);
 } 
 .woocommerce .products li .loop-watchlist-action a.remove-uwa:before {
	content: '\e808';
 }
 .woocommerce .products li .uwa-watchlist-action {
	color: var(--black);
 }
 .woocommerce .products li .product-box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 0 10px;
 }
 .woocommerce .products li .product-box .winner-name span {
	font-size: 14px !important;
 }
 .woocommerce .products li > .winner-name {
	display: none;
 }
 .woocommerce .products li .uwa-watchlist-button {
	 width: 100%;
	 align-items: baseline;
 }
 .woocommerce .products li .product-box .view_watchlist {
    text-decoration: underline;
	font-size: 14px;
	margin-left: 4px;
    text-decoration: underline;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 5px;
 }
 .woocommerce .products li > p {
	margin-bottom: 10px;
 }
 
 /* .woocommerce .products li .uwa-watchlist-button a {
	display: inline-block;
	padding: 4px; 
	background-color: var(--white);
	color: var(--black);
 } */
 /* auction-list */
 .live-auction {
	 position: relative;
 }
 .auction-list {
	padding: 50px 20px 30px;
 }
 .auction-list .product-btn {
	width: auto;
 }
 .auction-list h2 { 
	margin-bottom: 30px;
 }
 .auction-load-more {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
 }
 .auction-load-more.loading:before {
	content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../images/icegif-1262.gif');
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 40px;
    height: 40px;
    background-size: cover;
}

.star-items-box {
	border: 4px solid var(--primary);
	padding-top: 15px;
    margin-bottom: 30px;
	background-color: antiquewhite;
	padding-left: 10px;
    padding-right: 10px;
}
.star-items-box h2 {
	padding-left: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.star-items-box .products li { 
	margin-bottom: 10px !important;
}
.woocommerce .products li {
	padding: 0 !important;
    border: 1px solid var(--light-grey);
	border-radius: 4px;
}

.woocommerce-loop-product__title {
	line-height: 1.5;
	margin-bottom: 14px !important;
}
.product_title span,
.woocommerce-loop-product__title span {
	background-color: var(--white);
    padding: 2px 6px;
    font-weight: 700;
    color: #000;
    border: 2px solid #000;
}

.woocommerce .products .woo-ua-auction-price span.auction {
	display: block;
    text-align: center;
    font-weight: 300;
    font-size: 12px !important;
    text-transform: uppercase;
}
.woocommerce .products .woo-ua-auction-price span.woocommerce-Price-amount {
	display: block;
	text-align: center;
	font-weight: 300;
}
.woocommerce .products li .product-info {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin: 0 -10px; */
	border-top: 1px solid var(--light-grey);
}
.woocommerce .products li .product-info .product-timer,
.woocommerce .products li .product-info .product-status {
	flex: 1 0 50%;
	width: 50%;
}
.woocommerce .products li .product-info .product-timer .item-processing {
	text-align: center;
}
.woocommerce .products li .product-info .product-status {
    flex: 1 0 30% !important;
    width: 30% !important;
    justify-content: center;
    text-align: center;
    display: flex;
	padding: 12px 0;
    /* border-right: 1px solid var(--light-grey); */
}
.woocommerce .products li .product-info .product-share {
	flex: 1 0 20% !important;
    width: 20% !important;
	display: flex;
	justify-content: center;
}
.woocommerce .products li .product-info .product-timer {
	border-right: 1px solid var(--light-grey);
	padding: 10px;
}
.woocommerce .products li .product-info .product-timer.p-expired {
	background-color: var(--white);
}
.woocommerce ul.products li.product .price {
	margin-bottom: .5em !important;
    font-size: .857em !important;
}
.woocommerce .products li .product-info .expired-auction small,
.woocommerce .products li .product-info .expired-auction span {
	display: block;
	text-align: center;
}
.woocommerce .products li .product-info .expired-auction span.sold-item {
	font-weight: 800;
    color: #04c704;
    font-size: 19px;
}
.woocommerce .products li .product-info .product-timer .remaining {
	text-transform: uppercase;
	font-size: 12px;
    text-align: center;
    width: 100%;
    display: block;
}
.woocommerce .products li .product-info .product-status {
	text-align: center;
}
.woocommerce .products li .product-info .product-status span.woocommerce-Price-amount {
	font-size: 20px;
	font-weight: 700;
}
.woocommerce .products li .product-info .product-status .price .auction.span {
	display: block;
	text-transform: uppercase;
}
.woocommerce .products li .product-info .product-timer .uwa_auction_product_countdown {
	background-color: transparent !important;
	color: var(--grey);
	margin: 0 !important;
	line-height: 0.8;
	box-shadow: none !important;
	overflow: visible;
	box-shadow: none;
}
div#uwa_auction_countdown {
	width: 100%;
}
.uwa_auction_product_countdown{
	overflow: hidden;
    padding: 0.5em 0;
    color: #3c763d !important;
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
    margin: 10px 0 20px 0;
    max-width: 100%;
	width: 100%;
	box-shadow: none !important
}
.bidauc_enddate .uwa_auction_product_countdown {
	background-color: transparent !important;
	margin-bottom: 0;
}
.bidauc_enddate .uwa_auction_product_countdown {
	font-size: 10px !important;
}
.bidauc_enddate .hasCountdown {
	margin: 0 !important;
}
.bidauc_enddate .countdown_row {
	width: auto;
	justify-content: flex-start;
}
.bidauc_enddate .uwa_auction_time {
	width: auto !important;
}  
.bidauc_enddate .uwa_auction_product_countdown_2 .countdown_section {
	width: 44px !important;
}
.countdown_section {
    width: 32.5%;
}
.countdown_section {
    display: block;
    float: left;
    text-align: center;
}
.countdown_amount {
    font-size: 18px;
}
.woocommerce .products li .product-info .product-timer .uwa_auction_product_countdown {
	background-color: transparent !important;
}
.woocommerce .products li .product-info .product-timer .uwa_auction_product_countdown .countdown_amount {
	font-size: 13px !important;
    color: var(--grey) !important;
}
.woocommerce .products li .uwa_auction_reserve {
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1;
}
.woocommerce .products li .uwa_auction_reserve_met {
	color: #5bbd72;
}
.woocommerce .products li .uwa_auction_reserve_not_met {
	color: var(--grey);
}

.woocommerce .products li .uwa_auction_reserve_met .ending-date {
	color: #686868;
}
.woocommerce .products li .ending-date {
	color: #686868;
}
/* @keyframes fadeOut10s {
	0% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
} */
  
.product-stream {
	position: relative;
}   
.product.fade-start {
	/* animation: fadeOut10s 10s forwards; */
}
.product .item-closing  {
	font-size: 16px;
	text-align: center;
	color: red;
}
/* .woocommerce .products li .uwa_imgtext {
	display: none;
} */
form#uwa_auction_form {
	justify-content: flex-start !important;
}
.single-product.woocommerce div.product #auction-product-type form.cart div.quantity {
	margin-right: 10px !important;	
}
.woocommerce div.product form.cart .button {
	height: 40px !important;
	max-width: 150px;
	margin-left: 10px;
}
.product-share button {
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}
.product-share button:before {
	content: '';
	background-image: url('../images/share.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	width: 20px;
	height: 20px;
}

.countdown-box {
	padding: 0.5em 5px;
    margin: 10px 0;
	color: #3c763d !important;
    background-color: #dff0d8 !important;
    border-color: #d6e9c6 !important;
    margin: 0;
    max-width: 100%;
    width: 100%;
    box-shadow: none !important;
	display: grid;
	grid-template-columns: auto auto auto auto;
}
.countdown-box.item-ending {
	grid-template-columns:inherit;
}
.countdown-box .countdown_item {
    text-align: center;
	color: #3c763d;
}
.countdown-box.countdown-loop {
	background-color: transparent !important;
	font-size: 12px;
	line-height: 1;
}
.countdown-box.countdown-loop .countdown_item {
	color: var(--grey) !important;
}
.custom-text-over-image {
    position: absolute;
	top: 0;
    left: 0;
    color: #fff;
    padding: 6px 6px;
    font-size: 14px;
    z-index: 10;
    border-radius: 4px;
}
.custom-text-over-image .views-box {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.custom-text-over-image .views-box div {
	background-color: rgba(255, 0, 0, 0.7);
	padding: 0.1rem 0.4rem;
    margin-bottom: 0.1rem;
    display: none;
    width: max-content;
    font-size: 12px;
}
.custom-text-over-image .views-box .uwa_imgtext {
	position: relative !important;
}
.custom-text-over-image .views-box span.uwa_losing,
.custom-text-over-image .views-box span.uwa_winning {
	position: relative !important;
}

.woocommerce ul.products li .custom-text-over-image .views-box div {
	padding: 0 0.5rem;
    font-size: 12px;
    font-weight: 700;
}

/* Ensure the image container is positioned relative */
.woocommerce div.product div.images {
    position: relative;
}

 /* notice */
 .notice {
	margin-bottom: 100px;
	margin-top: 40px;
 }
 .notice .notice-inner {
	border-radius: 5px;
    border: 1px solid var(--primary);
    padding: 10px;
	background: #fafafa;
	max-width: 700px;
	margin: 0 auto;
 }
 .notice .notice-inner p {
	 color: var(--primary);
	 margin-bottom: 0;
 }
/* main banner */
.main-banner {
	border-color: #721012;
	border-right-width: 6vw;
	position: relative;
}
.main-banner .next-auction {
	background-size: initial;
    background-position: center left;
    background-repeat: repeat;
    background-image: linear-gradient(274deg,rgba(250,250,250,0) 0%,#fafafa 45%),url('../images/cream_pattern.jpeg');
    box-shadow: -6vw 0px 0px 0px #a31d2f;
    z-index: 1!important;
	position: relative;
	padding: 8px 30px;
}
.main-banner .next-auction .social-links {
	height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.main-banner .next-auction .social-links ul {
	padding: 0;
}
.main-banner .next-auction .social-links li {
	margin: 0 4px;
}
.main-banner .next-auction .social-links li a {
	font-size: 20px;
}
.main-banner .bg-image {
	width: 96%;
	padding: 0;
	border-right: 6vw solid #721012;
	align-items: flex-start;
}
.main-banner .wp-block-columns {
	margin-bottom: 0;
}
.main-banner .bg-image h3 {
	font-size: 28px;
	margin-bottom: 0;
}
.main-banner .bg-image .wp-block-cover__inner-container {
	margin: 0 0 0 10vw;
}
.main-banner .bg-image .wp-block-button a {
	background-color: var(--white) !important;
	color: var(--text-red) !important;
	border: none !important;
	box-shadow: 0px 6px 11px -4px rgb(0 0 0 / 30%) !important;
	padding: 6px 24px !important;
}
.main-banner .banner-address {
	background-color: var(--text-red);
	position: absolute;
	right: 0;
	bottom: 20px;
	z-index: 9;
	color: var(--white);
	width: 100%;
	max-width: 370px;
	padding: 20px 20px 30px 40px;
}
.main-banner .banner-address img {
	max-width: 200px;
	margin-top: -48px;
}
.main-banner .banner-address p {
	line-height: 1.4;
}
.main-banner .banner-address .button.button-red {
	border-color: var(--white) !important;
	padding: 10px 14px;
}

/* intro-text */
.intro-text {
	line-height: 1.9;
}
/* auction-block */
.auction-block h2 {
	font-size: 62px;
	text-shadow: 0.04em 0.04em 0.04em rgb(35 35 35 / 84%);
}
.auction-block .wp-block-column:not(:first-child) {
	margin-left: 6px;
}
.auction-block p {
	font-family: 'museo';
}
.auction-block .auction-item > div {
	overflow: hidden;
}
.auction-block .auction-item img {
	transition: 0.35s;	
}
.auction-block .auction-item:hover img {
	transform: scale(1.2);
	transition: 0.35s;
}
/* text-with-bg */
.text-with-bg {
	padding: 60px 0 !important;
}

/* inner-page */
.inner-page  {
	padding: 40px 0;
}
.page-content {
	font-family: 'museo';
	font-weight: 400;
	font-size: 15px;
	color: var(--grey);
}
.page-content ul:not(.woocommerce ul) {
	list-style: disc;
	padding: 0 0 22px 16px;
}
.page-content ol {
	list-style: decimal;
	padding: 0 0 22px 16px;
}
.page-content a {
	color: var(--text-red);
}
.page-content .blocks-gallery-grid {
	padding: 0;
}
/* woo-content */
.woo-content {
	padding: 40px 0;
}
.woo-content .back-to-list {
	display: block;
	margin-bottom: 12px;
}
.woo-content .product-btn {
	float: right;
    margin-left: 12px;
}

/* light-text */
.light-text {
	font-family: 'museo';
	line-height: 1.7;
}
.gallery-block {
	background-color: #f7f7f7;
    padding: 80px 0!important;
}
/* large-text */
.large-text {
	font-family: 'chewyregular';
    font-size: 28vw;
    letter-spacing: -6px;
	line-height: 0.5em;
	color: rgba(0,0,0,0.04);
}
/* online-selling */
.online-selling {
    width: 66%;
    border-right: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    margin: 0 auto;
}
.online-selling p {
    font-family: 'museo';
    font-size: 16px;
}
.online-selling h3 {
    font-weight: 700;
    text-shadow: 0.1em 0.1em 0em var(--light-grey);
    margin-bottom: 30px;
    position: relative;
}
.online-selling h3:before {
    content: '';
    background-size: initial;
    background-position: top center;
    background-image: url('../images/freelance-writer-12.png');
    margin-bottom: 10px !important;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: block;
    height: 30px;
    width: 80%;
    z-index: -1;
    background-repeat: no-repeat;
}

/* guide-wrap */
.guide-wrap {
    position: relative;
}
.guide-wrap .multiple-border {
    margin-top: -58px;
    position: relative;
    z-index: -1;
}
.guide-wrap p {
    max-width: 510px;
    font-size: 16px;
    font-family: 'museo';
}
.guide-wrap .styled-heading {
    text-shadow: 0.05em 0.07em 0em var(--grey);
}
.guide-wrap .guide-text-large {
    font-size: 32vw;
    letter-spacing: -43px;
    line-height: 0.5em;
    padding-top: 65px;
    margin-right: -12vw;
    position: absolute;
    top: 0px;
    bottom: auto;
    right: 0px;
    left: auto;
    width: 100%;
    text-align: right;
    z-index: -1;
}
.guide-wrap .guide-text-large p {
    font-size: 32vw;
    font-weight: 400;
    max-width: 100%;
}
.guide-wrap .guide-text-large.text-small {
    margin-right: -9vw;
}
.guide-wrap .guide-text-large.text-small p {
    font-size: 20vw;
    font-weight: 500;
    letter-spacing: -35px;
}

/* step */
.step {
    font-family: 'museo';
    letter-spacing: 2px;
    font-size: 18px;
}
/* double-border */
.double-border {
    background-size: initial;
    background-position: top right;
    background-image: url('../images/border-bottom.png');
    margin-bottom: 10px!important;
	line-height: 2em;
	background-repeat: no-repeat;
}
/* contact_page */
.contact-page .direction {
    margin-top: -60px;
    text-align: center;
    width: 100%;
}
.contact-page  .contact-info {
	margin: 50px 0;
}
.contact-page .contact-logo  {
	margin-bottom: 20px;
}
.contact-page .contact-logo img {
	max-width: 200px;
}
.contact-page .email {
	color: var(--text-red);
	font-size: 21px;
	font-family: 'museo';
	display: inline-block;
	margin-bottom: 20px;
}
.contact-page .phone {
	color: var(--text-red);
	font-size: 28px;
	font-family: 'museo';
}
.contact-page address {
	font-family: 'museo';
	font-size: 18px;
}
.contact-detail iframe {
	width: 100%;
}
.contact-item {
	max-width: 280px;
	width: 100%;
	list-style: none !important;
	padding-left: 0 !important;
}
.contact-item li {
	position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}
.contact-item li:before {
	position: absolute;
    left: 0;
    top: 14px;
    transform: translateY(-50%);
    font-size: 20px;
    font-family: "badgers-icons";
}
.contact-item .contact-address:before {
	content: '\1f50d';
}
.contact-item .contact-phone:before {
	content: '\e800';
}
.contact-item .contact-email:before {
	content: '\e801';
}
.wpcf7-submit.button {
	font-size: 16px !important;
    width: 100%;
    padding: 16px 20px !important;
}
/* social-links */
.social-links ul {
	padding-left: 0 !important;
}
.social-links ul li  {
	display: inline-block;
	margin: 0 4px;
}
.social-links ul li a {
	display: block;
	color: var(--white);
	font-size: 20px;
	line-height: 1;
}
.social-links .b-icon:before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.social-links .b-instagram:before {
	background-image: url('../images/instagram-icon.png');
}
.social-links .b-twitter:before {
	background-image: url('../images/twitter-icon.png');
}
.social-links .b-facebook:before {
	background-image: url('../images/facebook-icon.png');
}
.social-links ul li .icon-facebook {
	color: #3b5998;
}
.social-links ul li .icon-twitter {
	color: #55acee;
}
.social-links ul li .icon-instagram {
	color: var(--primary)
}
/* guide-block */
.guide-block {
	padding: 70px 0 20px!important;
	margin-bottom: 0 !important;
}
.guide-block .wp-block-columns h2 {
	margin-bottom: 30px;
}

/* overlay-text */
.overlay-text {
	background-color: var(--white);
	width: 57.8%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 75px 40px 75px;
}
.overlay-text .overlay-text-inner {
	text-align: center;
}
.overlay-text .overlay-text-inner h3 {
	color: var(--grey) !important;
	line-height: 1.6;
	font-size: 30px;
	margin-bottom: 40px;
}
.overlay-text .overlay-text-inner p {
	color: var(--text-red) !important;
	letter-spacing: 2px;
	font-family: 'museo';
}
.overlay-text .overlay-text-inner .button {
	border-radius: 0 !important;
}
/* row-block */
.row-block .wp-block-column {
	border-right: 1px solid var(--light-grey);
	padding: 0 30px;
}
.row-block .wp-block-column {
	text-align: justify;
}
.row-block .wp-block-column p {
	font-size: 14px;
}

/* text border */
.text-border {
	background-size: initial;
    background-position: bottom center;
    background-image: url('../images/border-bottom.png');
    margin-top: 10px !important;
    margin-bottom: 10px!important;
}
/* grey-block */
.grey-block {
	padding: 70px 0 0!important;
	width: 90%;
	padding-left: 10vw;
	position: relative;
}
.grey-block:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX( -50%);
	height: 100%;
	width: 100vw;
	background: #4e4e4e;
	z-index: -1;
}
.grey-block.light-grey-block:before {
    background: #fafafa;
}
.grey-block .wp-block-column {
	border-right: 1px solid var(--white);
	padding: 90px 30px;
	margin-left: 0 !important;
	transition: box-shadow 300ms ease 0ms,color 300ms ease 0ms,background-color 300ms ease 0ms,background-image 300ms ease 0ms;
}
.grey-block .wp-block-column:last-child {
	border-right: none;
}
.grey-block .wp-block-column:hover {
	background-color: var(--text-red);
	box-shadow: 0px 20px 0px 0px var(--primary);
}
.grey-block p {
    font-family: 'museo';
}

/* bidding-wrap */ 
.bidding-wrap p {
    font-family: 'museo';
    font-size: 16px;
}
.bidding-wrap .wp-block-column {
    padding: 0 20px;
}
.bidding-wrap .wp-block-column:nth-child(2) {
    border-left: 1px solid var(--light-grey);
}

/* woocommerce */
.woocommerce label {
	color: var(--text-red);
	font-family: 'museo';
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	max-width: 100%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	max-width: 100%;
}
.woocommerce form .form-row label {
	color: var(--grey);
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
	width: 100%;
}
.woocommerce #customer_login .form-row {
	flex-direction: row-reverse;
    justify-content: flex-end;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: 'museo';
	color: var(--grey);
    letter-spacing: -0.2px;
    line-height: 1.5em;
    margin-bottom: 6px !important;
	padding: 10px 10px;
}
.woocommerce ul.products li.product .uwa-watchlist-button {
	margin: 0 0 2px 0;
	justify-content: flex-end;
	height: unset;
	align-items: flex-start;
}

.woocommerce div.product .product_title {
    font-family: 'museo';
    font-size: 24px;
    color: var(--grey);
    letter-spacing: -0.2px;
    line-height: 1.5em;
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--primary) !important;
    font-family: 'museo';
}
.woocommerce .products .woo-ua-auction-price span {
    color: var(--grey);
    font-size: 26px;
}
.woocommerce .summary {
    font-family: 'museo';
}
.woocommerce .summary p {
    font-weight: 400;
    color: var(--grey);
	font-size: 15px;
	margin-bottom: 20px;
}
.woocommerce .summary p.uwa_auction_product_timezone,
.woocommerce .summary p.uwa_proxy_text,
.woocommerce .summary p.uwa_auction_condition {
	display: none;
}
.woocommerce .summary p.price {	
	margin-bottom: 0;
}
.woocommerce .summary p.total-bids {
	margin-bottom: 0;
	font-size: 18px;
}
.woocommerce .summary p.total-bids {
	text-decoration: underline;
}
.woocommerce .summary p.uwa_detailtext,
.woocommerce .summary .winner-name {
	font-size: 22px;
}
.woocommerce .summary a {
    color: var(--text-red);
}
.woocommerce .summary a.uwa-watchlist-action {
	text-decoration: underline;
}
.woocommerce .summary a.view_watchlist {
	margin-left: 6px;
    text-decoration: underline;
    font-weight: 700;
}
.woocommerce form .form-row select.select-emoji {
	padding: 12px 0;
}
.woocommerce .products li .product-box .total-user-bids {
	font-size: 14px;
	text-align: right;
	text-decoration: underline;
	line-height: 1;
	color: #000;
    font-weight: 500;
}
.products li .woo-ua-auction-price span {
    font-size: 16px !important;
    color: var(--grey) !important;
}
.single-product .summary .uwa_auction_form .quantity.buttons_added {
	width: auto !important;
}
.woocommerce div.product form.cart div.quantity {
	margin: 0 12px 0 0 !important;
}
.products .uwa-watchlist-action {
	color: var(--white);
}
.products .uwa-watchlist-action:before {
    font-family: "dashicons";
    content: "\f177";
    margin-right: 0.5em;
}
.woocommerce ul.products li.product a.watch-custom,
.woocommerce ul.products li.product a.uwa-watchlist-action,
.woocommerce ul.products li.product a.loop-watchlist-action {
	text-decoration: underline;
    font-size: 14px;
	display: flex;		
	align-items: flex-start;
	line-height: 1;
	margin-bottom: 5px;
	position: relative;
}
.woocommerce .related {
	clear: both;
}
/* .woocommerce div.product .woocommerce-tabs ul.tabs li {
	background-color: var(--text-red) !important;
	border-radius: 0;
} */
/* .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--grey) !important;
} */
/* .woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0 !important;
} */
.woocommerce .shop_table .button {
	font-size: 11px!important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .button {
	display: none !important;
}
.woocommerce .shop_table .button:hover {
	padding-right: 0;
}
.woocommerce .shop_table tr.bid-winner {
	background-color: #9de3a0;
	color: #fff;
}
.woocommerce .shop_table tr.bid-looser {
	background-color: #d18080;
	color: #fff;
} 
.woocommerce .shop_table tr.bid-winner a,
.woocommerce .shop_table tr.bid-looser a {
	color: #fff;
} 
.woocommerce .shop_table .watchauc_list.item-expired {
	background-color: #ff0000;
	opacity: 60%;
}
.woocommerce form .form-row {
	display: block;
}
span.uwa_winning {
	position: absolute !important;
}
.col-1.woocommerce-Address {
	max-width: 100%;
}
/* .woocommerce .select2-container .select2-selection--single {
	height: 50px;
	padding: 8px 0;
} */

.woocommerce .select2-container .select2-selection--single{
    height: 50px !important;
}

.cat-filter .select2-container .select2-selection--single {
	height: 36px !important;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 50px !important;
}
.cat-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px !important;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 50px !important;
}
.cat-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 36px !important;
	padding:  0 8px 0 20px;
}
.cat-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
	right: 8px;
}
.woocommerce .uwa-user-bid-counts li.active,
.woocommerce .uwa-user-bid-counts li.active a {
	color: var(--black);
}
.woocommerce table.shop_table.shop_table_responsive td {
	font-size: 12px !important;
}

.woocommerce table.shop_table.shop_table_responsive td.bidauc_curbid,
.woocommerce table.shop_table.shop_table_responsive td.bidauc_status {
	font-weight: 700;
}
.woocommerce table.shop_table.shop_table_responsive td.bidauc_status a {
	text-decoration: underline;
}
.woocommerce table.shop_table.shop_table_responsive td a,
.woocommerce table.shop_table.shop_table_responsive td {
	color: var(--black);
}
.woocommerce table.shop_table.shop_table_responsive td.bidauc_curbid .winning_bid,
.woocommerce table.shop_table.shop_table_responsive td.bidauc_curbid .woo-ua-auction-price > span:nth-child(1) {
	display: none;
} 
.woocommerce table.shop_table.shop_table_responsive td.bidauc_img {
	padding: 0;
    width: 80px;
}
.woocommerce table.shop_table.shop_table_responsive td.bidauc_img img {
	width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 20% !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: disc;
	padding-left: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content {
	width: 80% !important;
}
.woocommerce table.shop_table.shop_table_responsive td .btn {
	font-size: 12px !important;
}
.woocommerce table.shop_table.shop_table_responsive .pay-all td {
	padding: 0 !important;
}
.woocommerce table.shop_table.shop_table_responsive .pay-all td .btn { 
	width: 100%;
	font-size: 20px !important;
	color: var(--black) !important;
	border-color: var(--black) !important;
}
.woocommerce table.shop_table.tbl_watchauc_list {
	border-collapse: collapse !important;
}
.woocommerce table.shop_table.tbl_watchauc_list td {
	border-top: 1px solid #fff !important;
}

.woocommerce-page form .form-row textarea {
	padding: 6px;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	padding: 0;
}
.single-product .summary .uwa_auction_form .quantity.buttons_added input {
	padding: 12px 7.6px !important;
}

.woocommerce-form-register #billing_country {
	height: 50px;
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    padding: 8px;
}

.woocommerce-account .woocommerce-MyAccount-content .table-log {
	text-align: left;
    width: 100%;
 }
.woocommerce-account .woocommerce-MyAccount-content .table-log td {
	border-top: none;
}
.woocommerce-account .woocommerce-MyAccount-content .table-log td .woo-ua-current,
.woocommerce-account .woocommerce-MyAccount-content .table-log td .winning_bid {
	display: none;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-unsold {
	background-color: #000;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-sold {
	background-color: #74f94d;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-hidden {
	background-color: #feee50;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-live {
	background-color: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-updated {
	background-color: #c3c3c3;
}
.woocommerce-account .woocommerce-MyAccount-content table .item-payout-cancelled,
.woocommerce-account .woocommerce-MyAccount-content table .item-payout {
	background-color: #65dafb;
}
.woocommerce-account .woocommerce-MyAccount-content .seller-log {
	background-color: #ccc;
	padding: 20px;
	margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .table-log th small {
	font-size: 12px;
	display: block;
}
.woocommerce-account .woocommerce-MyAccount-content .table-log  td img {
	width: 60px !important;
}
.woocommerce-account .account-info .seller-title {
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 10px;
}
.woocommerce-account .account-info .lifetime-total .seller-title {
	font-size: 16px;
}

.woocommerce-account .account-info  .seller-content {
	margin-bottom: 20px;
}
.woocommerce-account .account-info {
	margin-bottom: 40px;
}
.woocommerce-account .account-info .seller-info p {
	font-size: 12px;
    margin-bottom: 0;
    line-height: 1.4;
}
.woocommerce-account .account-info .seller-info .seller-fees {
	font-weight: 700;
	font-size: 18px;
}
.woocommerce-account .account-info .seller-info .seller-account span:nth-child(2),
.woocommerce-account .account-info .seller-info .seller-fees span:nth-child(2) {
	min-width: 125px;
    text-align: right;
}
.woocommerce-account .activity-log h5 {
	font-weight: 700;
	font-size: 16px;
}
/* Tooltip container */
.woocommerce-account .status-tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.woocommerce-account .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;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td:first-child {
	border-right: 2px solid #000;
} 
/* Show the tooltip text when you mouse over the tooltip container */
.woocommerce-account .status-tooltip:hover .tooltiptext {
	visibility: visible;
}
.woocommerce-account .log-list .table-log td:not(.table-auction td) {
	padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td {
	padding: 10px 12px;
	font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td .subitem-wrap {
	display: flex;
	justify-content: space-between;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td .subitem-wrap .subitem {
	width: 33%;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td .subitem-wrap .subitem > span {
	font-size: 10px;
	display: block;
	line-height: 1;
}
.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td .subitem-wrap .subitem strong {
	font-size: 12px;
	display: block;
}

.date-wrap {
	display: flex;
	justify-content: space-between;
}
.date-wrap .date-field { 	
	width: 48%;	
}
.log-filter {
	display: flex;
}
.inline-box {
	display: flex;
    justify-content: flex-start;
    padding-left: 12px;
	width: 68%;
    flex-wrap: wrap;
}
.inline-box li {
	width: auto;
	margin: 0 5px;
	font-size: 12px;
}
.inline-box li input {
	margin-right: 5px;
}
.main-filter {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	align-items: center;
}
.main-filter.main-filter-noproduct {
	justify-content: flex-end;
}
.noproduct-content {
	line-height: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.noproduct-content p {
	font-size: 20px;
	width: 100%;
	line-height: 1.2;
}
.filter-main {
	display: flex;
    justify-content: flex-end;
}
.filter-main .cat-filter {
	margin-right: 10px;
}
/* .log-filter input[type="checkbox"] {

} */
/* Hide the browser's default checkbox */
.log-filter label {
	display: block;
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
.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);
}

.cat-filter .select2-container--default .select2-selection--single .select2-selection__arrow:after {
    content: '\e803';
    font-family: 'badgers-icons';
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.cat-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}
.cat-filter .select2-container--default .select2-selection--single {
	border-radius: 0;
}
.woocommerce-products-header h1 {
	font-weight: 700;
}
/* .woocommerce .woocommerce-tabs {
	border: 1px solid var(--light-grey);
	border-top: none;
}*/
/* .woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
	display: none;
} */
/*.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	display: none;
} */
/* online-auction */
.online-auction {
	padding: 0 !important;
}
.online-auction .auction-catalouge {
	padding-left: 10%;
}
.online-auction .auction-catalouge p {
	letter-spacing: 2.5px;
	font-family: 'museo';
}
.online-auction .guides {
	background-color: var(--white);
	max-width: 300px;
	width: 100%;
}
.online-auction .guide-links p {
	letter-spacing: 2.5px;
	font-family: 'museo';
}
.online-auction .guides a {
	color: var(--text-red);
}
.online-auction .guides h2 {
	font-size: 72px;
} 
.online-auction .guide-text {
	border-width: 1px;
    border-color: #d7d7d7;
    border: 1px solid #d7d7d7;
    padding: 30px 20px;
}
.online-auction .guide-text p {
	margin-bottom: 0;
}
.online-auction .guide-links {
	padding: 20px 30px;
}
.online-auction .guide-links a {
	font-family: 'museo';
	letter-spacing: 3px;
}
.online-auction h1 {
	text-shadow: 0.05em 0.05em 0.05em rgb(0 0 0 / 20%);
}
.woocommerce nav.woocommerce-pagination {
	display: flex;
    justify-content: center;
    align-items: center;
}
.woocommerce nav.woocommerce-pagination ul.page-numbers {
	margin-right: 20px;
}
nav.woocommerce-pagination .select2-container .select2-selection--single {
	line-height: 32px !important;
	height: 32px !important;
	border-radius: 0;
}
nav.woocommerce-pagination  .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 32px !important;
}
nav.woocommerce-pagination  .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: inherit !important;
}

.pay-all-btn {
	width: 100%;
	margin-bottom: 20px;
	text-align: right;
}

/* views-box */

.views-box {
	display: flex;
	justify-content: space-between;
}
.views-box span {
	font-weight: 700;
	margin-right: 4px;
}

        /* Debug tooltip styles */
        .socket-debug-tooltip {
            position: absolute;
            background: #1a1a1a;
            color: #00ff00;
            padding: 12px;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            font-size: 11px;
            line-height: 1.3;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            border: 1px solid #333;
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        
        .socket-debug-tooltip.show {
            opacity: 1;
        }
        
        .socket-debug-tooltip .debug-label {
            color: #ffff00;
            font-weight: bold;
        }
        
        .socket-debug-tooltip .debug-value {
            color: #00ff00;
        }
        
        .socket-debug-tooltip .debug-status {
            color: #ff6600;
        }
        
        /* Example styling for demo */
        .auction-item {
            margin: 20px;
            padding: 15px;
            border: 1px solid #ddd;
            display: inline-block;
            width: 200px;
            text-align: center;
        }
        
        .auction-image {
            width: 150px;
            height: 100px;
            background: #f0f0f0;
            margin: 0 auto 10px;
            cursor: pointer;
        }


/* footer */
.footer {
	padding: 30px 0;
	font-family: 'museo';
	background-color: var(--grey);
}

.footer h2 {
	color: var(--white);
	margin-bottom: 30px;
	padding: 0 28px;
}
.footer h4,
.footer h3 {
	color: var(--white);
    font-weight: 700;
    font-size: 22px;
}
.footer h4 {
	font-size: 18px;
}
.footer a {
	color: var(--white);
}
.footer .copyright a {
	text-decoration: underline;
}
.footer .footer-nav {
	margin-bottom: 20px;
}
.footer .social-links {
	text-align: center;
	margin-bottom: 10px;
}
.footer .copyright {
	text-align: center;
	color: var(--white);
}
.footer .footer-nav ul li {
	display: inline-block;
	font-size: 14px;
    margin: 0 6px;
    letter-spacing: 1px;
}
.footer .footer-nav li {
	color: var(--white);
}
.footer .footer-widget {
	position: relative;
	height: 100%;
}
.footer .footer-widget p {
	font-family: 'museo';
	font-size: 15px;
	color: var(--white);
}
.footer .footer-widget {
	padding: 50px 0 28px;
}
.footer .footer-logo {
	display: block;
	text-align: center;
	margin-bottom: 20px;
}
.footer .footer-logo img {
	max-width: 250px;
	width: 100%;
}
/* uwa_auction_bage_icon */
.uwa_auction_bage_icon {
	display: none;
}
.footer_uwa_copyright {
	display: none !important;
}
/* cookie-policy */
.cookie-policy {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	background-color: var(--black);
	color: var(--primary);
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	align-items: center;
	display: none;
	border-top: 1px solid var(--black);
}
.cookie-policy a,
.cookie-policy p {
	color: var(--white);
}
.cookie-policy p { 
	margin-bottom: 15px;
    width: 100%;
    max-width: 1100px;
}
.cookie-policy .btn {
	background-color: var(--primary);
	color: var(--white);
	border: none;
	outline: none;
}

/* bid popup */
.notice-popup,
.bid-popup {
	display: none;
    position: fixed;
    padding: 40px 20px;
    width: 100%;
    left: 50%;
    top: 50%;
    background: #FFF;
    z-index: 20;
    margin: 0 auto;
    max-width: 500px;
	transform: translate(-50%, -50%);
	-webkit-box-shadow:  0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
	box-shadow:  0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
}
.notice-popup.active-popup,
.bid-popup.active-popup {
	display: block;
}
.bid-popup input {
	outline: none;
}
.bid-popup .close-bid-popup {
	position: absolute;
	top: -24px;
	right: -18px;
	background-color: #fff;
	display: block;
	width: 36px;
	height: 36px;
    text-align: center;
    border-radius: 50%;
    line-height: 2.2;
}
.bid-popup .button {
	font-size: 14px !important;
	padding: 10px 20px !important;
}
.notice-popup .close {
	position: absolute;
    right: 14px;
    top: 5px;
    font-size: 30px;
}
.auction-search-form {
	position: relative;
	margin: 0 auto 30px auto;
	padding: 0 15px;
}
.auction-search-form form {
	display: flex;
	justify-content: center;
	width: 100%;
}
.auction-search-form form input {
	margin-right: 10px;
	width: 100%;
	height: 40px;
	margin-bottom: 0;
	padding: 8px 14px;
	border: 1px solid var(--light-grey);
}
.auction-search-form .search-field-gap {
	padding-left: 8px !important;
	padding-right: 8px !important;
}
.auction-search-form form button[type="submit"] {
	height: 40px !important;
	line-height: 1 !important;
    padding: 10px !important;
} 
/* flexslider */
ul.flex-direction-nav {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: 99999;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0px;
	list-style: none;
}

li.flex-nav-prev {float: left;}
li.flex-nav-next {float: right;}
a.flex-next {visibility:hidden;}
a.flex-prev {visibility:hidden;}
a.flex-next::after {
	visibility:visible;
	content: '';
	margin-right: 10px;
	font-size: 20px;   
	font-weight: bold;
	background-image: url('../images/right-arrow.png');
	background-repeat: no-repeat;
	background-size: 32px;
	display: inline-block;
	height: 50px;
	width: 50px;
     /* text-align: center; */
    /* vertical-align: middle; */
	background-position: center;
	background-color: rgba(255,255,255,0.5);
}
a.flex-prev::before {
    visibility:visible;
    content: '';
	margin-left: 10px;
	font-size: 20px;
	font-weight: bold;
	background-image: url('../images/left-arrow.png');
	background-repeat: no-repeat;
	background-size: 32px;
	display: inline-block;
	height: 50px;
	width: 50px;
    /* text-align: center; */
    /* vertical-align: middle; */
    background-position: center;
	background-color: rgba(255,255,255,0.5);
}
ul.flex-direction-nav li a {
	color: #ccc;
}
ul.flex-direction-nav li a:hover {
	text-decoration: none;
}
.flex-control-nav {
	list-style: none;
	position: absolute;
    left: 50%;
    bottom: 25px;
    display: flex;
    margin: 0;
	transform: translateX(-50%);	
}
.flex-control-nav li {
	margin: 0 4px;
	text-indent: -999px;
	overflow: hidden;
	border-radius: 50%;
}
.flex-control-nav li a {
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--white);
}
.flex-control-nav li a.flex-active {
	background-color: var(--primary);
}
.woocommerce .direction .desktop-btn,
.header .direction .desktop-btn {
	display: block !important;
}
.woocommerce .direction .mobile-btn,
.header .direction .mobile-btn {
	display: none !important;
}
.woocommerce table.shop_table.tbl_watchauc_list td span.reserve_not_met ,
.woocommerce table.shop_table.tbl_watchauc_list td span.expired {
	color: var(--black);
}
.woocommerce .shop_table .watchauc_list.item-expired .product-remove a {
	color: var(--black) !important;
}

/* new log style */

.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 .seller-log {
	background-color: #ccc;
	padding: 20px;
	margin-bottom: 20px;
}
.log-list .table-log th small {
	font-size: 12px;
	display: block;
}
.log-list .table-log  td img {
	width: 60px !important;
}
.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;
}
.js-accordian-title.active {
	transform: rotate(-180deg);
}
   /* The popup form - hidden by default */
  .estimate-calculator {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	display: none;
	z-index: 999;
  }
  .estimate-inner {
	max-width: 600px;
    background-color: white;
    margin: 0 auto;
	margin-top: 200px;
	position: relative;
  }
  .estimate-inner h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 0;
  }
  .estimate-inner .estimate-heading {
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
	padding: 10px 20px;
  }
  .estimate-inner .form-popup {
	padding: 10px 20px 24px;
  }
  .estimate-inner .form-field {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 40px !important;
  }
  .estimate-inner .form-field input {
	margin-bottom: 0 !important;
	margin-right: 24px !important;
	margin-top: 0 !important;
  }
  .estimate-inner .estimated-cost {
	background-color: #fff8f8;
	padding: 14px 14px;
  }
  .estimated-cost > ul {
	border-bottom: 1px solid #eee;
	padding-bottom: 14px;
  }
  .estimated-cost ul li {
	display: flex;
	justify-content: space-between;
  }
  .estimated-cost .total-amount {
	padding-top: 10px;
  }
  .estimate-inner .form-popup .estimate-charges {
	display: none;
  }
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
	background-color: #ddd;
	outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
	background-color: #04AA6D;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom:10px;
	opacity: 0.8;
  }
  .estimator-popup-link {
	text-decoration: underline;
    color: blue !important;
  }
  .reg-btn {
	margin-bottom: 20px !important;
  }

/* offer popup */

.popup-cnt {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	display: none;
	z-index: 999;
  }
  .popup-content-inner {
	max-width: 500px;
    background-color: white;
    margin: 0 auto;
	margin-top: 200px;
	position: relative;
  }
  .offer-popup .popup-content-inner {
	border-radius: 16px;
	padding: 20px 20px;
  }
  .popup-content-inner h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0;
  }
  .popup-content-inner .popup-heading {
	margin-bottom: 20px;
	padding: 10px 20px;
	text-align: center;
  }
  .popup-content-inner .form-popup {
	padding: 10px 20px 24px;
  }
  .offer-popup .popup-content-inner .form-popup label {
	text-align: center;
    display: block;
	font-weight: 700;
	font-size: 20px;
}

  .popup-content-inner .form-popup .js-item-offer-form button[type="submit"] {
	width: 150px;
  }
  .popup-content-inner .form-field {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 40px !important;
  }
  .popup-content-inner .form-field input {
	margin-bottom: 0 !important;
	margin-right: 24px !important;
	margin-top: 0 !important;
  }
 .offer-popup .popup-content-inner .form-field {
	display: block;
	text-align: center;
 }
 .offer-popup .popup-content-inner .form-field input {
	margin-bottom: 0 !important;
	margin-right: 0 !important;
	width: 100%;
 }
 .offer-popup .popup-content-inner .form-popup .js-item-offer-form button[type="submit"] {
	margin:  0 auto 30px;
	width: 100%;
    border-radius: 20px !important;
    display: block !important;
    padding: 15px 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
 }
 .offer-popup .offer-info-link {
	display: inline-block;
	margin-bottom: 20px;
	text-decoration: underline;
}

.offer-popup .popup-content-inner .form-field .form-offer-price input { 
	background-color: #fff;
	border-bottom: 1px solid var(--primary) !important;
	font-size: 40px;
    box-sizing: border-box;
    border-radius: 0;
    height: auto;
    text-align: center;
    max-width: 100vw;
    padding: 0;
    font-size: 32px;
    letter-spacing: -1px;
    background-color: transparent;
 	/* text-align: left;
    padding-left: calc(50% - 18px); */
}
.offer-popup .popup-content-inner .form-offer-price {
	position: relative;
    margin-bottom: 30px !important;
}
.offer-popup .popup-content-inner .form-offer-price .offer-price-symbol {
	position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 700;
}
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
	width: 100%;
	padding: 15px;
	margin: 5px 0 22px 0;
	border: none;
	background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
	background-color: #ddd;
	outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
	background-color: #04AA6D;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	margin-bottom:10px;
	opacity: 0.8;
  }


  /* Add a red background color to the cancel button */
  .form-container .cancel {
	background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
	opacity: 1;
  }

.close-popup,
.estimate-close-popup {
	text-align: center;
    line-height: 2;
    top: 10px;
    right: 10px;
    background-color: #eee;
    border-radius: 46px;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
}  
.badger-registration {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.user-notice {
	border-radius: 5px;
    border: 1px solid var(--primary);
    padding: 10px;
    background: #fafafa;
    max-width: 700px;
    margin: 0 auto;
}
.user-notice .registration-success-message {
	color: var(--primary);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 25px;
}
.theme-style {
	line-height: 1;
} 
.theme-style .color-toggle {
	margin-bottom: 0;
}

/* archive-dates */
.archive-dates {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.archive-dates .auction-date-item {
	flex: 0 0 25%;
	margin-bottom: 20px;
}
.archive-dates .auction-date-inner {
	padding: 4px 4px 4px 4px !important;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    height: 100%;
    margin: 0 4px;
    position: relative;
}
.archive-dates .week-date {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.archive-dates .auction-text {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 190px;
    line-height: 1;
}
.archive-dates .auction-text span {
	background-color: #000;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    padding: 4px 10px;
    font-size: 15px; 
    margin-bottom: 1px;
}
.archive-dates .auction-text .mobile-date {
}
.archive-dates .week-date span {
	background-color: #000;
    display: inline-block;
    padding: 10px 10px;
    color: #fff;
}
.archive-dates .week-date .week-end {
	background-color: #000;
    display: block;
    padding: 10px 14px;
    color: #fff;
    font-size: 1.2rem;
    min-width: 200px;
}

.paginate-box {
	display: flex;
    justify-content: center;
}

.paginate-box .select2-container .select2-selection--single,
.paginate-box .select2-container--default .select2-selection--single .select2-selection__arrow,
.paginate-box .select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 34px !important;
    line-height: 34px !important;
}
.paginate-box .per-page-inner {
	margin-right: 30px;
}
.per-page-inner .select2-container {
	width: 56px !important;
}
.jump-page-inner .select2-container {
	width: 90px !important;
}

/* wallet-form */
.wallet-form {
	background-color: #e9e6ed;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.wallet-form .wallet-field {
	display: flex;
	align-items: center;
}
.wallet-form input[type="number"] {
	width: 200px;
	height: 50px;
	padding: 10px;
	margin-right: 10px;
}
.wallet-form button[type="button"] {
	padding: 16px 10px !important;
}
.wallet-form .aval-amt {
	color: green;
	margin-bottom: 0;
}

/* payout-form */
/* .payout-form input {

} */
.payout-form select {
	padding: 12px 14px;
	width: 100%;
   	max-width: 400px !important;
	border: 1px solid var(--light-grey);
	outline: none;
}
.payout-form .bank-details {
	display: none;
	width: 100%;
	max-width: 400px !important;
}

/* name-generator */
.name-generator {
    padding: 10px 10px;
    margin: 2em 0;
    border: 1px solid #cfc8d8;
    padding: 20px;
    border-radius: 5px;
}
.name-generator.name-generator-edit .name-text {
	text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.name-generator .name-generator-inner p {
	text-align: center;
}
.name-generator .name-identity p {
	margin-bottom: 0;
}
.name-generator .name-text {
	text-align: center;
}
.name-generator .generated-name {
	font-size: 30px;
    margin-bottom: 10px;
}
.name-generator .loader.button {
	pointer-events: none;
}
.name-generator.name-generator-edit  {
	border: 0;
	padding: 0;

}
.name-generator.name-generator-edit .generated-name {
	margin-bottom: 0;
}
.name-generator.name-generator-edit .name-change {
	margin-right: 5px;
}
.name-generator.name-generator-edit .generated-name {
	margin-right: 5px;
    font-size: 15px;
}
.name-generator.name-generator-edit .name-text {

}
.name-action-msg {
	margin-left: 5px;
}
.name-action-msg.msg-success {
	color: green;
}
.name-action-msg.msg-error {
	color: red;
}
@media screen and (max-width: 1399px) { 
    .guide-wrap .guide-text-large {
        margin-right: 0;
	}
	.header .header-main li {
		padding-right: 16px;
	}
}
@media screen and (max-width: 991px) {
	.header .header-main {
    	transition: height 0.3s ease, padding 0.3s ease;
   		height: 60px;
	}
	.header .header-main.hide-header {
		transform: translateY(-100%);
		opacity: 0;
		height: 0;
	}
	.header .header-main .button {
		font-size: 12px !important;
	}
	.woocommerce .desktop-btn,
	.header .direction .desktop-btn {
		display: none !important;
	}
	.woocommerce .mobile-btn,
	.header .direction .mobile-btn {
		display: block !important;
	}
	#menu-mobile-menu {
		display: block;
	}
	.header-toggle {
		display: block;
	}
	.header .header-main nav {
		display: none;
	}
	.header .header-main {
		padding: 5px 0;
	}	
	.header .header-main .search-toggle {
		margin-right: 20px;
	}
	.main-banner .bg-image {
		width: 100%;
	}
	.main-banner .bg-image .wp-block-cover__inner-container {
		margin: 0 0 0 4vw;
	}
	.overlay-text {
		width: 100%;
		padding: 30px 30px 10px;
	}
	.overlay-text .overlay-text-inner h3 {
		font-size: 20px;
	}
	.overlay-text .overlay-text-inner .button {
		border-radius: 0 !important;
		font-size: 12px !important;
    }
	.main-filter {
		justify-content: center;
	}
    .guide-wrap .guide-text-large {
        display: none;
    }
	.auction-block .wp-block-column:not(:first-child) {
		margin-left: 0;
	}
	.auction-block h2 {
		font-size: 40px;
	}
	.intro-text {
		padding: 0 20px;
	}
	.header .header-main .header-logo img {
		max-width: 100px;
		width: unset;
	}
	.archive-dates .auction-date-item {
		flex: 0 0 33.33%;
	}
	.archive-dates .week-date {
		top: 29px;
		left: 4px;
		transform: none;
		display: none;
	}
	.archive-dates .auction-text .mobile-date { 
		display: inline-block;
	}
	.archive-dates .auction-text span {
		padding: 2px 10px;
		color: #fff;
		line-height: 1.2;
		font-size: 12px;
	}
	.archive-dates .week-date span {
		padding: 2px 2px;
		color: #fff;
		line-height: 1.2;
		font-size: 12px;
	}
	.archive-dates .week-date .week-end {
		padding: 2px 6px;
		color: #fff;
		font-size: 12px;
		line-height: 1.2;
		min-width: auto;
	}
	.paginate-box {
		flex-wrap: wrap;
	}
	.paginate-box .paginate-inner {
		margin-bottom: 20px;
	}
	.bidhistory-popup .bidhistory-content {
		width: 95% !important;
	}
	.bidhistory-popup .bidhistory-content table td {
		font-size: 12px;
	}
	.product-stream ul.products li {
        width: 50% !important;
    }
	.woocommerce div.product form.cart #nextbidbutton.button {
		margin-left: 0;
		margin-top: 10px;
	}

	.footer {
		padding: 30px 0;
	}
	.footer h2 {
		font-size: 26px;
		margin-bottom: 20px;
	}
	.footer .footer-widget {
		border-right: none;
		padding: 0;
		margin: 0;
		padding: 0 0 30px;
	}
	
	.footer .footer-widget p {
		margin-bottom: 0;
	}
	.footer .widget_block {
		padding: 0;
	}
 
	.footer p {
		text-align: left;
	}
}

@media screen and (max-width: 782px) {
	html {
		margin-top: 0 !important;
	}
	.header .header-main .search-form .search-form-inner form {
		max-width: 85%;	
	}
    .styled-heading  {
        font-size: 56px !important;
    }
	.grey-block {
        width: 100%;
        padding: 20px 30px !important;
	}
	.grey-block .wp-block-column {
		border-right: none;
		border-bottom: 1px solid var(--white);
		width: 100%;
		padding: 30px 0 !important;
    }
    .guide-wrap p {
        max-width: 100%;
    }
    .wp-block-column {
        flex-basis: 100% !important;
    }
    .wp-block-column:not(:only-child) {
        flex-basis: 100% !important;
    }
    .online-selling {
        width: 95%;
    }
	.archive-dates .auction-date-item {
		flex: 0 0 50%;
	}
 }

@media screen and (max-width: 767px) {
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100% !important;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		width: 100% !important;
	}
	.header-sticky-height {
		/* height: 0; */
	}
	.header .header-main li {
		padding-right: 10px;
	}
	.popup-search .search-form-inner {
		margin: 0 auto;
		transform: translate(-50%, -50%);
	}
	.search-auction {
		display: none;
	}
	.auction-list {
		padding: 20px 0 0;
	}
	.auction-list.auction-pagination {
		padding: 0;
	}
	.woocommerce ul.products ,
	.woocommerce .wc-block-grid__products { 
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.woocommerce .related ul.products ,.woocommerce .wc-block-grid__products {
		margin-left: -16px !important;
		margin-right: -16px !important;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		padding-left: 0 !important;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		width: 50%;
		margin: 0 !important;
		border-radius: 0 !important;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
	.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
	.woocommerce div.product .woocommerce-tabs ul.tabs::before {
		display: none;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a {
		display: block !important;
	}
	.woo-content .back-to-list {
		margin-bottom: 6px;
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td {
		padding: 10px 12px;
		font-size: 14px;
		display: block;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td:first-child {
		border-bottom: 2px solid #000; 
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td:first-child {
		border-right: none;
	}
	.woocommerce div.product form.cart .button {
		max-width: none;
		margin-left: 0;
		margin-top: 10px;
	}
	.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
		margin: 0 -15px !important;
	}
	.log-filter {
		flex-wrap: wrap;
	}
	.log-filter h5 {
		width: 100%;
		margin-bottom: 12px;
	}
	.log-filter .inline-box {
		width: 100%;
		padding-left: 0;
	}
	.woocommerce-account .account-info .seller-title {
		justify-content: flex-start !important;
	}
	.woocommerce-account .account-info {
		margin-bottom: 20px;
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td {
		line-height: 1.2;
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td.receipt-td br {
		display: none;
	}
	.woocommerce-account .woocommerce-MyAccount-content .table-auction tr td.receipt-td span.receipt-link {
		margin-left: 14px;
		text-decoration: underline;
	} 
	.woocommerce table.shop_table.tbl_watchauc_list td {
		border-top: none !important;
	}
	.woocommerce table.shop_table.tbl_watchauc_list tr.watchauc_list {
		border-top: 1px solid #fff;
	}
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
		display: none;
	}
	.woocommerce table.shop_table.shop_table_responsive td.bidauc_img {
		margin-left: auto;
	}
	.woocommerce table.shop_table_responsive tr, 
	.woocommerce-page table.shop_table_responsive tr {
		border-bottom: 1px solid #000;
	}
	.woocommerce table.shop_table.shop_table_responsive td {
		padding: 10px 10px;
	}
	.theme-style {
		line-height: 1;
		margin-right: 10px;
	} 
	.theme-style .color-toggle {
		margin-bottom: 0;
		margin-right: 10px;
	}
	.color-toggle {
		width: 50px;
		height: 30px;
	}
	.toggle-check:before {
		height: 24px;
		width: 24px;
		left: 3px;
		bottom: 3px;
	}
	input:checked+.toggle-check:before {
		transform: translateX(20px);
	}
	.header .header-main .button.desktop-myaccount {
		display: none !important;
	} 

	.toggle-theme .box {
		width: 64px;
    	height: 32px;
	}
	.toggle-theme .box .ball {
		width: 30px;
		height: 30px;
	}
	.toggle-theme .box .scenary svg {
		width: 20px;
	}
	.woocommerce-products-header h1 {
		font-size: 25px;
	}
	.main-filter.main-filter-noproduct {
		padding: 0;
	}
	.product-stream {
		margin: 0 0;
	}
	.product-stream ul.products li {
        width: 100% !important;
    }
	.product-stream ul.products li {
		padding: 0 0 20px 0 !important;
	}
	.woocommerce div.product form.cart #nextbidbutton.button {
		max-width: none;
        margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
}

@media screen and (max-width: 600px) {
	.auction-list .container-fluid {
		padding-left: 0;
		padding-right: 0;
	}
	.auction-list .woocommerce-result-count {
		padding: 0 15px;
	}
	.header .header-main .header-logo {
		margin-right: 0;
	}
	.auction-list h2 {
		margin-bottom: 0;
	}
	.header .header-main .search-toggle {
		margin-right: 10px;
	}
	.bidding-wrap .wp-block-column:nth-child(2) {
        border-left: none;
	}
	.woocommerce .products li {
		width: 100% !important;
	}
	.auction-list {
 		margin-bottom: 40px;
	}
	.banner {
		min-height: 50vh;
	}
	.popup-search .search-form-inner {
		width: 90%;
		padding: 50px 48px 50px;
	}
	.notice {
		margin-bottom: 30px;
	}
	.search-auction {
		padding: 30px 0;
	}
	.woo-content {
		padding: 40px 0 40px;
	}
	.woocommerce ul.products li.product .woocommerce-loop-product__title { 
		height: auto;
		min-height: auto;
	}
	.woocommerce .products li .product-image {
	}
	.woocommerce .products ul, .woocommerce ul.products {
		/* margin-left: 0!important;
		margin-right: 0!important;	 */
	}
	.popup-content-inner .js-item-offer-form .form-field input[type="text"] {
		width: 100%;
		margin-bottom: 12px !important;
	}
	.popup-content-inner .js-item-offer-form .form-field {
		flex-wrap: wrap;
	}
	.name-generator.name-generator-edit .name-text {
		flex-direction: column;
	}
	.main-filter {
		justify-content: space-between;
        flex-direction: column-reverse;
        padding: 0 14px;
		margin-bottom: 0;
	}
	.main-filter .woocommerce-result-count {
		text-align: center;
	}
	.filter-main {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-bottom: 30px;
	}
}
.dark {
	--grey: #fff !important;
}

.dark input[type="text"], 
.dark input[type="number"], 
.dark input[type="tel"], 
.dark input[type="email"], 
.dark input[type="phone"], 
.dark input[type="url"], 
.dark input[type="password"], 
.dark textarea {
	color: var(--black);
}

.dark input:checked+.toggle-check {
	background-color: var(--white);
}
.dark input:checked+.toggle-check:before {
	background-color: var(--black);
} 

.dark body {
	background-color: var(--black);
	transition: all ease 0.35s;
}
.dark  .header {
	background-color: var(--black);
}
.dark .header .header-main ul li.desktop-hamberger > a {
	filter: invert(1);
}

.dark .header .header-main ul li a {
	color: var(--white);
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5,.dark h6 {
	color: var(--white) !important;
}
.dark .footer {
	background-color: var(--black);
	color: var(--white);
}
.dark .footer .copyright {
	color: var(--white);
}
.dark .woocommerce .products li .ending-date {
	color: var(--white);
}
.dark .woocommerce .products li .product-info .product-timer.p-expired {
	background-color: var(--black);
	color: var(--white);
}
.dark .woocommerce .products li .uwa-watchlist-action {
	color: var(--white);
}
.dark .woocommerce .uwa-user-bid-counts li.active, 
.dark .woocommerce .uwa-user-bid-counts li.active a {
	color: var(--white);
}
.dark .woocommerce table.shop_table.shop_table_responsive td a, 
.dark .woocommerce table.shop_table.shop_table_responsive td {
	color: var(--white);
}

.dark .woocommerce table.shop_table.shop_table_responsive.lost td a,
.dark .woocommerce table.shop_table.shop_table_responsive.lost td,
.dark .woocommerce table.shop_table.shop_table_responsive.active td a,
.dark .woocommerce table.shop_table.shop_table_responsive.active td {
	color: var(--black);
}
.dark .woocommerce table.shop_table td {
	border-color: var(--dark-grey);
}
.dark .header .header-main li ul.sub-menu {
	background-color: var(--black);
}
.dark .header .header-main ul li a {
	color: var(--white);
}
.dark .wp-container-core-columns-layout-3.wp-container-core-columns-layout-3 {
	background-color: var(--black) !important;
}

.dark .grey-block .wp-block-column {
	background-color: var(--black);
	color: var(--white);
}
.dark .grey-block.light-grey-block:before {
	background: var(--black);
}
.dark .gallery-block {
	background-color: var(--black);
}
.dark .countdown .count-title {
	color: #fff;
}
.dark .counter-btn {
	color: #fff;
    border: 1px solid var(--dark-grey);
}
.dark .bidding-wrap .wp-block-column:nth-child(2) {
	border-color: var(--dark-grey);
}
.dark .woocommerce .products li {
	border-color: var(--dark-grey);
}
.dark .woocommerce .products li .product-info {
	border-color: var(--dark-grey);
}
.dark .woocommerce .products li .product-info .product-timer {
	border-color: var(--dark-grey);
}
.dark .woocommerce nav.woocommerce-pagination ul li {
	border-color: var(--dark-grey);
}
.dark .woocommerce nav.woocommerce-pagination ul {
	border-color: var(--dark-grey);
}
.dark .search-form-inner .icon-search,
.dark .popup-search .close-form {
	color: var(--dark-grey);
}
.dark .search-box input[type="text"] {
	border-color: var(--dark-grey);
	color: var(--black);
}
.dark .woocommerce table.shop_table.tbl_watchauc_list td {
	border-color: var(--dark-grey) !important;
}
.dark .woocommerce table.shop_table.tbl_watchauc_list td span.reserve_not_met, 
.dark .woocommerce table.shop_table.tbl_watchauc_list td span.expired {
	color: var(--white);
}

.dark .grey-block .wp-block-column {
	border-color: var(--dark-grey);
}
.dark .online-selling {
	border-color: var(--dark-grey);
}
.dark .grey-block:before {
	background: var(--black);
}
.dark .grey-block {
	background: var(--black) !important;
}
/* .dark .wp-block-column p {
	color: var(--white) !important;
} */
.dark .wp-block-column p {
	color: var(--white) !important;
}
.dark .header .header-main .button-search {
	border-color: var(--dark-grey) !important;
	background-color: var(--white);
	color: var(--black);
}
.dark .btn, 
.dark .woocommerce #respond input#submit, 
.dark .woocommerce a.button, 
.dark .woocommerce button.button, 
.dark .woocommerce input.button, 
.dark .button {
	border-color: var(--dark-grey) !important;
}
.dark .woocommerce .products li .woo-ua-current:before, 
.dark .ic-bid:before, 
.dark .ic-timer:before {
	filter: invert(1);
}
.dark .woocommerce .products li .product-info .product-timer .uwa_auction_product_countdown span {
	color: var(--white);
}
.dark .product_title span,
.dark .woocommerce-loop-product__title span {
	background-color: var(--black);
	color: var(--white);
	border: 1px solid var(--white);
}
.dark .woocommerce-privacy-policy-text,
.dark .woocommerce-terms-and-conditions-checkbox-text,
.dark #payment ul.payment_methods li {
	color: #000;
}
.dark .auction-search-form form input{ 
	color: var(--black);
}
.dark .woocommerce-privacy-policy-text {
	color: var(--black);
}
.dark .select2-results__option--selectable {
	color: var(--black);
}
.dark .woocommerce .summary,
.dark .woocommerce .summary a ,
.dark .woocommerce p {
	color: var(--white);
}
.dark .woocommerce .products li .product-info .product-status {
	color: var(--white);
}
.dark .woocommerce .products li .product-box .total-user-bids {
	color: var(--white);
}
.dark .page-content .log-list {
	color: var(--black);
}
.dark .bidhistory-popup,
.dark .bidhistory-popup a {
	color: #000;
}

.dark .select2-container--default .select2-selection--single {
	background-color: transparent;
}
.dark .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--grey);
}
.dark  .select2-dropdown {
	background-color: var(--black);
}
.dark .select2-results__option--selectable {
	color: var(--grey);
}
.dark .select2-container--default .select2-results__option--selected {
	color: var(--black) !important;
}
.dark .star-items-box {
	background-color: dimgray;
}
/* count down timer */  
.countdown-wrap {
	position: relative;
}
.countdown-inner {
	margin: auto;
  }
  .countdown {
    margin: 0 auto;
    max-width: 1220px;
    text-align: center;
  }
  .countdown .bloc-time {
	float: left;
	margin-right: 45px;
	text-align: center;
  }
  .countdown .bloc-time.hide {
	display: none !important;
  }
  .countdown .bloc-time:last-child {
	margin-right: 0;
  }
  .countdown .count-title {
	display: block;
	margin-bottom: 15px;
	font: normal 0.94em "Lato";
	color: #1a1a1a;
	text-transform: uppercase;
  }
  .countdown .figure {
	position: relative;
	float: left;
	height: 110px;
	width: 100px;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 8px;
	-moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
	-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
  }
  .countdown .figure:last-child {
	margin-right: 0;
  }
  .countdown .figure > span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	font: normal 5.94em/107px 'museo';
	font-weight: 700;
	color: #de4848;
  }
  .countdown .figure .top:after, .countdown .figure .bottom-back:after {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .countdown .figure .top {
	z-index: 3;
	background-color: #f7f7f7;
	transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%;
	-moz-border-radius-topleft: 10px;
	-webkit-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
	-moz-transform: perspective(200px);
	-ms-transform: perspective(200px);
	-webkit-transform: perspective(200px);
	transform: perspective(200px);
  }
  .countdown .figure .bottom {
	z-index: 1;
  }
  .countdown .figure .bottom:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: rgba(0, 0, 0, 0.02);
  }
  .countdown .figure .bottom-back {
	z-index: 2;
	top: 0;
	height: 50%;
	overflow: hidden;
	background-color: #f7f7f7;
	-moz-border-radius-topleft: 10px;
	-webkit-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
  }
  .countdown .figure .bottom-back span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
  }
  .countdown .figure .top, .countdown .figure .top-back {
	height: 50%;
	overflow: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
  }
  .countdown .figure .top-back {
	z-index: 4;
	bottom: 0;
	background-color: #fff;
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-moz-transform: perspective(200px) rotateX(180deg);
	-ms-transform: perspective(200px) rotateX(180deg);
	-webkit-transform: perspective(200px) rotateX(180deg);
	transform: perspective(200px) rotateX(180deg);
	-moz-border-radius-bottomleft: 10px;
	-webkit-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
  }
  .countdown .figure .top-back span {
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	margin: auto;
  }
  .countdown-inner {
	padding: 50px 0;
  }
  .count-down {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin-bottom: 60px;
  }
  .count-down p,
  .countdown-text p {
	text-align: center;
	font-size: 22px;
	margin-bottom: 30px;
  }
  .count-down p span,
  .countdown-text p span {
	color: #de4848;
  }
  .count-down p {
	text-align: center;
	width: 100%;
	margin-bottom: 40px;
  }
  .counter-bottom {
	text-align: center;
  }
  .counter-btn {
	background-color: transparent;
	color: #000;
	border: 1px solid #000;
	padding: 10px 20px;
	font-size: 20px;
	display: inline-block;
	margin-bottom: 100px;
  }
  
  .bidhistory-popup {
	position: fixed; /* Stay in place */
	z-index: 99; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	display: none;
  }
.bidhistory-popup .bidhistory-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	width: 50%; /* Could be more or less, depending on screen size */
  }
.bidhistory-popup .bidhistory-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .bidhistory-popup .bidhistory-close:hover,
  .bidhistory-popup .bidhistory-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  .bidhistory-content table {
	width: 100%;
	display: table;
  }

#wp-admin-bar-wp-logo,
#wp-admin-bar-woocommerce-site-visibility-badge,
#wp-admin-bar-site-name {
	display: none !important;
}

  @media screen and (max-width: 767px) { 
	.countdown {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.countdown .bloc-time:last-child,
	.countdown .bloc-time {
		margin-bottom: 20px;
		margin-right: 18px;
	}
	.countdown .figure {
		float: none;
	}
	.countdown .figure {
		height: 50px;
		width: 50px;
	}
	.countdown .figure > span {
		font: normal 2em/50px 'museo';
	}
	.countdown .bloc-time  {
		float: none;
	}
	
  }

.product-popup {
	position: fixed; /* Stay in place */
	left: 50%;
    top: 50%;
	padding-top: 100px; /* Location of the box */
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 40px;
    display: block;
	z-index: 9999;
    transition: opacity 0.2sease -in-out;
	width: 100%;
    max-width: 600px;
	transform: translate(-50%, -50%);
}
.popup-content {
    display: flex;
    flex-direction: column;
}
.product-popup .popup-top {
	display: flex;
	justify-content: space-between;
}
.product-popup .popup-top figure {
	flex: 0 0 45%;
}
.product-popup .popup-top figure img {
	border-radius: 10px;
	max-height: 250px;
    max-width: 250px;
}
.product-popup .popup-top  .popup-top-share {
	flex: 0 0 55%;
    align-items: center;
    display: flex;
	justify-content: center;
}
.product-popup .share-popup-close {
	position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: 500;
    border: none;
    background-color: transparent;
    z-index: 999;
    cursor: pointer;
}
.product-popup .popup-top .popup-top-share-inner {
}
.popup-content input {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
}
.product-popup .popup-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 3px solid var(--grey-log);
	margin-bottom: 18px;
}
.product-popup .popup-copy .copy-btn {
	flex: 0 0 20%;
    text-align: center;
    padding: 6px 6px;
    border-right: 3px solid var(--grey-log);
	font-weight: 700;
    background-color: transparent;
    outline: none;
    border-left: 0;
    border-bottom: 0;
    border-top: 0;
}
.product-popup .popup-or {
	text-align: center;
	margin-bottom: 20px;
}
.product-popup .popup-copy input {
	border: none;
	outline: none;
}
.popup-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    transform: rotate(45deg);
    top: 50%;
    left: -5px;
    margin-top: -5px;
}

.social-icons {
	display: flex;
	justify-content: center;
}

.social-icons a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
	text-indent: -9999px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: block;
	height: 50px;
    width: 50px;
    margin: 0 8px;
}
.social-icons .share-facebook {
	background-image: url('../images/share-facebook.png');
}
.social-icons .share-twitter {
	background-image: url('../images/share-twitter.png');
}
.social-icons .share-instagram {
	background-image: url('../images/share-instagram.png');
}
.social-icons .share-youtube {
	background-image: url('../images/share-youtube.png');
}
.social-icons .share-whatsapp {
	background-image: url('../images/share-whatsapp.png');
}
.social-icons .share-email {
	background-image: url('../images/share-email.png');
}
.popup-top-share {
	text-align: center;
	position: relative;
}
.product-share.loading button:before {
	content: '';
	background-image: url('../images/loading.gif');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: block;
	width: 30px;
	height: 30px;
	pointer-events: none;
}
.popup-top-share .popup-top-title {
	font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}
.popup-top-share .popup-top-text {
	font-size: 18px;
	font-weight: 500;
}
@media only screen and (max-width:767px) {
	.product-popup {
         padding: 20px 20px;
    }
}

@media only screen and (max-width:600px) {
	.product-popup .popup-top {
		flex-wrap: wrap;
		justify-content: center;
	}
	.product-popup .popup-top figure {
		flex : 0 0 100%;
		text-align: center;
	}
}

/* ---- grid ---- */

.grid {
  background: #DDD;
  max-width: 1200px;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-item {
  float: left;
  width: 100px;
  height: 100px;
  background: #0D8;
  border: 2px solid #333;
  border-color: hsla(0, 0%, 0%, 0.7);
}

.grid-item--width2 { width: 200px; }
.grid-item--height2 { height: 200px; }

.grid-item:hover {
  background: #8CF;
  cursor: pointer;
}
