/* Gotta have rock and roll update 11.10.2022 */

*{
	margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Neon 80s';
    src: url('../fonts/Neon80s.eot');
    src: url('../fonts/Neon80s.eot?#iefix') format('embedded-opentype'), url('../fonts/Neon80s.woff2') format('woff2'), url('../fonts/Neon80s.woff') format('woff'), url('../fonts/Neon80s.ttf') format('truetype'), url('../fonts/Neon80s.svg#Neon80s') format('svg');
    font-weight: normal;
    font-style: normal;
}

.default #PageBase{
    padding: 0px!important;
}

#PageBase {
    padding: 4rem 1.5rem;
    position: relative;
    max-width: 100%;
}

#PageBase > table {
    max-width: 1440px;
    margin: 0 auto;
}

h1 {}

select {
    border-color: #ccc;
}

.lightwidget-widget {
    background-color: #fff;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

input[type=submit],
input[type=button],
button, a.btn {
    border-radius: 9px;
    background-color: #0074D1;
    border: 0;
    color: #fff;
    border: 2px solid #0074D1;
    transition: all 0.4s ease;
    outline: none;
    padding: 0.5rem 1rem;
}

input[type=submit]:hover,
input[type=button]:hover,
button:hover,
input[type=submit]:active,
input[type=button]:active,
button:active,
input[type=submit]:focus,
input[type=button]:focus,
button:focus,
a.btn:hover {
    /*box-shadow: 
		0 0 10px #74BCF6,
		inset 0 0 10px #74BCF6;*/
    border: 2px solid #7FEDFC;
    color: #60F760;
    outline: none;
}

a.btn {
	width: 100%;
	font-size: 2rem;
	max-width: 416px;
	padding: 2rem;
	margin-top: 40px;
}

.hp-wrapper {
    background: url(../Image/SiteImages/brick-bg.jpg) repeat center center / 100% fixed #000;
    margin: -4rem -1.5rem;
    padding: 4rem 1.5rem;
}

@media screen and (min-width:768px) {
    .hp-wrapper {
        background: url(../Image/SiteImages/brick-bg.jpg) repeat center center fixed #000;
        padding: 4rem 1.5rem;
    }
}


/*---------------Header---------------*/

.mast-head{
	max-width: 1600px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	margin-right: auto;
	margin-left: auto;
}

.mast-head-left i{
	color: black;
	font-size: 25px;
	margin-right: 20px;
	transition: .2s ease-out;
}

.mast-head-left i:hover{
	color: #0074D1;
}

.mast-head-right{
	display: flex;
	justify-content: space-between;
	width: 665px;
	align-items: center;
}

.mast-head-right a{
	color: black;
	font-size: 20px;
	transition: .2s ease-out;
}

.mast-head-right a:hover{
	color: #0074D1;
	text-decoration: none;
}

.mobile-icons{
	display: none;
}

/***** MOBILE MAST HEADE STYLING *********/

@media only screen and (max-width: 850px){
	.desktop-link{
		display: none;
	}
	
	.mast-head-right{
		width: auto;
	}
	
	.mobile-icons{
		display: block;
	}
	
	.mobile-icons i{
		color: black;
		font-size: 25px;
		margin-right: 20px;
		transition: .2s ease-out;
	}
	
	.mobile-icons i:hover{
		color: #0074D1;
	}
}



/*---------------Search Form---------------*/

header input#searchTextBox {
    border-radius: 25px;
	border-color: black;
	width: 300px;
	height: 30px;
}

header .form-group {
    margin-bottom: 0px;
}

header span.glyphicon.glyphicon-search {
    position: absolute;
    right: 30px;
    top: 0px;
    z-index: 100;
    font-size: 18px;
}

header #SearchBox {
    position: relative;
}

@media only screen and (max-width: 850px){
	header #SearchBox {
		padding: 10px 20px 0px;
	}
	
	.search-mobile-container{
		visibility: hidden;
		opacity: 0;
      	transition: opacity 0.3s ease;
	}
	
	.search-mobile-container.visible {
	  visibility: visible;
      opacity: 1;
    }
	
	header input#searchTextBox {
		width: 100%!important;
	}
	
	header span.glyphicon.glyphicon-search {
		right: 30px!important;
		top: 0px!important;
                font-size: 18px;
	}
	
	.search-mobile-container {
		position: absolute;
		width: 100%;
		left: 0px;
		top: 65px;
		background-color: #0074D1;
		z-index: 100;
	}
}

/*---------------Navigation---------------*/

.navigation{
	width: 100%;
	background-color: black;
}

.navigation-container{
	max-width: 1600px;
	padding: 0px 20px;
	display: flex;
	justify-content: space-around;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
}

.header-logo{
	max-width: 300px;
}

.main-nav ul{
	display: flex;
	list-style-type: none;
	padding: 0px 20px;
	margin-bottom: 0px;
}

.main-nav li, .main-nav a {
	color: white;
	font-size: 20px;
	cursor: pointer;
	white-space: nowrap;
}

.main-nav a:hover{
	text-decoration: none;
	color:  #40A7F9;
}

.main-nav li{
	padding: 0px 10px;
}

.main-nav li ul{
	position: absolute;
	display: none;
	background-color: black;
	border-radius: 5px;
	padding-left: 0px;
	box-shadow: 0px 8px 10px 0px #40A7F9;
        z-index: 2;
}

.main-nav li:hover > ul{
	display: block;
}

.main-nav li ul li{
	padding: 10px;
}

/***********MOBILE NAV STYLE **********/

.mobile-menu{
	border: 2px solid white;
	border-radius: 5px;
	display: none;
}

.mobile-menu a{
	padding: 5px 10px;
	color: white;
	text-decoration: none;
}

.auction-menu{
	display: none;
}

.hide-account-nav{
        display: none;
}

@media only screen and (max-width: 1100px){
	.mobile-menu{
		display: block;
	}
	
	.navigation{
		position: relative;
	}
	
	.main-nav{
		display: block;
                z-index: 10;
	}
	
	.main-nav ul{
		visibility: hidden;
		display: block;
		position: fixed;
		left: 0px;
		top: 187px;
		list-style-type: none;
		padding: 0px 20px;
		margin-bottom: 0px;
		background-color: #0074D1;
		width: 100%;
		height: 100vh;
		transform: translatex(100%);
		transition: .3s ease-in-out;
                overflow-x: hidden;
	}
	
	.main-nav ul.slide{
		visibility: visible;
		transition: .3s ease-in-out;
		transform: translatex(0px);
                display: block;
	}
	
	.main-nav li{
		padding: 10px 10px;
	}

        .main-nav li a{
                font-size: 18px;
        }
	
	.main-nav li ul{
		position: relative;
		display: block;
		background-color: #0074D1;
		border-radius: 5px;
		padding-left: 0px;
		padding-bottom: 0px;
		box-shadow: none;
		top: 0px;
		height: auto;
	}
	
	#hide-auction{
		display: none;
	}
	
	.auction-menu{
		display: block;
		text-transform: uppercase;
	}
	
	.main-nav li ul li{
		text-transform: uppercase;
		padding: 20px 0px;
	}

        .hide-account-nav{
                display: block;
        }
}

/*---------------slider

.slider {
    text-align: center;
    color: #fff;
    padding-bottom: 4rem;
}

.slider a, .slider a:hover {
	color: #fff;
	text-decoration: none;
}

.slider.banner .btn {
    color: #fff;
    font-size: 2rem;
    background-color: #0074D1;
    border-radius: 9px;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

.slider-control-next-icon,
.slider-control-prev-icon {
    background-color: #0074D1;
    height: 50px;
    width: 20px;
    background-size: 15px;
}

.slider-indicators .active {
    background-color: rgba(119, 169, 208, 1);
}

.slider-indicators > li {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: rgba(119, 169, 208, 0.5);
}

@media screen and (max-width:768px) {
    .slider-control-next,
    .slider-control-prev {
        width: 6%;
    }
}

@media screen and (min-width:768px) {
    .slider-control-next-icon,
    .slider-control-prev-icon {
        background-color: #0074D1;
        height: 100px;
        width: 50px;
        background-size: 30px;
    }
}

---->

/*---------------Content---------------*/

#PageBase > div {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.neon {
    border-radius: 17px;
    border: 4px solid #FF0B0B;
    box-shadow: 0 0 50px #FF0B0B, inset 0 0 50px #FF0B0B;
    padding: 1.5rem;
    text-align: center;
    padding-top: 2rem;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

.neon h1,
.neon h3 {
    text-align: center;
    color: #7FEDFC;
    text-shadow: 0px 0px 30px #74BCF6;
    text-transform: uppercase;
    font-family: 'Neon 80s', sans-serif;
    margin-bottom: 0;
}

.red-neon {
    text-align: center;
    color: #F80004 !important;
    text-shadow: 0px 0px 20px #FF0000 !important;
    text-transform: uppercase !important;
    font-family: 'Neon 80s', sans-serif !important;
}

.purple-neon {
    text-align: center;
    color: #B227FF !important;
    text-shadow: 0px 0px 20px #B227FF !important;
    text-transform: uppercase;
    font-family: 'Neon 80s', sans-serif;
}

.glow-box {
    background-color: rgba(9, 21, 40, .6);
    border-radius: 17px;
    border: 4px solid #7FEDFC;
    box-shadow: 0 0 50px #74BCF6, inset 0 0 50px #74BCF6;
    padding: 1.5rem;
    text-align: center;
}

.glow-box hr {
    background-color: rgba(9, 21, 40, .6);
    height: 8px;
    border-radius: 3px;
    box-shadow: 0 0 50px #7FEDFC, inset 0 0 50px #7FEDFC;
    margin: 20px 0;
}

.glow-box-green hr{
    background-color: #60f760;
	opacity: 1.25;
    height: 8px;
    border-radius: 3px;
    box-shadow: 0 0 50px #60f760, inset 0 0 50px #60f760;
    margin: 20px 0;
}


.glow-box h2,
h2.glow {
    text-align: center;
    color: #7FEDFC;
    text-shadow: 0px 0px 30px #74BCF6;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-transform: uppercase;
    font-family: 'Neon 80s', sans-serif;
}

.glow-box h4,
h4.glow {
    text-align: center;
    color: #60F760;
    text-shadow: 0px 0px 30px rgba(253, 255, 0, 1);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'Neon 80s', sans-serif;
}

.glow-box h3 {
    text-align: center;
    color: #fff;
    margin: 1rem 0 1.5rem 0;
    font-size: 1.5rem;
}

.glow-box p {
    color: #fff;
    text-align: center;
}

.glow-box a {
    cursor: pointer;
}

.consign {
    border-radius: 17px;
    background-color: #6feafd;
    box-shadow: 4px 5px 6px 3px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.consign h3 {
    background-color: rgba(9, 21, 40, 0.7);
    color: #60f760;
    text-shadow: 0 0 6px #feff00;
    font-family: 'Neon 80s', sans-serif;
	font-size: 14px;
    letter-spacing: .06em;
    text-align: left;
    padding: 3rem 2rem;
    margin: 0 -1.5rem -1.5rem -1.5rem;
    text-transform: uppercase;
    text-align: center;
    transition: background 0.4s ease, color 0.4s ease;
}

.consign a,
.consign h3:hover {
    text-decoration: none;
    color: #BAF3BA;
    background-color: rgba(9, 21, 40, 1);
}

.twitter-feed {
    border-radius: 17px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem;
}

body.rules #maincontent{
    max-width: 1500px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

body.aboutus #AboutUsContent,
body.adduser #AddUserContent,
body.emailsignup #EmailSignupContent {
    max-width: 1400px;
    margin: 0 auto;
}

body.viewuserdefinedpage #ViewUserDefinedPageContent {
    max-width: 1200px;
    margin: 0 auto;
}

#EmailSignupContent #EmailTB {
    margin: 0 0 1.5rem 0;
}

#SearchGrid td {
    padding: 0.5rem 1rem;
    border: 0;
}

#SearchGrid tr:nth-child(even) td {
    background-color: #eee;
}

#SearchGrid tr.color_c {
    background-color: #000;
}

#SearchGrid tr.color_c a {
    color: #fff;
}

.Estimate h6 {
    font-size: 1.3rem;
}

#LotDetailContent {}

.CategoryBreadcrumbLink {
    font-size: 1.5rem;
}

.glow-box .media img {
	width: 100px;
	height: auto;
}

.glow-box .media-body p {
	text-align: left;
}

@media only screen and (max-width: 610px){
        #homepage-contact-text{
           font-size:25px !important;
}
}

/***********HOMEPAGE STYLES ************/

.slick-slide {
    /*float: left;*/
    height: auto!important;
    min-height: 1px;
    display: none;
    margin: 0px!important;
}

.slick-dots{
position: relative!important;
margin-bottom: -40px!important;
}

.current-auction{
	width: 100%;
	padding: 0px 20px;
	text-align: center;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}

.current-auction h1{
	font-size: 40px;
	color: #0074D1;
}

.current-auction p{
	font-size: 20px;
	color: black;
	margin-top: 10px;
}

.upcoming-auction {
    max-width: 1600px;
    padding: 0px 20px;
    margin-right: auto;
    margin-left: auto;
}

.upcoming-featured {
    text-align: center;
	padding: 40px 20px;
}

.upcoming-img {
    /*background-color: #dfdfdf;*/
    padding: 20px;
    border-radius: 5px;
}

.upcoming-img img{
	height: 300px;
	width: 100%;
	object-fit: contain;
}

.upcoming-title {
    margin-top: 10px;
}

.upcoming-title a {
    font-size: 18px;
    text-decoration: none;
    color: #535353;
}

.catalog-btn{
	width: auto;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
        margin-top: 50px;
}

.catalog-btn a{
	background-color: #0074D1;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	transition: .3s ease-in-out;
        font-size: 20px;
}

.catalog-btn a:hover{
	box-shadow: 0px 0px 4px 2px #40A7F9;
	transition: .3s ease-in-out;
}

.consign-section{
	background-image: url("/UserFiles/Image/consign-with-us.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 50px;	
}

.consign-container{
	padding: 60px 20px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.consign-section h1{
	color: white;
	font-size: 40px;
}

.consign-container ul {
    margin-top: 25px;
    color: white;
    font-weight: bold;
}

.consign-contact{
	margin-top: 35px;
}

.consign-contact i{
	display: block;
	color: white;
	margin-top: 20px;
}

.consign-contact span{
	margin-left: 15px;
	font-weight: bold;
}

.consign-btn{
	margin-top: 40px;
}

.consign-btn a {
    background-color: #0074D1;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.consign-btn a:hover{
	box-shadow: 0px 0px 4px 2px #40A7F9;
	transition: .3s ease-in-out;
}

@media only screen and (max-width: 1140px){
		.consign-section{
		background-position: right -320px center!important;
	}
}

@media only screen and (max-width: 767px){
                .consign-container{
                   background-color: #00000052;
                }

                .consign-sold-container{
                    padding: 0px 20px;
                }
}

@media only screen and (max-width: 650px){	
	.consign-container h1{
		font-size: 30px;
	}

        .consign-sold-title {
                height: auto!important;
        }

        .consign-sold-text {
	   margin-left: 0px!important;
           text-align: center;
        }
}

.consign-sold{
	margin-top: 50px;
	padding: 0px 20px!important;
}

.consign-sold-container {
    display: flex!important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.consign-image img {
    width: 300px;
    object-fit: scale-down;
    height: 300px;
}

.consign-sold-text {
	max-width: 385px;
	margin-left: 20px;
}

.consign-sold-title {
    height: 150px;
    font-size: 20px;
    margin-top: 10px;
}

.Consign-sold-price {
    text-align: center;
    border: 2px solid #0074D1;
    padding: 10px 0px;
    border-radius: 5px;
	color: #0074D1;
}

.sold-price {
    font-size: 25px;
    font-weight: bold;
}

.news-section{
		max-width: 1400px;
		padding: 0px 20px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		align-items: center;
	}
	
	.news-container-left{
		max-width: 50%;
	}
	
	.news-container-right{
		max-width: 28%;
	}
	
	.news-article{
		position: relative;
		padding: 40px;
	}
	
	.read-more-btn a {
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -45px;
		margin-top: 40px;
		background-color: black;
		padding: 10px 15px;
		border-radius: 25px;
		color: white;
		text-decoration: none;
		opacity: 0;
		transition: .3s ease-in-out;
	}
	
	.news-article:hover > .read-more-btn a{
		opacity: 1;
	}
	
	.more-news{
		width: auto;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
        margin-top: 50px;
	}
	
	.more-news a{
		background-color: #0074D1;
		padding: 10px 20px;
		color: white;
		text-decoration: none;
		border-radius: 5px;
		transition: .3s ease-in-out;
        font-size: 20px;
	}
	
	.more-news a:hover{
		box-shadow: 0px 0px 4px 2px #40A7F9;
		transition: .3s ease-in-out;
	}

@media only screen and (max-width: 1000px){
    .news-container-left, .news-container-right{
        max-width: 100%;
}
}

.bottom-section{
	width: 100%;
	background-color: #f8f8f8; 
}


.bottom-container {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    align-items: center;
}

.calendar-container {
    max-width: 500px;
    border: 2px solid #0074D1;
	border-radius: 5px;
	background-color: white;
}

.calendar-header {
    font-size: 30px;
    font-weight: bold;
    max-width: 520px;
    text-align: center;
    background-color: #0074D1;
    color: white;
    padding: 20px 0px;
	border-radius: 1px 1px 0px 0px;
}

.calendar-dates {
    margin: 20px;
    text-align: center;
}

.calendar-dates p {
    margin-top: 20px;
}

.calendar-footer {
    text-align: center;
    font-size: 18px;
    margin: 10px 20px;
    border-top: 1px solid black;
    padding-top: 10px;
}

.homepage-email-signup {
    max-width: 620px;
	padding: 40px;
}

.homepage-email-signup h2{
	font-size: 30px;
}

.homepage-email-signup p {
    font-size: 18px;
	margin-top: 10px;
}

.homepage-email-signup input {
    width: 100%;
    height: 40px;
    margin-top: 20px;
}

.homepage-email-signup .g-recaptcha {
    float: left;
}

.homepage-email-signup button {
    margin-left: 20px;
	background-color: #0074D1;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
	font-size: 20px;
	border: none;
}

.homepage-email-signup button:hover{
	box-shadow: 0px 0px 4px 2px #40A7F9;
	transition: .3s ease-in-out;
	border: none;
}

@media only screen and (max-width:1260px){
	.bottom-container{
		justify-content: center!important;
	}
}


/*---------------Buttons---------------*/

.btn-neon {
    font-size: 1.8rem;
    border-radius: 9px;
    border: 3px solid #7FEDFC;
    box-shadow: 0 0 20px #74BCF6, inset 0 0 20px #74BCF6;
    padding: .55rem 2.5rem;
    color: #60F760;
    text-shadow: 0px 0px 30px rgba(253, 255, 0, 1);
    font-family: 'Neon 80s', sans-serif;
    letter-spacing: .06em;
}

.btn-neon:hover,
.btn-neon:active,
.btn-neon:focus {
    color: #A0F5A0;
    text-shadow: 0px 0px 30px rgba(253, 255, 0, 1);
    border: 3px solid #fff;
    box-shadow: 0 0 20px #7FEDFC, inset 0 0 20px #7FEDFC;
}

#searchResetButton {
    border: 0;
    background-color: transparent;
    color: #0074D1;
    text-decoration: underline;
}

#searchResetButton:hover {
    border: 0;
    background-color: transparent;
    color: #0074D1;
    text-decoration: underline;
    box-shadow: none;
}

.LotDetailButtons {
    margin-top: 30px;
} 
@media screen and (min-width: 2560px) {
    .LotDetailButtons {
        margin-top: 100px;
    }
}
/*---------------Alerts---------------*/

#messagePanel,
#BannedUserDiv {
    background-color: #60F760;
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 6px;
    padding: 0;
}

#messagePanel h3,
#BannedUserDiv {
    margin-bottom: 0;
    text-align: center;
    padding: 1rem;
    font-size: 1.8rem;
}

#messagePanel h3 {
    padding: 10px;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 700;
}


/*---------------Catalog---------------*/

#CatalogContent {
    padding: 0;
}

#selectAuctionContent select {
	background-color: #fff;
}

h3#selectAuctionTop {
	color: #fff;
}

#searchContent h5 {
    display: none;
}

#category #categoryTop,
#searchTop,
#searchContent h5,
h3#categoryTop {
    color: #60F760;
    text-shadow: 0px 0px 30px rgba(253, 255, 0, 1);
    font-size: 2rem;
    text-transform: uppercase;
    font-family: 'Neon 80s', sans-serif;
}

#categoryView table {
    width: 100%;
}

#categoryView > table td:first-child a {
    background-color: #797979;
}

#categoryView a {
    font-size: 1.6rem;
    text-decoration: none;
}

#categoryView > div a {
    display: block;
    padding: .8rem 1.5rem;
    border-bottom: 1px solid #ccc;
    font-size: 1.1rem;
}

.categoryView_4 a {
    color: #fff !important;
}

#categoryView > table td:first-child a:before {
    content: "—";
    color: #000;
    display: inline;
}

#categoryView table:first-child td:first-child img {
    display: none;
}

#categoryViewn0Nodes table tr td:first-child,
#categoryViewn0Nodes table tr td:first-child + td,
#categoryViewn0Nodes > div table tr td:nth-child(3) {
    display: none;
}

#categoryViewn0Nodes > div table tr td a {
	padding-left: 3rem;
}

#categoryView > div td {
    display: block;
}

#catalogAuctionLabel h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

#displayByTop,
#storedisplayByTop {
    border-bottom: 1px solid #0074D1;
    border-top: 0;
    padding: 10px;
    color: #000;
}

#displayByBot,
#storedisplayByBot {
    border-top: 1px solid #0074D1;
    border-bottom: 0;
    padding: 10px;
}

#displayByTop h2,
#storedisplayByTop h2,
#displayByBot h2,
#storedisplayByBot h2 {
    font-size: 1rem;
    font-weight: normal;
    display: inline;
    color: #000;
}

#displaybypagingtop h2,
#displaybypagingbot h2 {
    display: none;
}

#backAllButtonTop,
#backButtonTop,
#PageJumpBtn,
#forwardButtonTop,
#forwardAllButtonTop,
#backAllButtonBot,
#backButtonBot,
#PageJumpBotBtn,
#forwardButtonBot,
#forwardAllButtonBot {
    color: transparent;
    padding: 5px;
    border: none;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    background-color: transparent;
}

#displaybypagingtop h2#ofpages,
#displaybypagingbot h2#ofpagesbot {
    display: inline-block;
    margin: 0;
}

#displaybypagingtop input#CurrPageTopTB,
#displaybypagingbot input#CurrPageBotTB {
    border: 1px solid #666;
    color: #333;
    font-weight: bold;
    font-size: 11px;
    padding: 2px;
    outline: none;
    margin: 0 5px 0 5px;
    height: 2rem;
    text-align: center;
}

#PageJumpBtn,
#PageJumpBotBtn {
    background-color: #eee;
    border: 1px solid #000;
    height: 2rem;
    vertical-align: middle;
    padding: 2px 5px;
    margin: -1px 5px 0 5px;
    color: #000000;
}

#linkForClosedAuctionsContainer a {
    color: #fff !important;
    margin-bottom: 2rem;
    display: block;
}

#galleryList {
    padding-top: 5rem;
}

#galleryList ul {
    list-style-type: none;
    padding: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    width: 100%;
}

#galleryList ul li {
    width: calc(50% - 3rem);
    text-align: center;
    padding: 1rem;
    border: 1px solid #ccc;
    transition: all .2s ease-in-out;
    border-radius: 17px;
    border: 1px solid #0074D1;
    box-shadow: none;
}

#galleryList ul li:hover {
    text-align: center;
    padding: 1rem;
    border: 1px solid rgb(127, 237, 252);
    border-radius: 17px;
    transform: scale(1.01);
    transition: all .2s ease-in-out;
    box-shadow: 0 0 10px #74BCF6, inset 0 0 10px #74BCF6;
}

#LotLabel,
#LotNumber,
#LotNumberColon {
    font-size: 1.8rem;
    color: #7e868c;
    text-transform: uppercase;
}

.lotInner h5,
.lotInnerMouseOver h5 {
    color: #000;
    font-size: 14px;
    order: 2;
    height: auto;
    border-top: 1px solid #0074D1;
    padding: 1rem;
    margin: 0 -1rem;
    text-align: center;
    height: auto;
}

#LotName,
.lotInnerMouseOver #LotName{
    height: 110px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* ellipsis
#LotName,
.lotInnerMouseOver #LotName {
    height: 92px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
*/

.lotData h6,
.LotData h6,
.LotData div,
.LiveAuctionUCLCurrentBidDiv,
.LiveAuctionUCLNumBidsDiv {
    color: #939598;
}

.lotInner a,
.lotInnerMouseOver a,
span.LotName a {
    font-weight: 400;
}

input#WatchBtn {
    margin: 0;
}

#leftColumn,
#leftcolumn,
#leftColumn a,
#leftcolumn a {
    color: #000;
}

@media screen and (min-width: 768px) {
    #leftColumn,
    #leftcolumn {
        width: 30%;
    }
    #mainPanel {
        width: 70%;
        padding-left: 2rem;
    }
    #displayByTop select,
    #storedisplayByTop select,
    #displayByBot select,
    #storedisplayByBot select {
        height: auto;
    }
    #leftColumn,
    #leftcolumn {
        padding: 2rem 3rem 2rem 3rem;
        background-color: #333;
        margin: -4rem 0 -4rem -1.5rem;
    }
    #categoryView > div a {
        border-bottom: 1px solid #575757;
    }
    #categoryView a {
        color:white;
    }
}

@media screen and (min-width: 992px) {
    #leftColumn,
    #leftcolumn {
        width: 25%;
    }
    #mainPanel {
        width: 75%;
    }
    #galleryList ul li {
        width: calc(33.33333% - 3rem);
    }
}

@media screen and (min-width: 1200px) {
    #leftColumn,
    #leftcolumn {
        width: 20%;
    }
    #mainPanel {
        width: 80%;
    }
    #galleryList ul li {
        width: calc(25% - 3rem)
    }
}


/*---------------Lot Detail---------------*/

.LotDetail #PageBase {
    max-width: 1440px;
    padding-top: 0;
}


/*inserted from theme.js*/
.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#TableBreadcrumbs tr {
    display: none;
}

#TableBreadcrumbs tr:first-child {
    display: block;
}

#ReturnToSearchResults {
    display: inline-block;
}

#ReturnToSearchResults a {
    font-size: 1.4rem;
    text-decoration: none;
    padding: 8px;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
    background-color: #ccc;
    color: #0056b3;
}

#ReturnToSearchResults a:hover {
    opacity: 0.5;
}

#EmailAFriendDiv a,
#AskAQuestionDiv a,
#IHaveOneToSellDiv a,
#ItemDetailEmailAFriendDiv a,
#ItemDetailAskAQuestionDiv a,
#ItemDetailIHaveOneToSellDiv a {
    border-radius: 4px;
    color: white;
    border-color: #0056b3;
    background-color: #0056b3;
}

#EmailAFriendDiv a:hover,
#AskAQuestionDiv a:hover,
#ItemDetailAskAQuestionDiv a:hover,
#IHaveOneToSellDiv a:hover,
#ItemDetailEmailAFriendDiv a:hover,
#ItemDetailIHaveOneToSellDiv a:hover {
    background-color: white;
    color: #0056b3;
}

#ClosedItem {
    background: #1D9BCE;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
    padding: 5px 0px 5px 0px;
    margin-bottom: 2rem;
}

#FooterTable {
    max-width: 600px;
}


/*
#ImagesSection div:nth-child(3) a {
	position: relative;
	height: 100px;
}

#ImagesSection div:nth-child(3) img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
*/

#ImagesSection div:nth-child(3) img {
	max-width: 100px;
	max-height: 100px;
	height: 100px;
	object-fit: contain;
}

#BiddingSummaryTable tr td:empty {
	display: table-cell;
}

body.consignwithus #PageBase {
    max-width: 1500px;
    margin: 0 auto;
}

.consignwithus_title {
    display: none;
}

body.contactus2 #PageBase {
    max-width: 1500px;
    margin: 0 auto;
}

        .direct-line-container {
            margin-bottom:30px!important;
       }

@media screen and (min-width: 768px) {
    #Breadcrumbs {
        grid-column-start: 2;
    }
    #NavigationControlsTop {
        grid-column-start: 2;
    }
    #TableBreadcrumbs {
        /*position: absolute;*/
    }
    #ImagesSection {
        grid-row-start: 3;
		margin-top: -80px;
    }
	
	
	#ContactUsExtraDiv2 {
		grid-column: 1;
		max-width: none;
		width: 100%;
	}

        #ContactUsContent {
            display: grid;
            grid-template-columns: 50% 50%;
            max-width: 1400px;
        }

        .direct-line-container {
            grid-column-start: 1;
            grid-row-start: 1;
            grid-row-end: 11;
       }
}


/*---------------Footer---------------*/

.site-footer {
    color: #51698e;
    background-color: #fff;
    padding: 3.6rem 0 1.9rem 0;
    font-size: 1.3rem;
    border-top: 1px solid #0074d1;
}

.site-footer a {
    color: #51698e;
    font-size: 1.6rem;
}

.site-footer li {
    padding-bottom: 1rem;
}

.footer-base {
    border-top: 1px solid #0074d1;
    padding-top: 2rem;
    margin-top: 2rem;
}

@media screen and (min-width:768px) {
    .footer-base,
    .info {
        text-align: right;
    }
}

body.viewuserdefinedpage img {
    max-width: 100%;
    height: auto;
}

.carousel-inner {
    text-align: center;
}

/*

.hero-slider img {
	width: 100%;
}

.slider-inner, .hero-slider {
    max-width: 1500px;
    margin: 3rem auto;
}

.slider-item {
    margin: 0 auto;
}

.slider-image {
    height: 200px;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.slider-image.sold {
	position: relative;
}

.slider-image.sold::after {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	display: block;
	background: url(../Image/sold_logo.png) no-repeat center center / contain transparent;
	width: 75px;
	height: 59px;
}


/*.slick-slide {
    float: left;
}
*/
.slick-slide .slider-image img {
    max-height: 100%;
    max-width: 100%;
    width: auto !important;
    height: auto;
    vertical-align: middle;
    margin: 0 auto;
}

.slider-item p {
}

/*

/**** ABOUT US PAGE ****/

	.meet-the-team{
		max-width: 1600px;
		margin-top: 50px;

	}

        .meet-the-team h1 {
                font-weight: bold;
        }
	
	.team-flex-box {
		display: flex;
		justify-content: normal;
		flex-wrap: wrap;
	}
	
	.member-container{
		width: 200px;
		margin: 20px;
	}
	
	.member-img {
		width: 200px;
		height: 200px;
		overflow: hidden;
        }

        .consign-sell {
                margin-top: 50px;
         }