@charset "UTF-8";

html, body {
 height: 100%;
 margin: 0px;
 scroll-behavior: smooth;
}

/*.row::after {
  content: "";
  clear: both;
  display: table;
}*/

.wrapper{
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 flex-wrap: wrap;
 background-color: white;
 position: relative;
 overflow: hidden;
 z-index: 1;
 min-height: 90vh
}

.listings-container{
 min-height: calc(100vh - (var(--headerHeight) + var(--top-container-height)));
 /*text-align: center;*/
 position: relative;
 overflow: hidden;
}
.page-center {
  margin: 10% auto;
  padding: 0px 50px;
}
#listings-spinner {
 font-size: 70px;
 color: var(--logoBlue);
 position: absolute;
 top: calc(50vh - (var(--headerHeight) + var(--top-container-height)));
}

#spinner-back {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 background-color: white;
 min-height: calc(100vh - (var(--headerHeight) + var(--top-container-height)));
 height: 100%;
 /*text-align: center;*/
 padding: 0px 40%;
 opacity: 0.8;
 z-index: 1;
}

#lower-header {
 width: 100%;
 height: var(--headerHeight);
}

.header {
 width: 100%;
 height: var(--headerHeight);
 position: fixed;
 top: 0;
 /*left: 0;*/
 background-color: white;
 z-index: 999;
 /*padding: 25px 0 14px 0;*/
 box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
 padding-left: 15px;
 padding-right: 15px;
 display: flex;
 max-width: 3000px;
 margin: 0 auto;
}

.header .left-side {
 flex: 4;
 display: inline-flex;
 height: var(--headerHeight);
 justify-content: end;
 justify-content: start;
 max-width: 40%;
 padding-left: 2rem;
}
.header .middle-side {
 flex: 1;
 display: inline-block;
 height: var(--headerHeight);
}
.header .right-side {
 flex: 3;
 display: inline-flex;
 justify-content: end;
 height: var(--headerHeight);
}
.vcc{
 display: flex;
 align-items: center;
}
.btn {
  padding: 3px 10px;
  -webkit-appearance: none;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border-radius: 0.3rem;
  font-size: 1.1rem;
  line-height: 2.25rem;
  text-decoration: none;
  letter-spacing: 0.2px;
  font-weight: 600;
}
.blue-btn {
  color: #fff;
  display: inline-flex;
  -webkit-text-shadow: 0 1px 4px rgba(0,0,0,.9);
  -moz-text-shadow: 0 1px 4px rgba(0,0,0,.9);
  -ms-text-shadow: 0 1px 4px rgba(0,0,0,.9);
  -o-text-shadow: 0 1px 4px rgba(0,0,0,.9);
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
  cursor: pointer;
  cursor: pointer;
  /*background: -webkit-linear-gradient(legacy-direction(270deg),dodgerblue 35%,#0073e6 100%);*/
  background: #0073e6;
  background: linear-gradient(270deg, dodgerblue 35%, #0073e6 100%);
  -webkit-box-shadow: 0 6px 9px 0 rgba(0,0,0,.17);
  -moz-box-shadow: 0 6px 9px 0 rgba(0,0,0,.17);
  -ms-box-shadow: 0 6px 9px 0 rgba(0,0,0,.17);
  -o-box-shadow: 0 6px 9px 0 rgba(0,0,0,.17);
  box-shadow: 0 6px 9px 0 rgba(0,0,0,.17);
  border: 1px solid var(--logoBlue);

}
.blue-btn:hover {
  background: #0080ff;
}
.signup{
  background-color: transparent;
  border: 1px solid var(--logoBlue);
  color: var(--logoBlue);
  margin-left: 1rem;
}
.signin{
  background-color: var(--logoBlue);
  border: 1px solid var(--logoBlue);
  color: white;
  margin-left: auto;
}
.signin:hover {
  background-color: dodgerblue;
  color: white;
}
.signup:hover {
  background: dodgerblue;
  color: white;
}
#logo img {
 max-width: 100%;
 margin-top: 1px;
 max-height: calc(var(--headerHeight)/1.6);
}

.footer-logo {
 display: block;
 text-align: center;
 transform: translate3d(0,0,0);
 max-width: 13.5vw; 
 max-height: 6vh;
}

@media(min-width: 401px){
  .footer-logo { max-width: 35vw;}
}
@media(max-width: 400px){
  .footer-logo {
   max-height: 43px;
   max-width: 172px;
  }
}

.flex-1 {
 flex: 1;
}

.listing-row {
 position: relative;
 margin: 8px 16px 24px 16px;
 -moz-box-sizing: border-box;
}

.listing-row .main-img {
 width: 100%;
 display: block;
 object-fit: cover;
 border-radius: 8px 8px 0 0;
 border: 1px solid transparent;
 background-image: url("/static/images/sample-mini-blured.jpg");
 background-repeat: no-repeat;
 background-size: cover;
}
@media(max-width: 767px){
  .listing-row .main-img {  min-height: 24vh; }
}
@media(min-width: 768px){
  .listing-row .main-img {  min-height: 32vh; }
}
@media(min-width: 1080px){
  .listing-row .main-img {  min-height: 45vh; }
}
@media(min-width: 2048px){
  .listing-row .main-img {  min-height: 52vh; }
}
.main-img-slide-left{
    animation:main_img_slide_left 0.5s;
}
@keyframes main_img_slide_left{
    from{
        opacity:0;
        transform:translateX(400px)
    }
    to{
        opacity:1;
        transform:translateX(0px)
    }
}

.fade-in{
    animation:fade_in 0.5s
}
@keyframes fade_in{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

.listing-row .address{
 /*height: 90px;*/
 padding: 2%;
 background: linear-gradient(to top, #ECF0EE, #f2f2f2);
 background-color: var(--mylightgray)_; /* #f2f2f2; */
 color: var(--royal-navy-light2);
 /*font-size: 1.2rem;*/
 display: flex;
 align-items: center;
 justify-content: space-between;
 border-radius: 0 0 8px 8px;
 padding-left: 2.8%;
 position: relative;
}

.listing-row .details {
  position: absolute;
  right: 10px;
}
.listing-row .details span{
  padding-left: 10px;
}
.listing-row .details i{
  padding-left: 5px;
}



.listing-row .register-to-bid {
 font-family: "Poppins-Semibold";
 background: linear-gradient(to right,#1e2e49, #243b55);  /* #141e30 */
 display: inline-block;
 color: #ffffff;
 position: absolute;
 right: 5%;
 bottom: 20%;
 padding: 1.6% 3%;
 /*font-weight:lighter;*/
 font-size: 1.2rem;
 line-height: 1.2;
 letter-spacing: 1.4px;
 border-radius: 7px;
 cursor: pointer;
 padding: 1.6% 3%;

 display: flex;
 align-items: center;
 justify-content: space-between;
 /*border: 1px solid rgba(155, 155, 155, 0.7);*/
}

.listing-row .register-to-bid:hover {
 background: linear-gradient(to right,#1e2e49, #1e2e49);
}

.listing-row .la-star {
/* font-family: "Line Awesome Free";
 content: "\f005";
 font-weight: 400;*/
 font-size: 1.8em;
 color: #eee;
 position: absolute;
 top: 5px;
 right: 5px;
 padding: 1%;
 cursor: pointer;
}
.listing-row .la-star:hover {
  color: var(--selectedOrange);
}
.selected-star:before {
 /*content: "\f005";*/
 font-weight: 900;
 color: var(--selectedOrange);
}

.listing-row .agent-logo-wrapper {
  position: absolute;
  bottom: 14%;
  left: 4%;
  padding: 0px 5px;
  height: 30px;
}
.listing-row .agent-logo {
  height: 100%;
}

.listing-row .auction-date {
 background-color: rgba(236, 240, 238,0.7);
 color: var(--royal-navy-light2);
 position: absolute;
 top: 4%;
 padding: 0.7%;
 font-size: 1.4rem;
 border-radius: 0 6px 6px 0;
 font-weight: bold;
}

.listing-row .auction-date:before {
 font-family: "Line Awesome Free";
 font-weight: 900;
 font-size: 1.3em;
 content: "\f0e3"; /* gavel hammer */
 padding-left: 10px;
 color: var(--royal-navy-dark);
 display: inline-block;
 transform: scaleX(-1);
 -moz-transform: scaleX(-1);
 -o-transform: scaleX(-1);
 -webkit-transform: scaleX(-1);
}


/*.row-divider {
 margin-top: 18px;
 margin-bottom: 10px;
}
.row-divider-line {
 border-bottom-width: var(--border-rule-border-width, 1px) !important;
 border-bottom-color: var(--color-divider, #EBEBEB) !important;
 border-bottom: 1px solid rgb(235, 235, 235) !important;
}*/
#line1 { width:100%; height:1px; background: red; position: fixed; top: 10%; z-index: 999; }
#line2 { width:100%; height:1px; background: red;position: fixed; top: 25%; z-index: 999; }
#line3 { width:100%; height:1px; background: red;position: fixed; top: 75%; z-index: 999; }
#line4 { width:100%; height:1px; background: red;position: fixed; top: 90%; z-index: 999; }

.top-container {
 /*height: var(--top-container-height);*/
}

#map-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /*margin-top: auto;*/
  padding-left: 10px;
  right: 0;
  height: calc(100vh - var(--headerHeight));
}

#map {
 width: 100%;
 height: 100%;
 position: relative;
}
.sticky{
 position: fixed;
 top: var(--headerHeight);
}

.gravity{
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 margin-top: auto;
}

.listing-details {
 display: flex;
}

.listing-details .title{
 flex: 1;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

/*@media (min-width: 600px) and (max-width: 1200px) {*/
/*  html {
    font-size: calc(var(--font-min) + (100vw - var(--mobile)) / var(--screen-diff) * var(--font-diff));
  }*/
/*}*/

@media only screen and (max-width: 284px) {
  .listing-row .main-img { height: 142px; }
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
  /*html { font-size: 2.6vw; }*/
}
@media only screen and (min-width: 285px) and (max-width: 369px) {
  .listing-row .main-img { height: 166px; }
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
}

@media only screen and (min-width: 370) and (max-width: 480px) {
  .listing-row .main-img { height: 222px; }
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
}

@media only screen and (min-width: 481px) and (max-width: 600px) {
  .listing-row .main-img {height: 305px;} /* 600 - 32 / 1.77  */
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
}

@media only screen and (max-width: 600px) {
   #map-container { display: none; }
  .col-sm-1 {width: 8.33%;}
  .col-sm-2 {width: 16.66%;}
  .col-sm-3 {width: 25%;}
  .col-sm-4 {width: 33.33%;}
  .col-sm-5 {width: 41.66%;}
  .col-sm-6 {width: 50%;}
  .col-sm-7 {width: 58.33%;}
  .col-sm-8 {width: 66.66%;}
  .col-sm-9 {width: 75%;}
  .col-sm-10 {width: 83.33%;}
  .col-sm-11 {width: 91.66%;}
  .col-sm-12 {width: 100%;}
   #SortSelectorDiv { width: 100vw; }
  /*html { font-size: 2.5vw; }*/
  .watchlist-page { width: 98vw; }
}

@media only screen and (min-width: 601px) {
  /* For tablets: */
  .col-md-1 {width: 8.33%;}
  .col-md-2 {width: 16.66%;}
  .col-md-3 {width: 25%;}
  .col-md-4 {width: 33.33%;}
  .col-md-5 {width: 41.66%;}
  .col-md-6 {width: 50%;}
  .col-md-7 {width: 58.33%;}
  .col-md-8 {width: 66.66%;}
  .col-md-9 {width: 75%;}
  .col-md-10 {width: 83.33%;}
  .col-md-11 {width: 91.66%;}
  .col-md-12 {width: 100%;}
   #map-container { display: none; }
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
   /*html { font-size: 1.5vw; }*/
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
  .listing-row .main-img {height: 386px;}
   #SortSelectorDiv { width: 100vw; }
   .watchlist-page { width: 98vw; }
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  #map-container { display: block; }
  .listing-row .main-img {height: 205px;}
   #SortSelectorDiv { width: 50vw; }
  .watchlist-page { width: 65vw; }
  /*html { font-size: 1.4vw; }*/
}
@media only screen and (min-width: 768px) and (max-width: 992px){
  .listing-row .main-img {height: 264px;}
}
 /* FULL HD */
@media only screen and (min-width: 993px) and (max-width: 1281px){
  .listing-row .main-img {height: 341px;}
  /*font-size: 16px;*/

}
@media only screen and (min-width: 1282px) and (max-width: 1365px){
  .listing-row .main-img {height: 397px;}
}
@media only screen and (min-width: 1366px) and (max-width: 1764px){
  .listing-row .main-img {height: 469px;}

}
@media only screen and (min-width: 1765px){
  .listing-row .main-img {height: 500px;}
}

/*----------------------------------- */
/* Footer
------------------------------------- */
.mfooter {
    /*position: sticky;
    z-index: 0; */
    position: relative;
    z-index: 1; 
    bottom: 0;
    height: var(--footerHeight);
    padding: 10px;
    background-color: var(--royal-navy-dark);
    color: white
}
.mfooter a{ font-size: 1.3rem;}
@media (max-width: 767px){ .mfooter a{ font-size: 1.7rem;} }

.mfooter li{
  font-size: 1rem;
}
#overall-wrapper {
    padding-bottom: 1px
}

.footer-head {
    background: #0096e8;
    /*height: var(--footer-head-height);*/
    position: sticky;
    bottom: 0;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.footer-head a {
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none
}

.flip-visible {
    font-size: 1.3rem;
    text-align: center;
    color: white;
    cursor: pointer;
    letter-spacing: .5px;
    padding: 5px 10px
}

.shiny {
    background: linear-gradient(90deg, #fff, #fff59d, #fff);
    background-repeat: no-repeat;
    background-size: 20%;
    animation: animate 5s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    background-color: white;
}

@keyframes animate {
    0 {
        background-position: -50%
    }

    100% {
        background-position: 150%
    }
}

.mfooter h4 {
    color: #333;
    font-size: 21px;
    margin-bottom: 25px
}

.footer-content-container {
    margin-right: auto;
    margin-left: auto;
    padding: 30px 15px 0
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center
}

#footer-link-wrapper {
  width: 100%;
}
@media(min-width: 768px){ 
  #footer-link-wrapper{flex: 2;};
  #footer-link-wrapper ul {font-size: 1.2rem;};
}

ul.footer-links {
    margin: 0 0 15px 0;
    padding: 20px 0 0 0;
    width: 50%;
    box-sizing: border-box;
    display: inline-block;
    float: left;
    font-size: 1.6rem;
}

.footer-links li {
    position: relative;
    list-style: none
}

.footer-links li a {
    padding: 0 0 9px 26px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #707070;
    line-height: 21px
}

.footer-links li a:hover {
    padding-left: 22px;
    color: #66676b
}

.footer-links li:before {
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 20px;
    content: "\f105";
    position: absolute;
    left: 0;
    top: -2px;
    padding: 2px 7px 0 0;
    color: #ccc
}


.copyrights {
  color: #707070;
  border-top: 1px solid rgba(0,0,0,0.09);
  text-align: center;
  display: inline-block;
  width: 100%;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.6rem;
}

.mfooter.alt .copyrights {
 margin-top:0;
 border: none;
 padding: 25px;
}

.copyrights a { color: #707070; }

.mfooter .social-icons li a {
    opacity: 0.8;
    transition: opacity 0.35s;
}

.mfooter .social-icons li a:hover { opacity: 1; }

/* ----------------------------------
 Social Icons
-------------------------------------
 Icon Styles */
.twitter:before,
.social-icons li a.twitter i {font-size: 14px ;}
.twitter i, .twitter:before { margin: 13px 0 0 12px;  }
.twitter:before { content: "\54"; top: 0; opacity:1; }
.twitter:hover:before { top: 30px; opacity: 0; }
.twitter:hover { background-color: #3bc1ed !important; }
.twitter:hover,
.social-icons.color  .twitter,
.social-icons.fixed .twitter:hover { background-color: #3bc1ed; border-color: #3bc1ed; }

.facebook i, .facebook:before { margin: 13px 0 0 16px; }
.facebook:before { content: "\66"; top: 0; opacity:1; }
.facebook:hover:before { top: 30px; opacity: 0; }
.facebook:hover { background-color: #4a6d9d !important; }
.social-icons.color .facebook,
.social-icons.fixed .facebook:hover { background-color: #4a6d9d ; border-color: #4a6d9d ;}

.gplus i, .gplus:before { margin: 13px 0 0 13px; }
.gplus:before { content: "\f0d5"; top: 0; opacity:1; }
.gplus:hover:before { top: 30px; opacity: 0; }
.gplus:hover { background-color: #d53824 !important ; }
.social-icons.color .gplus,
.social-icons.fixed .gplus:hover { background-color: #d53824 ;border-color: #d53824 ;}

.instagram i, .instagram:before { margin: 13px 0 0 13px; }
.instagram:before { content: "\f31f"; top: 0; opacity:1; }
.instagram:hover:before { top: 30px; opacity: 0; }
.instagram:hover { background-color: #3f6f94  !important; }
.social-icons.color .instagram,
.social-icons.fixed .instagram:hover { background-color: #3f6f94 ;border-color:#3f6f94  ; }


/* Web Font */

@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Regular.woff");
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url("../fonts/Poppins-SemiBold.woff");
}

@font-face {
  font-family: 'fontello';
  src: url('../fonts/fontello.eot');
  src: url('../fonts/fontello.eot') format('embedded-opentype'),
    url('../fonts/fontello.woff') format('woff'),
    url('../fonts/fontello.ttf') format('truetype'),
    url('../fonts/fontello.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.social-icons li i {
 font-family: "fontello";
 font-style: normal;
 font-weight: normal;
 speak: never;
 display: inline-block;
 text-decoration: inherit;
 text-align: center;
 font-variant: normal;
 text-transform: none;
 line-height: 16px;
 font-size: 16px;
 width: auto;
}

.icon-twitter:before { content: '\54'; } /* 'T' */
.icon-facebook:before { content: '\66'; } /* 'f' */
.icon-instagram:before { content: '\f31f'; } /* '?' */
.icon-gplus:before { content: '\f0d5'; } /* '+' */

/* Social Icons styles for footer
------------------------------------- */
.mfooter .social-icons li a {
 width: 38px;
 height: 40px;
 background-color: transparent;
}

.social-icons {
  padding-left: 0px;
  min-width: 152px;
}

.mfooter .social-icons li {
 margin: 0;
 padding: 0;
 float: left;
 line-height: 0;
}

.mfooter .social-icons li a:before,
.mfooter .social-icons li a i { font-size: 15px; color: #a0a0a0; }

.mfooter .social-icons li .twitter:before,
.mfooter .social-icons li .twitter i:before,

.mfooter .social-icons li a:hover {
 background: transparent !important;
 border-color: transparent;
}

.mfooter .social-icons li a:hover i {
 color: #66676b;
}
/*--------------------------------*/

.social-icons li {
 display: inline;
 float: left;
 text-align: left;
 margin-right: 16px;
 margin-top: 11px;
 transform:scale(1.19);
 -webkit-transform:scale(1.19);
 -webkit-filter: blur(radius);
}

.social-icons li a {
 width: 44px;
 height: 44px;
 display: inline-block;
 background-color: #f3f3f3;
 -webkit-transition: all 0.3s ease-in-out;
 -moz-transition: all 0.3s ease-in-out;
 -o-transition: all 0.3s ease-in-out;
 -ms-transition: all 0.3s ease-in-out;
 transition: all 0.3s ease-in-out;
 position: relative;
 overflow: hidden;
 border: 1px solid transparent;
}

.social-icons.fixed li a {
 display: block;
}

/* Common Styles */
.social-icons li a i {
 -webkit-transition: all 0.2s ease-in-out;
 -moz-transition: all 0.2s ease-in-out;
 -o-transition: all 0.2s ease-in-out;
 -ms-transition: all 0.2s ease-in-out;
 transition: all 0.2s ease-in-out;
 position: absolute;
 z-index: 20;
 transform:scale(0.9);
 -webkit-transform:scale(0.9);
 -webkit-filter: blur(radius);
}

.social-icons li a:hover,
.social-icons li a i {
 color: #fff;
}

.social-icons li a i {
 top: -30px;
 opacity:0;
}

.social-icons li a:hover i {
 top: 0;
 opacity: 1;
}


/* Rounded Style */
.social-icons.rounded li a { border-radius: 3px; }


/* Border Style */
.social-icons.border li a {
 background-color: #fff;
 border: 1px solid #e0e0e0;
}

.social-icons.border li a:hover {
 border-color: transparent;
}

/* Color Style */
.social-icons.color li a {
 border-color: transparent;
}
.social-icons.color li a i,
.social-icons.color li a:hover i {
 top: 0;
 opacity: 1;
}

.social-icons.color a:before { opacity: 0; }

/* Fixed Style */
.social-icons.fixed {
 position: fixed;
 left: 0;
 padding-left: 2px;
 top: 100px;
 width: 50px;
}

.social-icons.fixed li {
 transform:scale(1.15);
 -webkit-transform:scale(1.15);
 margin-top: 7px;
}

.social-icons.fixed li a { background-color: rgba(51,51,51,0.35); }
.social-icons.fixed li a:before { color: #fff; }

.twitter:before,
.facebook:before,
.instagram:before,
.gplus:before {
 font-family: "fontello";
 font-size: 16px;
 line-height: 16px;
 color: #a0a0a0;
 -webkit-transition: all 0.15s ease-in-out;
 -moz-transition: all 0.15s ease-in-out;
 -o-transition: all 0.15s ease-in-out;
 -ms-transition: all 0.15s ease-in-out;
 transition: all 0.15s ease-in-out;
 position: absolute;
 z-index: 20;
 transform:scale(0.9);
}

.selected {
 border: 1px solid var(--royal-navy-dark);
 border-radius: 8px;
 box-shadow: 5px 7px 18px #888888;
}
/*-----------------------------------------------------------*/
.pagination-wrapper {
 display: flex;
 justify-content: center;  /*center horizontally */
}
.pagination {
  display: flex;
  margin-top: 50px;
  margin-bottom: 70px;
}

.pagination-link {
  color: black;
  float: left;
  width: 40px;
  margin-right: 10px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 0 6px; /* 0 is for top and bottom*/
  padding: 6px 0px 10px 0px; 
  text-align: center;
}

.side-button {
  padding: 6px 13px 10px 13px;
  width: 6rem;
}

.pagination a.active {
  background-color: var(--logoBlue);
  color: white;
  border: 1px solid var(--logoBlue);
}

.pagination a:hover:not(.active) {
 background-color: #ddd;
 cursor: pointer;
}

.pagination a:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pagination a:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.pagination .disabled:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  color: gray;
  opacity: 0.8;
}

.pagination .disabled:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  color: gray;
  opacity: 0.8;
}
.dots{
  color: black;
  float: left;
  padding: 6px 14px 10px 14px;
  border: 1px solid #ddd;
  margin: 0 6px; /* 0 is for top and bottom*/
}
/*.btn_next {
  background-color: var(--logoBlue);
  border: 1px solid var(--logoBlue);
  color: white;
  cursor: pointer;
}
.btn_prev {
  background-color: var(--logoBlue);
  border: 1px solid var(--logoBlue);
  color: white;
  cursor: pointer;
}*/

.avator {
  height: 50%;
  width: auto;
  margin-left: auto;
}
.avator:hover {
  border-radius: 50%;
  box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.3), 0 0px 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.account-box{
  position: absolute;
  top: calc(var(--headerHeight) - 10px);
  right: 8px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
  background: #fff;
  border: 1px solid #ccc;
  border-color: rgba(0,0,0,.2);
  border-radius: 8px;
  width: 70%;
  max-width: 350px;
  min-height: 45vh;
  display: none;
  min-width: 20%;
  z-index: 1000;
/*  animation-duration: 0.2s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: gb__a;*/
}
.account-box .fullname{
  font-weight: bold;
  font-size: 1.2rem;
}
.account-box .email{
  font-weight: 100;
}
.account-box .account-box-content{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 5%;
  min-height: 45vh;
  font-size: 1rem;
}
@media(max-width: 767px){
  .account-box .account-box-content{ font-size: 1.5rem; }
}

.account-box .manage-account {
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 100px;
  color: #3c4043;
  display: inline-block;
  font: 500 14px/16px;
  letter-spacing: .25px;
  margin: 16px 0 0;
  max-width: 254px;
  outline: 0;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  overflow: hidden;
}
.account-box .manage-account:hover {
  background-color: #f7f8f8;
}
.account-box .watchlist {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.account-box .watchlist a {
  text-decoration: none;
  color: black;
}
.account-box .watchlist a:hover {
  color: var(--logoBlue);
}
.account-box .watchlist i {
  color: var(--selectedOrange);
  font-size: 1.5rem;
  margin-right: 5px;
}
.account-box .bidlist i {
  color: var(--fbBlue); /* gavel colour */
  font-weight: 900;
  font-size: 1.3em;
  margin-right: 10px;
  display: inline-block;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
}
/* ------- watchlist -------*/
.watchlist-page-wrapper{
  width: 100%;
  height: auto;
  background-color: white;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  padding-bottom: 5%;
}
.watchlist-page {
  min-height: calc(100vh - (var(--headerHeight) + var(--top-container-height)) - 200px);
  color: var(--royal-navy-dark);
  max-width: 800px;
}
.watchlist-page .watch-row {
 /*margin: 8px 16px 24px 0px;*/
 margin: 8px 5px 24px 5px;
 -moz-box-sizing: border-box;
  display: flex;
  border-radius: 8px;
  height: 160px;
  max-height: 18vh;
  background-color: var(--mylightgray);
}
.watchlist-page .winning{
  background-color: #ECFFEE;
}
.watchlist-page .losing{
  background-color: #FFF0EE;
}
.watchlist-page .main-img{
  width: 240px;
  max-width: 50vw;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.watchlist-page .left-side {
  height: 100%;
}
.watchlist-page .middle-side {
  flex: 10;
  padding-left: 2%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media(max-width: 375px) {
  .watchlist-page .right-side {  flex: 2; }
}

@media(min-width: 376px) {
  .watchlist-page .right-side {  flex: 4; }
}

.watchlist-page .right-side {
  height: 100%;
  display: flex;
  align-items: end;
  text-align: right;
  flex-direction: column;
}
.watchlist-page .auction-date:before {
 font-family: "Line Awesome Free";
 font-weight: 900;
 font-size: 1.3em;
 content: "\f0e3"; /* gavel hammer */
 margin-right: 10px;
 display: inline-block;
 transform: scaleX(-1);
 -moz-transform: scaleX(-1);
 -o-transform: scaleX(-1);
 -webkit-transform: scaleX(-1);
}
.watchlist-page .title{
  font-size: 1.25rem;
  font-weight: 900;
  display: inline-block;
  padding: 15px 5px 0px 5px
}
.watchlist-page .address, .auction-date {
  font-size: 1.1rem;
  font-weight: 600;
  padding-top: 5px;
}
.watchlist-page .address {
  padding-top: 10px;
  max-height: 40%;
  white-space: nowrap; 
  text-overflow: ellipsis;
  overflow: hidden;
  padding-bottom: 3%;
  max-width: 398px;
}
.watchlist-page .bidding-price {
  font-size: 1.25rem;
  padding: 10px;
}

.watchlist-page .details{
  margin-top: auto;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.watchlist-page .details span{
  padding-right: 10px;
}
.watchlist-page .details i{
  padding-left: 5px;
}
.watchlist-page .right-side a{
  text-decoration: none;
  color: var(--royal-navy-dark);
}
.watchlist-page .right-side .trash{
  /*margin: 15%;*/
}
.watchlist-page .right-side .trash:hover{
  color: red;
}
.watchlist-page .right-side i {
  font-size: 2rem;
}
.watchlist-page .right-side .la-edit {
  padding-left: 5px;
}
@media(max-width: 499px){
.watchlist-page .right-side .note { padding: 0 5px 5px 0px; }

}
@media(min-width: 500px){
  .watchlist-page .right-side .note { padding: 0 10px 10px 0px; }
}
.watchlist-page .right-side .note {
  display: flex;
  align-items: end;
  /*margin-top: auto;*/
  opacity: 0.7;
  text-align: right;
  flex-direction: column;
}
.watchlist-page .right-side .note:hover{
  opacity: 1;
  cursor: pointer;
}
.footer-line-separator {
  height: 1px;
  background: black; 
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0; 
  top: 295px;
  opacity: 0.1;
}

/*===============================*/
.bidlist-navbar{
 list-style-type: none;
 height: 50px;
 font-weight: 900;
  margin-bottom: 15px;
}
.bidlist-navbar ul {
 padding: 0;
}
.bidlist-navbar li {
  display: inline;
  float: left;
}
.bidlist-navbar a {
  text-decoration: none;
  display: block;
    padding: 10px 15px;
    font-weight: 900;
    border: 0px;
    background: none;
    text-transform: uppercase;
    color: var(--royal-navy-dark);
 cursor: pointer;
 /*font-family: "poppins-semibold";*/
}
.bidlist-navbar a.active {
    border-bottom: 2px solid var(--royal-navy-dark);
 }
 .watchlist-page .won{
  background-color: #E6FFE6;
}
.watchlist-page .lost{
  background-color: #F0F0F0;
}
.watchlist-page .result{
  margin-right: 10px;
}
.watchlist-page .right-side .won {
  color: #02A702;
  font-weight: 900;
}
.watchlist-page .right-side .lost {
  color: var(--royal-navy-dark);
}
.bid-timer {
  padding: 0px;
  font-weight: 600;
}
.bid-timer .title{
  margin-right: 5px;
  font-size: 1.25rem;
}
.bid-timer .ticker {
  color: var(--royal-navy-dark);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

/*========= SortSelector============*/

#SortSelectorDiv {
  display: flex;
  flex-direction: row;
  justify-content: end;
  padding: 13px 16px 2px 0px;
  position: relative;
}
select[id="SortSelections"] {
  background-color: white;
  padding: 0px 10px;
  -webkit-appearance: none;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  border-radius: 0.3rem;
  /*font-size: 1.1rem;*/
  line-height: 2.2rem;
  letter-spacing: 0.2px;
  font-weight: 100;
  border-width: 1px;
  width: 235px;
  height: 35px;
}
option {    
    /*background-color: lightgreen; */
}
#toggle-view {
  visibility: hidden;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
/*===================*/
#outer-main-wrapper{
  max-width: 3000px;
  min-width: 72%;
  margin: 0 auto;
  position: relative;
}

@media(min-width: 3200px){
  .auction-wrapper { width: 100%;  }
}
/* ======= Privacy policy & how does it work pages ============*/
.page-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 1% 0 10%;
  width: 50%;
}
.page-wrapper p,.page-wrapper li,.page-wrapper a{
  font-size: 1.5rem;
}
.page-wrapper h1{ font-size: 2.3rem; }
.page-wrapper h2{ font-size: 1.9rem; }
.page-wrapper h3{ font-size: 1.6rem; }

@media(max-width: 767px){
  .page-wrapper  { width: 70%;}
}
/* ========== FAQs ==============*/
.faq-page-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 1% 0 10%;
  width: 100%;
  color: var(--royal-navy-dark);

}
.faq-heading{
    border-bottom: #777;
    padding-left: 20%;
}
.faq-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.hr-line{
  width: 60%;
  margin: auto;
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;

}
.faq-body{
    margin: auto;
    /* text-align: center; */
   width: 50%; 
   padding: auto;
   display: none; /* remove this to make all questions active*/
}


@media(max-width: 767px){
  .hr-line { width: 90%;}
  .faq-page { width: 90%;}
  .faq-body { width: 80%;}

}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    background-color: #F9F9F9;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: white;
    /*display: none;*/
    overflow: hidden;
}
.faq-body p {
  font-size: 1.3rem;
 }
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.faq-active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}
/* ======================================= */