/* Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body > *, html > *, *
{
	box-sizing: border-box;
	margin: 0; padding: 0;
    font-weight: 400;
	font-family: 'Roboto', sans-serif;
	margin: 0;
}

html{overflow-x: hidden;}
body {font-size:11px;color:#211922; max-width: 100%; background-color: #f7f9fb; overflow-x: hidden;}

/* GENERAL
--------------------------------------------------------------------------------------- */
strong{font-weight:700;}
a{text-decoration: none; color: inherit;}

/* COOKIE MESSAGE
--------------------------------------------------------------------------------------- */
.cc-window{
	height: 60px;
	max-height: 60px;
}

/* CONTAINERS
--------------------------------------------------------------------------------------- */
.wrapper{
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding: 1rem;
	padding-top: 0;
	border: none;
}

/* HEADER
--------------------------------------------------------------------------------------- */
.header{
	width: 100%;
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: inset 0 1px #fff, 0 1px 2px rgba(34,25,25,0.4);
	background-color: rgba(247, 249, 251, .9);
	z-index: 999;
}
.header .HeaderContainer{
	width: 100%;
	height: 100%;
	padding: .5rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.header .HeaderContainer .nav.sysOutLink{display: none;}

/* HERO SECTION
--------------------------------------------------------------------------------------- */
.hero{
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 1rem;
	text-align: center;
	margin-bottom: 1rem;
}
.hero h1{
	margin: 0 auto;
	max-width: 700px;
	font-weight: 400;
	font-size: 22px;
}

/* FILTERS
--------------------------------------------------------------------------------------- */
.filters{
	width: 100%;
	max-width: 1300px;
	font-weight: 700;
	text-align: right;
	position: relative;
	margin: 0 auto;
	padding: 0;
	padding-top: 6rem;
	padding-bottom: 0;
	font-size: 16px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
/* Input boxes */
.filters input {
	outline: none;
	margin-left: .5rem;
	display: inline-block;
	position: relative;
}
.filters input[type=text] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
.filters input::-webkit-search-decoration,
.filters input::-webkit-search-cancel-button {
	display: none; 
}
.filters input[type=text] {
	background: #ededed url(https://static.tumblr.com/ftv85bp/MIXmud4tx/search-icon.png) no-repeat 9px center;
	border: solid 1px #ccc;
	padding: 9px 10px 9px 32px;
	width: 150px;
	
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 10em;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
.filters input[type=text]:focus {
	width: 150px;
	background-color: #fff;
	border-color: #66CC75;
	
	-webkit-box-shadow: 0 0 5px rgba(109,207,246,1);
	-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
	box-shadow: 0 0 5px rgba(109,207,246,.5);
}
.filters input.small[type=text] {
	width: 15px;
	padding-left: 10px;
	color: transparent;
	cursor: pointer;
}
.filters input.small[type=text]:hover {
	background-color: #fff;
}
.filters input.small[type=text]:focus {
	width: 150px;
	padding-left: 32px;
	color: #000;
	background-color: #fff;
	cursor: auto;
}
.filters input.small:-moz-placeholder {
	color: transparent;
}
.filters input.small::-webkit-input-placeholder {
	color: transparent;
}
/* Order by */
.filters .form-select {
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	background: transparent;
	-moz-transition: box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	-webkit-transition: box-shadow 0.2s;
	transition: box-shadow 0.2s;
	position: relative;
	width: 150px;
	display: inline-block;
}
.filters .form-select span{
	position: absolute;
	top: -10px;
	font-size: 12px;
	left: 10px;
	color: #888888;
	font-weight: 700;
}
.filters .form-select:after {
  content: 'â–¾';
  position: absolute;
  top: 0;
  right: 12px;
  z-index: 1;
  color: #000;
  line-height: 40px;
  font-size: 14px;
}
.filters .ie .form-select:after {
  display: none;
}
.filters select {
  position: relative;
  background: transparent;
  background-image: none;
  display: block;
  width: 100%;
  outline: none;
  color: black;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  border: none;
  padding: 10px 10px 10px 5px;
  text-overflow: '';
  text-indent: 5px;
  font-size: 16px;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.filters select[multiple=multiple] {
  height: auto;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.07);
  -moz-transition: box-shadow 0.2s;
  -o-transition: box-shadow 0.2s;
  -webkit-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}
.filters select[multiple=multiple]:hover {
  border-color: #cccccc;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.filters select option[disabled] {
  color: #eeeeee;
  text-shadow: none;
  border: none;
}

.filters select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #888888;
}

.filters select::-ms-expand {
  display: none;
}

/* LINKS
--------------------------------------------------------------------------------------- */
.links{
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 1rem;
	position: relative;
	text-align: center;
}
.links a{
	position: relative;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	margin-right: .5rem;
	margin-left: .5rem;
	color:#211922;
}
.links a:hover{
	color: #cb2027;
}
.links a:last-child::before{
	display: none;
}

/* PIN CELL
--------------------------------------------------------------------------------------- */
.pinList{
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	grid-gap: 20px;
	width: 1300px !important;
	max-width: 100% !important;
	height: auto !important;
	margin: 0 auto;
}
.pin{
	width: 100%;
	max-width: 100% !important;
	position: relative !important;
	top: initial !important;
	left: initial !important;
	padding: 0;
	border: 15px solid white;
	box-sizing: border-box;
	overflow: hidden;
	background-color: white;
	transition: .15s linear;
}
.pin:hover{
	box-shadow: 0 10px 20px rgba(179, 179, 179, 0.5), 0 6px 6px rgba(179, 179, 179,0.12);
	transform: translateY(-5px);
}

/* PIN IMAGES
--------------------------------------------------------------------------------------- */
.pin .ImgLink{
	text-align: center;
	width: 100%;
	max-width: 100%;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.pin .ImgLink img{
	height: 250px;
	max-height: 250px;
	margin: 0 auto;
}
.ImgLink:hover img,
.ImgLink:active img {opacity: .9; filter: alpha(opacity=90);}

/* PIN TEXT
--------------------------------------------------------------------------------------- */
.pin .description, .pin > span{
	font-size: 14px;
	margin: 0;
	padding: 0;
	line-height: initial;
	/* font-weight: 700; */
	margin-bottom: .5rem;
	color: #888888;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.pin > span{ margin-bottom: 0;}
.pin .description:first-of-type{
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 16px;
	color: initial;
	min-height: 78px;
	white-space: initial;
	overflow: none;
	text-overflow: none;
}

/* BACK TO TOP BUTTON
--------------------------------------------------------------------------------------- */
#ScrollToTop{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #eee;
	font-weight: 700;
	color: black;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 20px rgba(179, 179, 179, 0.5), 0 6px 6px rgba(179, 179, 179,0.12);
}
#ScrollToTop img{
	width: 20px;
	max-width: 20px;
}

/* PIN CONVO
--------------------------------------------------------------------------------------- */
.pin .convo{
	margin-top: 1rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 52px;
}
.pin .convo{
	font-size: 14px;
	color: #888888;
	font-weight: 700;
}
.pin .convo label{
	font-size: 12px;
	font-weight: 400;
	color: black;
}
/* BUY NOW BUTTON */
.pin .convo a.buy_now{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background-color: #eee;
	border-color: #f4b113;
}
.pin .convo a.buy_now::before{
	content: 'Right Now on eBay!';
	position: absolute;
	top: 50%;
	left: 50%;
	color: black;
	font-weight: 700;
	transform: translateX(-50%) translateY(-50%);
	border-color: #f4b113;
}

.hidden {display: none;}
.search_widget{display: none;}

/* Tablets */
@media only screen and (min-width : 48em){
	.hero h1{
		font-size: 28px;
	}

	.links a{
		margin-right: 3rem;
		margin-left: 3rem;
	}
	.links a::before{
		height: 110%;
		width: 1px;
		background-color: black;
		content: '';
		right: -3rem;
		position: absolute;
	}
}

/* OLD */



/* CELL BUTTONS
--------------------------------------------------------------------------------------- */
.pin .actions {display: none; position: absolute; z-index: 2; top: 6px; right: 6px; left: 6px;width: 125px;}
.pin .actions div {position: absolute;}
.pin .left {left: 0;}
.pin .right {right: 0; }

.pin:hover .actions {display: block;}
.actions .WhiteButton.Button11 {clear: both;margin-bottom:3px;float:left; position: relative; z-index: 1; padding: 5px 8px; border: 2px solid rgba(140,126,126,0.5); border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; box-shadow: inset 0 1px rgba(255,255,255,0.35); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35);}
.actions .WhiteButton.Button11 span {border-width: 0; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;}
.actions .WhiteButton.Button11:hover span {box-shadow: inset 0 1px rgba(255,255,255,0.35), 0 1px 2px rgba(35,24,24,0.75); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35), 0 1px 2px rgba(35,24,24,0.75); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35), 0 1px 2px rgba(35,24,24,0.75);}
.actions .WhiteButton.Button11:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 1px rgba(232,230,230,0.5); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 1px rgba(232,230,230,0.5); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 1px rgba(232,230,230,0.5);}
.actions .WhiteButton.Button11 strong {font-weight: normal;}

.actions .WhiteButton.Button11 em {position: relative; top: 1px; left: -2px; display: inline-block; width: 10px; height: 10px; background-image: url(/img/ActionIcons10.png);}
.actions .WhiteButton.Button11.disabled span {background: #f2f0f0; opacity: 1; filter: none;}
.actions .WhiteButton.Button11.disabled:hover span {box-shadow: inset 0 1px rgba(255,255,255,0.35); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35);}
.actions .WhiteButton.Button11.disabled:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25);}

/* BUTTONS
--------------------------------------------------------------------------------------- */

/* White Button */
.WhiteButton {color: #524d4d; text-shadow: 0 1px rgba(255,255,255,0.9);}
.WhiteButton:hover {color: #666060; text-shadow: 0 1px rgba(255,255,255,1);}
.WhiteButton:active {color: #454141; text-shadow: 0 1px rgba(255,255,255,0.8);}

.WhiteButton span {
	border-color: #bbb; 
	background-color: #f1efef;
	background: -moz-linear-gradient(top,#fcfafa, #f1efef); 
	background: -o-linear-gradient(#fcfafa, #f1efef); 
	background: -webkit-linear-gradient(#fcfafa, #f1efef); 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfafa', endColorstr='#f1efef');	
}
.WhiteButton:hover span {border-color: #c3c3c3;}
.WhiteButton:active span {border-color: #b7b7b7; background-color: #ebe8e8; background: -moz-linear-gradient(center top, #f8f4f5, #f3f0f0 50%, #f1eeef 50%, #ebe8e8); background: -o-linear-gradient(top left, #f8f4f5, #f3f0f0 50%, #f1eeef 50%, #ebe8e8); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f4f5), to(#ebe8e8), color-stop(.5,#f3f0f0),color-stop(.5,#f1eeef)); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f4f5', endColorstr='#ebe8e8');}

.WhiteButton.Button11:hover span {box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 5px rgba(232,230,230,0.75); -moz-box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 5px rgba(232,230,230,0.75); -webkit-box-shadow:  0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 5px rgba(232,230,230,0.75);}
.WhiteButton.Button11:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 1px rgba(232,230,230,0.5); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 1px rgba(232,230,230,0.5); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 2px rgba(232,230,230,0.5);}

.WhiteButton.Button12:hover span {box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 6px rgba(232,230,230,0.75); -moz-box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 6px rgba(232,230,230,0.75); -webkit-box-shadow:  0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 6px rgba(232,230,230,0.75);}
.WhiteButton.Button12:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 2px rgba(232,230,230,0.5); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 2px rgba(232,230,230,0.5); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 2px rgba(232,230,230,0.5);}

.WhiteButton.Button18:hover span {box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 10px rgba(232,230,230,0.75); -moz-box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 10px rgba(232,230,230,0.75); -webkit-box-shadow:  0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 10px rgba(232,230,230,0.75);}
.WhiteButton.Button18:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 3px rgba(232,230,230,0.5); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 3px rgba(232,230,230,0.5); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 3px rgba(232,230,230,0.5);}

.WhiteButton.Button24:hover span {box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 14px rgba(232,230,230,0.75); -moz-box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 14px rgba(232,230,230,0.75); -webkit-box-shadow: 0 1px rgba(255,255,255,0.8), inset 0 1px rgba(255,255,255,0.35), 0 0 14px rgba(232,230,230,0.75);}
.WhiteButton.Button24:active span {box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 4px rgba(232,230,230,0.5); -moz-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 4px rgba(232,230,230,0.5); -webkit-box-shadow: inset 0 1px 2px rgba(34,25,25,0.25), 0 0 4px rgba(232,230,230,0.5);}

/* Suppressed Button */
.Button.Suppressed span {opacity: 0; filter: alpha(opacity=0);}
.Button.Suppressed:hover span {opacity: 1; filter: alpha(opacity=100);}

/* Disabled Button */
.Button.disabled {color: #d1cdcd; text-shadow: 0 -1px rgba(34,25,25,0.01); background: #f2f0f0; border-color: #d1cdcd;}
.Button.disabled:hover {color: #d1cdcd; text-decoration: none;}
.Button.disabled span {opacity: 0; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); background: transparent; border: none;}
.Button.disabled.clickable {cursor: pointer;}

/* added v1.0.4 */
.buy_now {
background: url("/img/logocart.png") no-repeat scroll 0 0 transparent;
display: block;
float: right;
/*height: 36px;*/
width: 80px;
}
.cat_count{
       width: 1150px;
       margin: auto;
}
.cat_count a{
    display: inline-block;
font-family: arial;
font-size: 12px;
font-weight: normal;
margin: 10px;
width: 260px;
}
.counter_price{
    float: left;
    width: 90px;
}
.bids{
float: right;
text-align: center;
width: 68px;
}
.right_part{
 float: right;
text-align: right;
width: 90px;
}
.convo label{
    color: #666666;
text-transform: uppercase;
}
.pin_hover .count-down{
    display: none;
}
.pin_hover .buy_now{
    display: block !important;
}
.pin .buy_now{
    display: none;
}
.ebay_pin .convo{
    line-height: 18px;
}
.search_widget{
    width: 279px;
    padding: 0;
    background: none repeat scroll 0 0 transparent;
    box-shadow: none;
}
.search_box {
background: none repeat scroll 0 0 #F2F0F0;
border: 1px solid #DDDDDD;
border-radius: 5px 5px 5px 5px;
float: left;
margin-bottom: 10px;
width: 277px;
}
.search_title {
  background: url("/img/plus.png") no-repeat scroll 257px center transparent;
  font-weight: bold;
  height: 23px;
  line-height: 23px;
  padding: 5px 8px;
  position: relative;
}
.search_box .active {
  background: url("/img/minus.png") no-repeat scroll 257px center transparent;
}
.sub-heading {
  clear: both;
  font-weight: bold;
  height: 23px;
  line-height: 23px;
  padding: 5px 8px;
  position: relative;
}
.keyword input, .seller input {
  border: 1px solid #DDDDDD;
border-radius: 3px 3px 3px 3px;
height: 33px;
margin: 7px;
padding: 5px;
width: 250px;
}
.search_box li {
  border-bottom: 1px solid #DDDDDD;
  line-height: 25px;
  list-style: none outside none;
  margin: 0;
  padding: 5px;
  position: relative;
}
.search_box input[type="checkbox"], .search_box input[type="radio"] {
  display: inline-block;
  float: left;
  margin-right: 4px;
  margin-top: 6px;
  margin-left: 4px;
}
.input_box {
float: left;
margin: 7px;
overflow: hidden;
width: 115px;
}
.input_box label {
  color: #666666;
  font-size: 11px;
  margin-left:2px;
}
.input_box input {
border: 1px solid #DDDDDD;
border-radius: 3px 3px 3px 3px;
height: 23px;
margin-top: 5px;
width: 103px;
}
.search_box .sep {
  float: left;
  margin: 28px 6px 0;
}
.distance select {
   border: 1px solid #DDDDDD;
border-radius: 3px 3px 3px 3px;
font-family: arial;
font-size: 12px;
height: 24px;
padding: 2px;
width: 90px;
}
.distance input[type="text"] {
   border: 1px solid #DDDDDD;
border-radius: 3px 3px 3px 3px;
margin-left: 5px;
width: 85px;
}
.btn_submit {
  background: none repeat scroll 0 0 #EEEEEE;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 3px 3px 3px 3px;
  color: #666666;
  float: right;
  margin-bottom: 10px;
  padding: 5px 8px;
  text-transform: capitalize;
}
.search_box li:last-child{
    border: none;
}
.scontent {
  border-top: 1px solid #ddd;
}
.ebay_gallery{
    float: left;
padding: 30px 30px;
position: relative;
width: 420px;
overflow: hidden;

}
.ebay_popup_right{
float: right;
font-family: helvetica;
font-size: 13px;
width: 250px;
padding-top: 20px;
}

.actions .WhiteButton.pin_link{
background-color: white;
}

.actions .WhiteButton.pin_link{
clear: both;margin-bottom:3px;float:left; position: relative; z-index: 1; padding: 5px 8px; border: 2px solid rgba(140,126,126,0.5); border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; box-shadow: inset 0 1px rgba(255,255,255,0.35); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35);
}
.actions .WhiteButton.pin_link span {
  border-radius: 5px 5px 5px 5px;
  border-width: 0;
}
.actions .WhiteButton.pin_link strong{
font-weight: normal;    
}
.actions .WhiteButton.pin_link em {
background-image: url("/img/pinn.png");
background-position: center center;
background-repeat: no-repeat;
background-color: white;
display: inline-block;
height: 10px;
left: -3px;
margin-right: 2px;
position: relative;
top: 1px;
width: 6px;
}

.actions .WhiteButton.likebutton{
background-color: white;
}

.actions .WhiteButton.likebutton{
clear: both;margin-bottom:3px;float:left; position: relative; z-index: 1; padding: 5px 8px; border: 2px solid rgba(140,126,126,0.5); border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; box-shadow: inset 0 1px rgba(255,255,255,0.35); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35);
}
.actions .WhiteButton.likebutton span {
  border-radius: 5px 5px 5px 5px;
  border-width: 0;
}
.actions .WhiteButton.likebutton strong{
font-weight: normal;    
}
.actions .WhiteButton.likebutton em {
background-image: url("/img/fb.png");
background-position: center center;
background-repeat: no-repeat;
display: inline-block;
height: 10px;
left: -3px;
margin-right: 2px;
position: relative;
top: 1px;
width: 6px;
}

.actions .WhiteButton.twbutton{
background-color: white;
}

.actions .WhiteButton.twbutton{
clear: both;margin-bottom:3px;float:left; position: relative; z-index: 1; padding: 5px 8px; border: 2px solid rgba(140,126,126,0.5); border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; box-shadow: inset 0 1px rgba(255,255,255,0.35); -moz-box-shadow: inset 0 1px rgba(255,255,255,0.35); -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.35);
	background-color: white;
}
.actions .WhiteButton.twbutton span {
  border-radius: 5px 5px 5px 5px;
  border-width: 0;
}
.actions .WhiteButton.twbutton strong{
font-weight: normal;    
}
.actions .WhiteButton.twbutton em {
background-image: url("/img/tw.png");
background-position: center center;
background-repeat: no-repeat;
display: inline-block;
height: 10px;
left: -3px;
margin-right: 2px;
position: relative;
top: 1px;
width: 6px;
}

.ebay_popup_title{
    font-family: helvetica;
font-size: 15px;
font-weight: bold;
margin-bottom: 10px;
margin-top: 10px;
}
.popup_buyit_now{
    float:left;
    width: 120px;
}
.popup_current_price
{   
    float:left;
    width: 120px;
}
.popup_price{}
.popup_feedback{
    float: left;
margin-right: 20px;
}
.feedback_percent{
    border-left: 1px solid #DDDDDD;
float: left;
padding-left: 20px;
}
.seller_name{
    font-weight: bold;
margin-bottom: 10px;
text-transform: capitalize;
}
.ebay_popup_right label{
display: inline-block;
font-size: 10px;
font-weight: normal;
letter-spacing: 1px;
margin-bottom: 5px;
text-transform: uppercase;
}
.ebay_popup_right h3{
border-bottom: 1px solid #EEEEEE;
clear: both;
font-size: 15px;
font-weight: bold;
margin: 7px 0;
padding: 5px 0;
}
.popup_wrap{}
.popup_buynow{
        background-color: #f47721;
	background: -moz-linear-gradient(top,#f7951e, #f47721); 
	background: -o-linear-gradient(#f7951e, #f47721); 
	background: -webkit-linear-gradient(#f7951e, #f47721); 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7951e', endColorstr='#f47721');	
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
display: block;
float: left;
font-family: arial;
font-size: 13px;
font-weight: normal;
margin: 10px 0;
padding: 6px 10px;
}
.ebay_popup{
    width: 800px;
}
.ebay_popup_right span
{
    font-weight:bold;
    font-size: 15px;
}
.pcount-down span{}

/* Pin popup
--------------------------------------------------------------------------------------- */

.pinPopup .BackLayout {position: fixed; top: 0px;left: 0px;height:100%; width:50%; cursor: pointer;}
.pinPopup .CloseLayout2 {cursor: pointer;}
.pinPopup .CloseLayout {position: fixed; top: 0px;right: 0px;height:100%; width:50%; cursor: pointer;margin-right: 16px;}
.pinPopup .BackLayout div,.pinPopup .CloseLayout div {width: 115px;height: 100%;}


.pinPopup .BackLayout div {float: left;}
.pinPopup .CloseLayout div ,.pinPopup .CloseLayout2 div{float: right;}
.pinPopup .BackLayout:hover div,.pinPopup .CloseLayout:hover div,.pinPopup .CloseLayout2:hover div {background-color: #000000;opacity:.1;}

.pinPopup .BackLayout em {
	background: white url(/img/ico_pinpopup.png) 0% -10px no-repeat;
	display: inline-block;
	width: 7px;
	height: 11px;
	vertical-align: middle;
	margin: 0px 5px 2px 0px;
}
.pinPopup .CloseLayout em,.pinPopup .CloseLayout2 em {
	background: white url(/img/ico_pinpopup.png) 0% 0% no-repeat;
	display: inline-block;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin: 0px 5px 2px 0px;
}

.pinPopup .BackLayout span,.pinPopup .CloseLayout span ,.pinPopup .CloseLayout2 span {color:#000000; font-size: 12px;font-weight: bold; position: absolute; top: 10px; opacity:.3;}
.pinPopup .BackLayout:hover span,.pinPopup .CloseLayout:hover span,.pinPopup .CloseLayout2:hover span {opacity:1;}
.pinPopup .BackLayout span {left: 30px}
.pinPopup .CloseLayout span ,.pinPopup .CloseLayout2 span {right: 10px}

.pinPopup {width: 660px; margin-top: 30px;position: relative;}
.pinPopup .WhiteContainer {padding: 0px 0px 10px;}
.pinPopup .PinPinner .Button12 { float: right; margin-top: 12px;}
.pinPopup .PinPinner { padding: 20px 18px 20px 30px;}
.pinPopup .SocialShare {position: fixed;top: 162px;left: 50%;margin-left: 360px;padding: 0px;}
.pinPopup .SocialShare .soc_addthis {margin: 10px 0 5px;}
.pinPopup .SocialShare .soc_addthis a {display: inline-block;}

.pinPopup .close {position: absolute; right: 10px; top:10px;font-size: 11px;text-decoration: none;}

.pinPopup .ZoomBoard .Button {float: right;margin-top: 14px;}
.pinPopup .ZoomBoard p {margin: 0px;}
.pinPopup .ZoomBoard h4 {width: 480px;}

/*PAGE ERRORS*/
.page_error {margin-top: 150px;text-align: center;color: #b9aeb2; text-shadow: 0 1px rgba(255,255,255,0.8); font-size: 24px;}

.sysCheckedImgs {margin-top: 15px;position: relative;}
.sysCheckedImgs ul {float: left;width: 100%; border-top:1px solid #d8d4d3;border-bottom:1px solid #d8d4d3;padding: 5px 0 0px;margin-bottom: 5px;background: transparent url(/img/bg_upload10.png) 0% 5px no-repeat;}
.sysCheckedImgs li {float: left; width: 50px; margin: 0px 5px 5px 0px;height: 50px; overflow: hidden;position: relative;}
.sysCheckedImgs li:hover {
	cursor: pointer;
}
.sysCheckedImgs li:hover span.bg_opacity {
	position: absolute;
	top:0px;
	left: 0px;
	background:#ffffff;
	opacity: .5;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	width: 100%;
	height: 100%;
	z-index: 10;
}
.sysCheckedImgs .orange_submit {margin-left: 190px;}
.sysFormFieldError_descr .error-field {margin: 0px 0px 10px 0px;}
.sysCheckedImgs .sysUploadPinCreateLoading {position: absolute; left:0px;bottom: 2px;}

.auth_text {width: 650px;margin:0 auto 30px;text-align: center; font-size: 18px;color:#8C7E7E;}

.pin .price,.comment_attached_pic .price {
    position: absolute;
    z-index: 2;
    top: 19px;
    left: -28px;
    width: 125px;
    height: 22px;
    padding-top: 8px;
    text-align: center;
    font-size: 11px;
    color: #524d4d;
    background-color: #f2f0f0;
    overflow: hidden;
    -webkit-transform: rotate(-45deg);
    -moz-transform:  rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

.PinImage .price {
    position: absolute;
    z-index: 1;
    top: 22px;
    left: -34px;
    width: 150px;
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
    background-color: #f2f0f0;
    overflow: hidden;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
}

.seo_block {width: 702px;margin-top: 100px;}
.seo_block label {font-family: Myriad Pro;font-size: 20px;color:#959595;margin-bottom: 5px;}
.seo_block textarea {width: 682px;font-family: Myriad Pro;color:#383838;font-size: 32px;padding: 10px;margin-bottom: 10px;}
.seo_block .buttons a {display: inline-block;vertical-align: top;font-size: 18px;padding: 0px 15px;height: 33px;font-weight: normal;line-height: 1.7em;margin-right: 10px;}
.seo_block .buttons a:hover {text-decoration: none;color:#3C3C3C;}
.seo_block .buttons a.green_submit {padding: 0px 20px;}
.seo_block .buttons a.green_submit:hover {color:#FFFFFF;}
.seo_block .buttons img {display: inline-block;}

.seo_block .no_keys {text-align: center;font-size: 18px;}
