/* LOGIN */
.quick-login{
	width: 100%;
	background: #fff;
	background: #FCF8E3;
	padding: 20px 0;
	-webkit-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -khtml-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
}
.quick-login input,
.quick-login button{
	margin: 5px 0;
}
/* AUCTION */
.auction-page .img{
    height: 300px;
    background: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    object-fit: none;
    -webkit-object-fit: none;
    -moz-object-fit: none;
    -o-object-fit: none;
    -ms-object-fit: none;
    object-position: center;
    -webkit-object-position: center;
    -moz-object-position: center;
    -o-object-position: center;
    -ms-object-position: center;
}
.auction-page .img:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.auction-page .img img {
    cursor: pointer;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
    opacity: 1;
}
.auction-page .img img:hover{
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transition: all 0.65s;
    -webkit-transition: all 0.65s;
    -moz-transition: all 0.65s;
    -o-transition: all 0.65s;
    -ms-transition: all 0.65s;
}
.auction-page h2,
.auction-page h3,
.auction-page h4{
	margin: 0;
	padding: 0;
}
.auction-page p{
	margin: 20px 0;
	font-size: 14px;
}
.auction-page p.price span{
	color: red;
	font-size: 25px;
}
.auction-page p.city span{
	font-size: 25px;
}
.auction-page .submit-bid input[type='text']{
	font-size: 25px;
	background: #09f;
	color: #fff;
	padding: 20px;
}
.auction-page .submit-bid button{
	margin-top: 3px;
}








