/* font */

@font-face {
  font-family: Poppins-Black;
  src: url(../fonts/fonts/poppins/Poppins-Black.ttf);
}
@font-face {
  font-family: Poppins-Light;
  src: url(../fonts/fonts/poppins/Poppins-Light.ttf);
}
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/fonts/poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: Poppins-Medium;
  src: url(../fonts/fonts/poppins/Poppins-Medium.ttf);
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/fonts/poppins/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/fonts/poppins/Poppins-Bold.ttf);
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video
{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font:inherit;
  vertical-align:baseline;
  font-size:100%;
  font-style:inherit;
  color:var(--text-gray);
  font-weight:400;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  font-family:Poppins-Medium;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  zoom: 1;
}

ul {
  list-style: none;
}

.row-center {
  vertical-align: middle;
  align-items: center;
}

html {
  font-size: 16px;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family:Poppins-Regular;
  color: var(--text-gray);
  background-color: var(--main-white);
  overflow-x: hidden;
}

img {
  width: 100%;
  vertical-align: middle;
  border-style: none;
}
select {
    width: 100%;
    border: 1px solid #a97756;
}
.transition {
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 90%;
  }
  .modal-lg,
  .modal-xl {
      max-width: 60%;
  }
}

.modal-content {
  background-color: transparent;
  border: none;
}

::placeholder {
  color: var(--main-black) !important;
  font-size: 14px;
}
.form-control {
  border: 1px solid var(--thm-red);
  height: 45px;
  padding-left: 15px;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--thm-yellow);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(243 192 24 / 24%);
}

:root {
  --main-white: #ffff;
  --main-black: #000;
  --primary-color:#A97756;
  --secondary-color:#D3E1E2;
  --card-color-one:#ECF2EE;
  --card-color-two:#F4EBE6;
  --card-user-favourite:#d8eef5;  
}

/* Typography::Start */
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  color: var(--main-black);
  font-weight: 800;
}
h1 {
  font-size: 42px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h2 {
  font-size: 36px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h3 {
  font-size: 32px;
  line-height: 1.2222em;
  font-family:Poppins-Bold;
}

h4 {
  font-size: 28px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h5 {
  font-size: 26px;
  line-height: 1.1428em;
  font-family:Poppins-Bold;
}

h6 {
  font-size: 18px;
  font-family:Poppins-Medium !important;
  font-weight: 500;
}

p {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 400;
  font-family:Poppins-Regular;
}
a,ul,li,tr,td,label,span {
  font-size: 16px;
  font-family:Poppins-Regular;
  color: var(--text-gray);
}
a,a:hover,a:focus 
{
  text-decoration: none;
  color: inherit;
}
.small-text-bold 
{
  font-family:Poppins-SemiBold !important;
  color: var(--main-black);
}
.small-text-light 
{
  font-family:Poppins-Regular;
  color: var(--main-black);
}
.small-text-bold 
{
  font-family:Poppins-SemiBold;
  color: var(--main-black);
}
.small-text-light-primary
{
  font-family:Poppins-SemiBold;
  color: var(--primary-color);
}
.extra-small-text-light 
{
  font-size: 14px;
  font-family:Poppins-Regular;
  color: var(--main-black);
}
.active 
{
  color: var(--primary-color) !important;
}
.large-text-light
{
font-size: 18px;
font-family:Poppins-Regular !important;
font-weight: 500;
}
/* Typography::End */

/* Button-css::Start */

button {
  border: none !important;
}
.btn:focus {
  box-shadow: none;
}
button:focus {
  outline: none !important;
}
.btn 
{
  border:0px;
  border-radius: 0px;
}
.thm-btn
{
  background-color: var(--primary-color);
  color: var(--main-white);
  border: 2px solid var(--primary-color) !important;
}
.thm-btn:hover 
{
  background-color:var(--main-white);
  border: 2px solid var(--primary-color) !important;
  color:var(--primary-color);
}
/* Button-css::End */

/* Modal-css::Start */
.modal-open {
  padding: 0 !important;
}
/* Modal-css::End */

/* Card-css::Start */
.card-main 
{
  background-color: var(--main-white);
  border: 0px;
  border-radius: 0px;
}
/* Card-css::End */

/* Top-header-css::Start */
.navbar-row
{
  width: 100%;
  align-items: center;
  padding: 0;
  margin: 0;
}
.top-header .header-logo img 
{
  width: 250px;
}
.header-text h6
{
/*text-transform: capitalize;*/
}
.header-links-main 
{
  position: relative;
  padding-left: 20px;
}
.header-links-main::before
{
content: "";
background: var(--primary-color);
width: 1px;
height: 30px;
display: block;
position: absolute;
left: 0%;
top: 50%;
transform: translate(-50%,-50%);
}
.header-links-main a
{
  display: grid;
}
.header-content
{
  display: flex;
  justify-content: center;
}
.header-links-top
{
  display: flex;
  justify-content: flex-end;
}
.top-header .navbar 
{
  padding: 15px 0px !important;
}
.top-header .navbar-toggler i
{
  width: 35px;
  height:35px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:0px;
}
.top-header .navbar-toggler i 
{
  color: var(--main-white);
}
/* Top-header-css::End */

/* Bottom-header-css::Start */
.bottom-header
{
  background-color: var(--secondary-color);
  padding: 15px;
}
.header-links-top
{
  justify-content:end;
}
.col-without-padding
{
  padding:0px;
}
.header-links-main
{
  min-width: 180px;
}
/* Bottom-header-css::End */

/* Product-card-css::Start */
.span-line
{
  border-top: 2px solid var(--primary-color);
  display: block;
  min-width: 100px;
}
.product-description
{
  text-align: center;
}
.product-top-title
{
  margin-bottom: 30px;
}
.product-title-center
{
  margin-bottom: 20px;
}
.product-location-btn
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.product-card-border
{
  border-right: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}
.product-view-more .btn 
{
  min-width: 100px;
}
.product-image-row
{
  padding: 10px 0px;
}
.card-color-one
{
  background-color: var(--card-color-one);
}
.card-color-two
{
  background-color: var(--card-color-two);
}
.card-user-favourite
{
  background-color: var(--card-user-favourite);
}
.product-line p 
{
  padding: 5px;
}
/* Product-card-css::End */

/* Page-breadcrumb-css::Start */
.breadcrumb-wrapper
{
  padding: 15px;
}
.breadcrumb-number
{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--main-white);
}
.breadcrumb-ul
{
  display: flex;
  align-items: center;
}
.breadcrumb-ul li 
{
  margin-left: 20px;
  cursor: pointer;
}
.breadcrumb-line
{
  background-color: var(--primary-color);
  width: 35px;
  height: 10px;
  display: block;
  margin-bottom: 14px;
}

.breadcrumb-line-top
{
  width:35px;
  height: 35px;
  margin-top: 10px;
}

.breadcrumb-line-grid {
  background-color: var(--primary-color);
  width: 16.5px;
  height: 17px;
  display: block;
  float: left;
  margin-right: 1px;
  margin-bottom: 1px;
}

.breadcrumb-content
{
  display: flex;
}
.breadcrumb-content p 
{
  min-width: 200px;
  text-align: center;
}
.border-line
{
  border-top: 2px solid var(--primary-color);
  width:100%;
  height:2px;
  display: block;
  margin: 15px 0px;
}
.breadcrumb-content-line
{
  height:25px;
  background-color: var(--primary-color);
  width: 2px;
  margin:0px 20px;
}
/*.breadcrumb-ul li:first-child
{
  margin-left: 0px !important;
}*/
/* Page-breadcrumb-css::End */

/* Product-inner-page-css::Start */
.inner-product-img
{
  padding: 20px 0px;
}
.inner-product-img img {
    width: 145px;
    height: 145px;
    object-fit: cover;
}
.product-img img {
    width: 145px;
    height: 145px;
    object-fit: cover;
}
.inner-product-title-top
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-inner-description
{
  margin-top: 30px;
}
.count
{
  margin: 20px 0px;
  display:flex;
  justify-content: space-between;
}
.count-bid-item p i 
{
  color: var(--primary-color);
  margin-left: 20px;
}
.count-bid-item
{
  text-align: center;
}
.count-bid-item p 
{
  padding: 5px 0px;
  text-align: left;
}
.count-bid-item p i {
    float: right;
    top: 5px;
    position: relative;
}
.count-product-view-more
{
  text-align: center;
}
.count-product-view-more .btn
{
  min-width: 100%;
  margin-top: 50px;
}
.count-bid-item
{
  margin-top: 30px;
}
.product-inner-col
{
  justify-content: flex-end;
}
/* Product-inner-page-css::End */

/* Gallery-page-section-css::Start */
.gallery-card-wrapper
{
  margin-top: 50px;
}
.gallery-description
{
  margin-top: 20px;
}
.gallery-row
{
  padding-bottom: 10px;
}
.gallery-image-video-main
{
  margin-top: 150px;
}
.videos-main
{
  margin-top: 20px;
}
.gallery-links
{
  margin-top: 40px;
}
.gallery-links a {
    display: block;
}
.gallery-bid-item-content
{
  padding: 40px;
}
.gallery-bid-item-content .count-bid-item
{
margin: 50px 0px;
}
.gallery-links a 
{
  margin: 20px;
}
.gallery-border-col
{
  border-right: 2px solid var(--primary-color);
}
.gallery-images
{
  margin-bottom: 10px;
}
.gallery-images img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.gallery-images {
    width: 150px;
    height: 150px;
}
/* Gallery-page-section-css::End */

/* Product-table-css::Start */
.product-table-wrapper
{
  margin-top: 20px;
}
.table-line
{
  margin: 20px 0px 15px 0px;
}
.table-top .table thead tr th 
{
  font-family: poppins-SemiBold !important;
  width: 1%;
  border-top: 0px;
  border-bottom:0px !important;
}
.table-top .table tbody tr td 
{
  font-family: poppins-Regular !important;
  border-top: 0.5px solid var(--primary-color);
  white-space: nowrap;
}
.product-inner-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;

}
/* Product-table-css::End */

/*gallery css start*/
.gallert-gallery h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.gallery-block.grid-gallery{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block.grid-gallery .heading{
  margin-bottom: 50px;
  text-align: center;
}

.gallery-block.grid-gallery .heading h2{
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}
.grid-product-description .product-inner-description 
{
margin-top: 10px;
}


.header-nav-link {
    justify-content: flex-end;
}
.header-nav-link a {
  font-weight: bold;
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.header-content {
  border-bottom: 1px solid white;
}
.header-content .form-control {
    background-color: transparent;
    border: 0;
}
.header-content .form-group {
    margin-bottom: 0;
    border-right: 1px solid white;
}
.form-control:focus {
  box-shadow: unset;
}

/*footer social link css start*/
.social-link {
  text-align: right;
}
.social-link i {
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    margin: 0 10px;
}
.social-link a:hover i {
  color: var(--primary-color);
}
.social-link i:last-child {
  margin-right: 0;
}
/*footer social link css end*/


/* Box-table-css::Start */

.view-product-inner-img.inner-product-img
{
  padding: 0px !important;
}
.view-product-inner-img.inner-product-img img
{
 width:120px;
 height:120px;
}
.view-btn-product a 
{
  color: var(--main-black) ;
  margin-left: 30px;
  display: grid;
  padding:5px 0px;
}
.view-btn-product
{
  position: relative;
}
.view-btn-product::before
{
  content: "";
  background: var(--primary-color);
  width: 1px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* Box-table-css::End */



footer {
    padding: 20px 0;
}

.hide-element{
    display: none !important; 
}



@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}






footer {
  padding: 20px 0;
  position: fixed;
  z-index: 1;
  width: 100%;
  bottom: 0;
  background: #fff;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
}

.bottom-header .header-content {
  border-bottom: none;
}

section.product-list_view {
  max-height: calc(100vh - 354px) !important;
  overflow: auto;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .row {
  flex-wrap: nowrap;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 17%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
  flex: 0 0 45%;
  max-width: 45%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:nth-child(2) {
  flex: 0 0 30%;
  max-width: 30%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
  flex: 0 0 25%;
  max-width: 25%;
  margin-left: 40px;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 17%;
}
.view-btn-product {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.view-btn-product::before {
  display: none;
}

.gallery-image-video-main {
  margin-top: 30px;
}

section.product-list_view .modal-header {
  background: #eee;
}

.gallery-block.grid-gallery {
  padding-bottom: 30px;
  padding-top: 20px;
}

section.product-list_view .modal-header button.close {
  font-size: 20px;
  background: #a97756;
  color: #fff;
  opacity: 1;
}

section.product-list_view .gallery-links {
  display: flex;
  margin-top: 19px;
}

section.product-list_view .gallery-links a {
  background: #a97756;
  color: #fff;
  padding: 12px 20px;
  margin: 0 6px 0 0;
  border-radius: 5px;
}



@media (max-width:1700px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
    flex: 0 0 36%;
    max-width: 36%;
}
}

@media (max-width:1500px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
    flex: 0 0 28%;
    max-width: 28%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
  margin-left: 0;
}

}

@media (max-width:1199px) {
  body {
    overflow: inherit;
}

section.product-list_view {
  max-height: inherit !important;
  overflow: inherit !important;
}

footer {
  position: static;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 0;
}

}

@media (max-width:767px) {

  .header-content .form-group {
    border: none;
  }

  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .row {
    flex-wrap: wrap;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.view-btn-product {
  position: relative;
  text-align: left;
  display: flex;
  margin: 10px 0 0;
}

.social-link {
  text-align: center;
  margin-top: 10px;
}

footer.main-footer .col-md-6 {
  text-align: center;
  margin: 16px 0;
}

footer .header-logo-toggle-main {
  justify-content: center !important;
}

}

.erroMessage{
    color: red;
}
.error{
  color: red;
}
#front_form_register .error, #front_login .error, #front_forgot_password .error{
  text-align: left;
  font-size: 12px;
}



/*
========================
ABOUT / CONTACT PAGE CSS
========================
*/

.contact_page .contact__wrapper button.btn.btn-primary {
  background: #9b6c4e;
  color: #fff;
}

h3.color--white.mb-5 {
    color: #fff;
}

figure.figure.position-absolute.m-0.opacity-06.z-index-100 path {
  fill: #9b6c4d;
}

.about_main_wrap {
    padding: 50px 0;
    border-top: 1px solid #eee;
}
    
body.about_page footer.main-footer {
    position: static !important;
}

.about_desc h2 {
    margin-bottom: 19px;
}

.about_desc p {
    line-height: 150%;
}


.contact_page .gradient-brand-color {
background-image: -webkit-linear-gradient(0deg, #a97756 0%, #6c4932 100%);
background-image: -ms-linear-gradient(0deg, #376be6 0%, #6470ef 100%);
color: #fff;
}
.contact_page  .contact-info__wrapper {
    overflow: hidden;
    border-radius: .625rem .625rem 0 0
}

@media (min-width: 1024px) {
    .contact_page .contact-info__wrapper {
        border-radius: 0 .625rem .625rem 0;
        padding: 5rem !important
    }
}
.contact_page .contact-info__list span.position-absolute {
    left: 0
}
.contact_page .z-index-101 {
    z-index: 101;
}
.contact_page .list-style--none {
    list-style: none;
}
.contact_page .contact__wrapper {
    background-color: #fff;
    border-radius: 0 0 .625rem .625rem
}

@media (min-width: 1024px) {
    .contact_page .contact__wrapper {
        border-radius: .625rem 0 .625rem .625rem
    }
}
@media (min-width: 1024px) {
    .contact_page .contact-form__wrapper {
        padding: 5rem !important
    }
}
.contact_page .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(132,138,163,0.1) !important;
}


footer.main-footer {
    position: static !important;
}

body section.product-list_view {
    max-height: inherit !important;
}

main.page-content {
    min-height: calc(100vh - 354px) !important;
}


.grid-a_item-title{
  font-size: 20px;
}

.a_bid_on_item:hover{
  cursor: pointer;
  color: #a97756;
}
.a_bid_on_item:hover .span-line
{
  border-top: 2px solid #000;
}
.a_bid_on_item:hover p i{
  color: black;
}

.no-auction-found{
  text-align: center;
  margin-top: 15px;
}
.auction-search-btn{
  background: transparent;
  border: none;
}

/*popup, view button css by rakesh*/


.count-bid-item.a_bid_on_item p.small-text-medium {
    padding-left: 10px;
    padding-right: 10px;
}


.count-bid-item.a_bid_on_item:hover p.small-text-medium {
    background: #a97756;
    color: #212529;
}

.count-bid-item.a_bid_on_item:hover .span-line {
    border-color: #a97756;
}

.about_desc p + p {
    margin-top: 15px;
}



section.product-list_view .gallery-links a i.fa.fa-chevron-right {
    margin-left: 10px;
}

section.product-list_view .gallery-links a {
    background: #fff;
    padding: 12px 20px;
    margin: 0 6px 0 0;
    border-radius: 0;
    color: #212529;
    border-top: 2px solid #a97756;
    border-bottom: 2px solid #a97756;
    display: block;
}

section.product-list_view .gallery-links a + a {
    margin-left: 22px;
}

section.product-list_view .gallery-links a:hover {
    background: #a97756;
}

@media (max-width:767px) {
    section.product-list_view .gallery-links {
        flex-direction: column;
    }
   
    section.product-list_view .gallery-links a + a {
        margin-left: 0;
        margin-top: 15px;
    }

 


}


header.header-wrapper .modal-header h5 {
  font-size: 18px;
}

header.header-wrapper .modal-header button.close {
  background: #a97756;
  opacity: 1;
  color: #fff;
  /* font-size: 21px; */
}

header.header-wrapper .modal-header button.close span {
  font-size: 25px;
}

header.header-wrapper .modal-header {
  padding: 14px 15px;
  overflow: hidden;
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images {
  position: relative;
  padding-bottom: 70%;
  height: auto;
  width: 100%;
  /* background: #f2f2f2; */
  margin: 0;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images a.lightbox {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images a.lightbox img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: auto;
  box-shadow: none !important;
}

body section.product-list_view .modal-body .item {
  margin-bottom: 25px;
}

body section.product-list_view .modal-body .gallery-links {
  margin-top: 0;
  margin-bottom: 20px;
}


.product-line.a_bid_on_item {
  text-align: left;
}

.product-line.a_bid_on_item i.fa.fa-chevron-right {
  float: right;
  top: 5px;
  position: relative;
  color: #a97756;
}

.product-line.a_bid_on_item:hover {
  background: #a97756;
}

.product-line.a_bid_on_item:hover .span-line {
  border-color: #a97756;
}

.product-line.a_bid_on_item:hover p.small-text-medium {
  color: #212529;
}

.product-line.a_bid_on_item:hover i.fa.fa-chevron-right {
  color: #212529;
}

.product-line.a_bid_on_item p.small-text-medium {
  padding-left: 10px;
  padding-right: 10px;
}



.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:first-child {
  flex: 0 0 35%;
  max-width: 35%;
}

.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:last-child {
  flex: 0 0 65%;
  max-width: 65%;
}

.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .product-description {
  text-align: left;
}

.thumbnail_container {
  position: relative;
  padding-bottom: 100%;
  background: #edeef2;
}

.thumbnail_container .thumbnail {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.thumbnail_container .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: auto;
  right: 0;
  bottom: 0;
}

.product-card .card.card-main.product-card.light-green {
  background: #edf2ee !important;
}

.product-card .card.card-main.product-card.light-orange {
  background: #f3ebe5 !important;
}

.product-inner-card .card-main .col-lg-9.col-md-12.col-sm-12 .inner-product-title-top {
  padding-right: 20px;
  /* border-right: 1px solid #ddd; */
}

.product-line.a_bid_on_item button.small-text-medium {
  background: transparent !important;
  padding: 6px 10px;
  display: block;
  width: 100%;
  text-align: left;
}


.count-bid-item.a_bid_on_item button.small-text-medium {
  width: 100%;
  background: transparent;
  padding: 5px 10px;
  text-align: left;
}

.count-bid-item.a_bid_on_item button.small-text-medium i.fa.fa-chevron-right {
  float: right;
  top: 5px;
  position: relative;
}

.count-bid-item.a_bid_on_item:hover button {
  background: #a97756 !important;
}


.bid_modal .modal-header {
  padding: 10px 16px;
  overflow: hidden;
}

.bid_modal .modal-header .modal-title {
  margin: 0;
  font-size: 22px;
  padding: 0;
  color: #a97756;
}

.bid_modal .modal-header button.close {
  background: #a97756;
  opacity: 1;
  font-size: 28px;
  padding: 16px 15px;
  color: #fff;
}

.bid_modal .modal-header button.close span {
  text-shadow: none;
  font-size: 20px;
}

.bid_modal .modal-body .bid_des_detail .top_list ul {
  display: block;
  /* justify-content: center; */
  margin: 15px 37px 0 37px;
  /* flex-direction: column; */
  text-align: center;
}

.bid_modal .modal-body .bid_des_detail .top_list ul li + li {
  margin-top: 10px;
}

.bid_modal .modal-body .bid_des_detail .top_list ul li span {
  font-weight: bold;
  padding-left: 4px;
}


.nax_bid_div {
  max-width: 300px;
  margin: 20px auto 20px;
}

.nax_bid_div ul li {
  padding: 10px 7px;
  border-top: 1px solid #a97756;
  display: flex;
  justify-content: space-between;
}
.nax_bid_div ul li + li {
  border-bottom: 1px solid #a97756;
}

.nax_bid_div ul li span.rgt_dta {
  font-weight: bold;
}

.nax_bid_div .bid_history_btn {
  margin: 20px 0 0;
}

.nax_bid_div .bid_history_btn a {
  font-size: 16px;
  display: inline-block;
  color: #a97756;
}

.nax_bid_div .bid_history_btn a i {
  margin-left: 5px;
  margin-top: 0;
  font-size: 13px;
  vertical-align: -1px;
}

.bid_table_new {
  overflow-x: auto;
  max-width: 80%;
  margin: auto;
}

.bid_table_new table {
  width: 100%;
}

.bid_table_new table tr th {
  background: #a97756;
  color: #fff;
}

.bid_table_new table tr td, .bid_table_new table tr th {
  border: 1px solid #eee;
  padding: 6px 13px;
  font-size: 14px;
}

.bid_notes {
  margin: 20px 0;
  text-align: center;
}

.bid_notes p {
  background: #a97756;
  display: inline-block;
  padding: 0 4px;
  font-size: 14px;
  color: #fff;
}

.bid_onbtn {
  margin: 24px 0 0;
  text-align: center;
}

.bid_onbtn a {
  border-top: 1px solid #a97756;
  border-bottom: 1px solid #a97756;
  padding: 5px 10px;
  display: inline-block;
  font-size: 16px;
  display: inline-block;
  color: #000;
}

.bid_onbtn a i {
  margin-left: 5px;
  margin-top: 0;
  font-size: 13px;
  vertical-align: -1px;
}

.bid_onbtn a:hover {
  background: #a97756;
} 

.bid_onbtn a:hover i {
  color: #000;
}

.bid_history_btn.bid_onbtn.conifrm_btn {
  margin-bottom: 20px;
}

.bid_history_btn.bid_onbtn.conifrm_btn a {
  background: #a97756;
  border: none;
  color: #fff;
}

@media (max-width:1700px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
    margin-left: 15px;
  }
}

@media (max-width:1199px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
    margin-left: 0px;
  }
}

@media (max-width:767px) {
  .product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.pend_div .header-links-top.pend_div {
  align-items: center;
}

a.small-text-bold.btn-dagner.pend_btn span.btn.btn-xs.btn-info {
  padding: 3px 9px;
  border-radius: 7px;
}
a.small-text-bold.btn-dagner.pend_btn span.btn.btn-xs.btn-danger {
  padding: 3px 9px;
  border-radius: 7px;
}

a.small-text-bold.btn.btn-xs.btn-success.approved_class {
    color: #fff !important;
    padding: 3px 9px;
    border-radius: 7px;
    margin-right: 20px;
}
.a_href_class{
  color: blue;
}


/* Bid Css when click on bid history */
   .row.bid_table_new.new_row {
    flex-direction: column;
}

.row.bid_table_new.new_row .bid_wrp_data span.bid_label {
    margin: 5px 0 10px;
    text-align: center;
    display: block;
}

.row.bid_table_new.new_row .bid_wrp_data .bid_input_div {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 9px 0 20px;
}

.row.bid_table_new.new_row .bid_wrp_data .bid_input_div input {
    width: 60% !important;
    height: 40px;
    border: none;
    background: #f2f2f2;
    border: 1px solid #ddd;
    padding: 2px 13px;
    outline: none;
    border-radius: 0;
}

.nax_bid_div .rgt_dta input{
    width: 100% !important;
    height: 40px;
    border: none;
    background: #f2f2f2;
    border: 1px solid #ddd;
    padding: 2px 13px;
    outline: none;
    border-radius: 0;  
}
.row.bid_table_new.new_row .bid_wrp_data .bid_input_div .bid_history_btn {
    width: 40%;
}

.row.bid_table_new.new_row .bid_wrp_data .bid_input_div .bid_history_btn a.btn-xs.btn-primary {
    height: 40px;
    display: block;
    text-align: center;
    line-height: 36px;
    background: #a97756;
    font-size: 15px;
}

.bid_table_new .bid_table_new {
    width: 100%;
    max-width: 100%;
}

.nax_bid_div .bid_history_btn {
    margin: 20px 0 0;
  
}

.nax_bid_div .bid_history_btn a {
    font-size: 16px;
    display: block;
    color: #a97756;
    white-space: nowrap;
    background: #eee;
    margin: 4px;
    padding: 9px;
    text-align: center;
    text-align: left;
}

.nax_bid_div .bid_history_btn a i.fa.fa-chevron-right {
    float: right;
    margin: 6px 0 0 0;
    vertical-align: inherit;
}

.bid_table_new.hide_showtable {
    display: none;
}

.bid_wrp_data {
    display: none;
}
/*End Bid popup css*/
/* font */

@font-face {
  font-family: Poppins-Black;
  src: url(../fonts/fonts/poppins/Poppins-Black.ttf);
}
@font-face {
  font-family: Poppins-Light;
  src: url(../fonts/fonts/poppins/Poppins-Light.ttf);
}
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/fonts/poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: Poppins-Medium;
  src: url(../fonts/fonts/poppins/Poppins-Medium.ttf);
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/fonts/poppins/Poppins-SemiBold.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/fonts/poppins/Poppins-Bold.ttf);
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video
{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font:inherit;
  vertical-align:baseline;
  font-size:100%;
  font-style:inherit;
  color:var(--text-gray);
  font-weight:400;
  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;
  font-family:Poppins-Medium;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  zoom: 1;
}

ul {
  list-style: none;
}

.row-center {
  vertical-align: middle;
  align-items: center;
}

html {
  font-size: 16px;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family:Poppins-Regular;
  color: var(--text-gray);
  background-color: var(--main-white);
  overflow-x: hidden;
}

img {
  width: 100%;
  vertical-align: middle;
  border-style: none;
}
select {
    width: 100%;
    border: 1px solid #a97756;
}
.transition {
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
      max-width: 90%;
  }
  .modal-lg,
  .modal-xl {
      max-width: 60%;
  }
}

.modal-content {
  background-color: transparent;
  border: none;
}

::placeholder {
  color: var(--main-black) !important;
  font-size: 14px;
}
.form-control {
  border: 1px solid var(--thm-red);
  height: 45px;
  padding-left: 15px;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: var(--thm-yellow);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(243 192 24 / 24%);
}

:root {
  --main-white: #ffff;
  --main-black: #000;
  --primary-color:#A97756;
  --secondary-color:#D3E1E2;
  --card-color-one:#ECF2EE;
  --card-color-two:#F4EBE6;
  --card-user-favourite:#d8eef5;  
}

/* Typography::Start */
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
  color: var(--main-black);
  font-weight: 800;
}
h1 {
  font-size: 42px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h2 {
  font-size: 36px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h3 {
  font-size: 32px;
  line-height: 1.2222em;
  font-family:Poppins-Bold;
}

h4 {
  font-size: 28px;
  line-height: 1.25em;
  font-family:Poppins-Bold;
}

h5 {
  font-size: 26px;
  line-height: 1.1428em;
  font-family:Poppins-Bold;
}

h6 {
  font-size: 18px;
  font-family:Poppins-Medium !important;
  font-weight: 500;
}

p {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 400;
  font-family:Poppins-Regular;
}
a,ul,li,tr,td,label,span {
  font-size: 16px;
  font-family:Poppins-Regular;
  color: var(--text-gray);
}
a,a:hover,a:focus 
{
  text-decoration: none;
  color: inherit;
}
.small-text-bold 
{
  font-family:Poppins-SemiBold !important;
  color: var(--main-black);
}
.small-text-light 
{
  font-family:Poppins-Regular;
  color: var(--main-black);
}
.small-text-bold 
{
  font-family:Poppins-SemiBold;
  color: var(--main-black);
}
.small-text-light-primary
{
  font-family:Poppins-SemiBold;
  color: var(--primary-color);
}
.extra-small-text-light 
{
  font-size: 14px;
  font-family:Poppins-Regular;
  color: var(--main-black);
}
.active 
{
  color: var(--primary-color) !important;
}
.large-text-light
{
font-size: 18px;
font-family:Poppins-Regular !important;
font-weight: 500;
}
/* Typography::End */

/* Button-css::Start */

button {
  border: none !important;
}
.btn:focus {
  box-shadow: none;
}
button:focus {
  outline: none !important;
}
.btn 
{
  border:0px;
  border-radius: 0px;
}
.thm-btn
{
  background-color: var(--primary-color);
  color: var(--main-white);
  border: 2px solid var(--primary-color) !important;
}
.thm-btn:hover 
{
  background-color:var(--main-white);
  border: 2px solid var(--primary-color) !important;
  color:var(--primary-color);
}
/* Button-css::End */

/* Modal-css::Start */
.modal-open {
  padding: 0 !important;
}
/* Modal-css::End */

/* Card-css::Start */
.card-main 
{
  background-color: var(--main-white);
  border: 0px;
  border-radius: 0px;
}
/* Card-css::End */

/* Top-header-css::Start */
.navbar-row
{
  width: 100%;
  align-items: center;
  padding: 0;
  margin: 0;
}
.top-header .header-logo img 
{
  width: 250px;
}
.header-text h6
{
/*text-transform: capitalize;*/
}
.header-links-main 
{
  position: relative;
  padding-left: 20px;
}
.header-links-main::before
{
content: "";
background: var(--primary-color);
width: 1px;
height: 30px;
display: block;
position: absolute;
left: 0%;
top: 50%;
transform: translate(-50%,-50%);
}
.header-links-main a
{
  display: grid;
}
.header-content
{
  display: flex;
  justify-content: center;
}
.header-links-top
{
  display: flex;
  justify-content: flex-end;
}
.top-header .navbar 
{
  padding: 15px 0px !important;
}
.top-header .navbar-toggler i
{
  width: 35px;
  height:35px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:0px;
}
.top-header .navbar-toggler i 
{
  color: var(--main-white);
}
/* Top-header-css::End */

/* Bottom-header-css::Start */
.bottom-header
{
  background-color: var(--secondary-color);
  padding: 15px;
}
.header-links-top
{
  justify-content:end;
}
.col-without-padding
{
  padding:0px;
}
.header-links-main
{
  min-width: 180px;
}
/* Bottom-header-css::End */

/* Product-card-css::Start */
.span-line
{
  border-top: 2px solid var(--primary-color);
  display: block;
  min-width: 100px;
}
.product-description
{
  text-align: center;
}
.product-top-title
{
  margin-bottom: 30px;
}
.product-title-center
{
  margin-bottom: 20px;
}
.product-location-btn
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.product-card-border
{
  border-right: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}
.product-view-more .btn 
{
  min-width: 100px;
}
.product-image-row
{
  padding: 10px 0px;
}
.card-color-one
{
  background-color: var(--card-color-one);
}
.card-color-two
{
  background-color: var(--card-color-two);
}
.card-user-favourite
{
  background-color: var(--card-user-favourite);
}
.product-line p 
{
  padding: 5px;
}
/* Product-card-css::End */

/* Page-breadcrumb-css::Start */
.breadcrumb-wrapper
{
  padding: 15px;
}
.breadcrumb-number
{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--main-white);
}
.breadcrumb-ul
{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb-ul li 
{
  margin-left: 20px;
  cursor: pointer;
}
.breadcrumb-line
{
  background-color: var(--primary-color);
  width: 35px;
  height: 10px;
  display: block;
  margin-bottom: 14px;
}

.breadcrumb-line-top
{
  width:35px;
  height: 35px;
  margin-top: 10px;
}

.breadcrumb-line-grid {
  background-color: var(--primary-color);
  width: 16.5px;
  height: 17px;
  display: block;
  float: left;
  margin-right: 1px;
  margin-bottom: 1px;
}

.breadcrumb-content
{
  display: flex;
}
.breadcrumb-content p 
{
  min-width: 200px;
  text-align: center;
}
.border-line
{
  border-top: 2px solid var(--primary-color);
  width:100%;
  height:2px;
  display: block;
  margin: 15px 0px;
}
.breadcrumb-content-line
{
  height:25px;
  background-color: var(--primary-color);
  width: 2px;
  margin:0px 20px;
}
/*.breadcrumb-ul li:first-child
{
  margin-left: 0px !important;
}*/
/* Page-breadcrumb-css::End */

/* Product-inner-page-css::Start */
.inner-product-img
{
  padding: 20px 0px;
}
.inner-product-img img {
    width: 145px;
    height: 145px;
    object-fit: cover;
}
.product-img img {
    width: 145px;
    height: 145px;
    object-fit: cover;
}
.inner-product-title-top
{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-inner-description
{
  margin-top: 30px;
}
.count
{
  margin: 20px 0px;
  display:flex;
  justify-content: space-between;
}
.count-bid-item p i 
{
  color: var(--primary-color);
  margin-left: 20px;
}
.count-bid-item
{
  text-align: center;
}
.count-bid-item p 
{
  padding: 5px 0px;
  text-align: left;
}
.count-bid-item p i {
    float: right;
    top: 5px;
    position: relative;
}
.count-product-view-more
{
  text-align: center;
}
.count-product-view-more .btn
{
  min-width: 100%;
  margin-top: 50px;
}
.count-bid-item
{
  margin-top: 30px;
}
.product-inner-col
{
  justify-content: flex-end;
}
/* Product-inner-page-css::End */

/* Gallery-page-section-css::Start */
.gallery-card-wrapper
{
  margin-top: 50px;
}
.gallery-description
{
  margin-top: 20px;
}
.gallery-row
{
  padding-bottom: 10px;
}
.gallery-image-video-main
{
  margin-top: 150px;
}
.videos-main
{
  margin-top: 20px;
}
.gallery-links
{
  margin-top: 40px;
}
.gallery-links a {
    display: block;
}
.gallery-bid-item-content
{
  padding: 40px;
}
.gallery-bid-item-content .count-bid-item
{
margin: 50px 0px;
}
.gallery-links a 
{
  margin: 20px;
}
.gallery-border-col
{
  border-right: 2px solid var(--primary-color);
}
.gallery-images
{
  margin-bottom: 10px;
}
.gallery-images img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.gallery-images {
    width: 150px;
    height: 150px;
}
/* Gallery-page-section-css::End */

/* Product-table-css::Start */
.product-table-wrapper
{
  margin-top: 20px;
}
.table-line
{
  margin: 20px 0px 15px 0px;
}
.table-top .table thead tr th 
{
  font-family: poppins-SemiBold !important;
  width: 1%;
  border-top: 0px;
  border-bottom:0px !important;
}
.table-top .table tbody tr td 
{
  font-family: poppins-Regular !important;
  border-top: 0.5px solid var(--primary-color);
  white-space: nowrap;
}
.product-inner-description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;

}
/* Product-table-css::End */

/*gallery css start*/
.gallert-gallery h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.gallery-block.grid-gallery{
  padding-bottom: 60px;
  padding-top: 60px;
}

.gallery-block.grid-gallery .heading{
  margin-bottom: 50px;
  text-align: center;
}

.gallery-block.grid-gallery .heading h2{
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover{
  opacity: 0.8;
}

.gallery-block.grid-gallery .item img{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}
.grid-product-description .product-inner-description 
{
margin-top: 10px;
}


.header-nav-link {
    justify-content: flex-end;
}
.header-nav-link a {
  font-weight: bold;
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.header-content {
  border-bottom: 1px solid white;
}
.header-content .form-control {
    background-color: transparent;
    border: 0;
}
.header-content .form-group {
    margin-bottom: 0;
    border-right: 1px solid white;
}
.form-control:focus {
  box-shadow: unset;
}

/*footer social link css start*/
.social-link {
  text-align: right;
}
.social-link i {
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    margin: 0 10px;
}
.social-link a:hover i {
  color: var(--primary-color);
}
.social-link i:last-child {
  margin-right: 0;
}
/*footer social link css end*/


/* Box-table-css::Start */

.view-product-inner-img.inner-product-img
{
  padding: 0px !important;
}
.view-product-inner-img.inner-product-img img
{
 width:120px;
 height:120px;
}
.view-btn-product a 
{
  color: var(--main-black) ;
  margin-left: 30px;
  display: grid;
  padding:5px 0px;
}
.view-btn-product
{
  position: relative;
}
.view-btn-product::before
{
  content: "";
  background: var(--primary-color);
  width: 1px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%,-50%);
}

/* Box-table-css::End */



footer {
    padding: 20px 0;
}

.hide-element{
    display: none !important; 
}



@media (min-width: 576px) {

  .gallery-block.grid-gallery .scale-on-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important;
  }
}






footer {
  padding: 20px 0;
  position: fixed;
  z-index: 1;
  width: 100%;
  bottom: 0;
  background: #fff;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
}

.bottom-header .header-content {
  border-bottom: none;
}

section.product-list_view {
  max-height: calc(100vh - 354px) !important;
  overflow: auto;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .row {
  flex-wrap: nowrap;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 17%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
  flex: 0 0 45%;
  max-width: 45%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:nth-child(2) {
  flex: 0 0 30%;
  max-width: 30%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
  flex: 0 0 25%;
  max-width: 25%;
  margin-left: 40px;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 1%;
}
.view-btn-product {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.view-btn-product::before {
  display: none;
}

.gallery-image-video-main {
  margin-top: 25px;
}

section.product-list_view .modal-header {
  background: #eee;
}

.gallery-block.grid-gallery {
  padding-bottom: 30px;
  padding-top: 20px;
}

section.product-list_view .modal-header button.close {
  font-size: 20px;
  background: #a97756;
  color: #fff;
  opacity: 1;
}

section.product-list_view .gallery-links {
  display: flex;
  margin-top: 19px;
}

section.product-list_view .gallery-links a {
  background: #a97756;
  color: #fff;
  padding: 12px 20px;
  margin: 0 6px 0 0;
  border-radius: 5px;
}



@media (max-width:1700px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
    flex: 0 0 36%;
    max-width: 36%;
}
}

@media (max-width:1500px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:first-child {
    flex: 0 0 28%;
    max-width: 28%;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
  margin-left: 0;
}

}

@media (max-width:1199px) {
  body {
    overflow: inherit;
}

section.product-list_view {
  max-height: inherit !important;
  overflow: inherit !important;
}

footer {
  position: static;
}

.bottom-header .header-content {
  justify-content: flex-start;
  margin-left: 0;
}

}

@media (max-width:767px) {

  .header-content .form-group {
    border: none;
  }

  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .row {
    flex-wrap: wrap;
}

.bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.view-btn-product {
  position: relative;
  text-align: left;
  display: flex;
  margin: 10px 0 0;
}

.social-link {
  text-align: center;
  margin-top: 10px;
}

footer.main-footer .col-md-6 {
  text-align: center;
  margin: 16px 0;
}

footer .header-logo-toggle-main {
  justify-content: center !important;
}

}

.erroMessage{
    color: red;
}
.error{
  color: red;
}
#front_form_register .error, #front_login .error, #front_forgot_password .error{
  text-align: left;
  font-size: 12px;
}



/*
========================
ABOUT / CONTACT PAGE CSS
========================
*/

.contact_page .contact__wrapper button.btn.btn-primary {
  background: #9b6c4e;
  color: #fff;
}

h3.color--white.mb-5 {
    color: #fff;
}

figure.figure.position-absolute.m-0.opacity-06.z-index-100 path {
  fill: #9b6c4d;
}

.about_main_wrap {
    padding: 50px 0;
    border-top: 1px solid #eee;
}
    
body.about_page footer.main-footer {
    position: static !important;
}

.about_desc h2 {
    margin-bottom: 19px;
}

.about_desc p {
    line-height: 150%;
}


.contact_page .gradient-brand-color {
background-image: -webkit-linear-gradient(0deg, #a97756 0%, #6c4932 100%);
background-image: -ms-linear-gradient(0deg, #376be6 0%, #6470ef 100%);
color: #fff;
}
.contact_page  .contact-info__wrapper {
    overflow: hidden;
    border-radius: .625rem .625rem 0 0
}

@media (min-width: 1024px) {
    .contact_page .contact-info__wrapper {
        border-radius: 0 .625rem .625rem 0;
        padding: 5rem !important
    }
}
.contact_page .contact-info__list span.position-absolute {
    left: 0
}
.contact_page .z-index-101 {
    z-index: 101;
}
.contact_page .list-style--none {
    list-style: none;
}
.contact_page .contact__wrapper {
    background-color: #fff;
    border-radius: 0 0 .625rem .625rem
}

@media (min-width: 1024px) {
    .contact_page .contact__wrapper {
        border-radius: .625rem 0 .625rem .625rem
    }
}
@media (min-width: 1024px) {
    .contact_page .contact-form__wrapper {
        padding: 5rem !important
    }
}
.contact_page .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(132,138,163,0.1) !important;
}


footer.main-footer {
    position: static !important;
}

body section.product-list_view {
    max-height: inherit !important;
}

main.page-content {
    min-height: calc(100vh - 354px) !important;
}


.grid-a_item-title{
  font-size: 20px;
}

.a_bid_on_item:hover{
  cursor: pointer;
  color: #a97756;
}
.a_bid_on_item:hover .span-line
{
  border-top: 2px solid #000;
}
.a_bid_on_item:hover p i{
  color: black;
}

.no-auction-found{
  text-align: center;
  margin-top: 15px;
}
.auction-search-btn{
  background: transparent;
  border: none;
}

/*popup, view button css by rakesh*/


.count-bid-item.a_bid_on_item p.small-text-medium {
    padding-left: 10px;
    padding-right: 10px;
}


.count-bid-item.a_bid_on_item:hover p.small-text-medium {
    background: #a97756;
    color: #212529;
}

.count-bid-item.a_bid_on_item:hover .span-line {
    border-color: #a97756;
}

.about_desc p + p {
    margin-top: 15px;
}



section.product-list_view .gallery-links a i.fa.fa-chevron-right {
    margin-left: 10px;
}

section.product-list_view .gallery-links a {
    background: #fff;
    padding: 12px 20px;
    margin: 0 6px 0 0;
    border-radius: 0;
    color: #212529;
    border-top: 2px solid #a97756;
    border-bottom: 2px solid #a97756;
    display: block;
}

section.product-list_view .gallery-links a + a {
    margin-left: 22px;
}

section.product-list_view .gallery-links a:hover {
    background: #a97756;
}

@media (max-width:767px) {
    section.product-list_view .gallery-links {
        flex-direction: column;
    }
   
    section.product-list_view .gallery-links a + a {
        margin-left: 0;
        margin-top: 15px;
    }

 


}


header.header-wrapper .modal-header h5 {
  font-size: 18px;
}

header.header-wrapper .modal-header button.close {
  background: #a97756;
  opacity: 1;
  color: #fff;
  /* font-size: 21px; */
}

header.header-wrapper .modal-header button.close span {
  font-size: 25px;
}

header.header-wrapper .modal-header {
  padding: 14px 15px;
  overflow: hidden;
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images {
  position: relative;
  padding-bottom: 70%;
  height: auto;
  width: 100%;
  /* background: #f2f2f2; */
  margin: 0;
  box-shadow: 0px 2px 10px rgb(0 0 0 / 15%);
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images a.lightbox {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body section.product-list_view .modal-body .gallery-images-main.gallery-block.grid-gallery .gallery-images a.lightbox img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: auto;
  box-shadow: none !important;
}

body section.product-list_view .modal-body .item {
  margin-bottom: 25px;
}

body section.product-list_view .modal-body .gallery-links {
  margin-top: 0;
  margin-bottom: 20px;
  justify-content: flex-end;
}


.product-line.a_bid_on_item {
  text-align: left;
}

.product-line.a_bid_on_item i.fa.fa-chevron-right {
  float: right;
  top: 5px;
  position: relative;
  color: #a97756;
}

.product-line.a_bid_on_item:hover {
  background: #a97756;
}

.product-line.a_bid_on_item:hover .span-line {
  border-color: #a97756;
}

.product-line.a_bid_on_item:hover p.small-text-medium {
  color: #212529;
}

.product-line.a_bid_on_item:hover i.fa.fa-chevron-right {
  color: #212529;
}

.product-line.a_bid_on_item p.small-text-medium {
  padding-left: 10px;
  padding-right: 10px;
}



.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:first-child {
  flex: 0 0 35%;
  max-width: 35%;
}

.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:last-child {
  flex: 0 0 65%;
  max-width: 65%;
}

.product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .product-description {
  text-align: left;
}

.thumbnail_container {
  position: relative;
  padding-bottom: 100%;
  background: #edeef2;
}

.thumbnail_container .thumbnail {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.thumbnail_container .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  max-height: 100%;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: auto !important;
  right: 0;
  bottom: 0;
}

.product-card .card.card-main.product-card.light-green {
  background: #edf2ee !important;
}

.product-card .card.card-main.product-card.light-orange {
  background: #f3ebe5 !important;
}

.product-inner-card .card-main .col-lg-9.col-md-12.col-sm-12 .inner-product-title-top {
  padding-right: 20px;
  /* border-right: 1px solid #ddd; */
}

.product-line.a_bid_on_item button.small-text-medium {
  background: transparent !important;
  padding: 6px 10px;
  display: block;
  width: 100%;
  text-align: left;
}


.count-bid-item.a_bid_on_item button.small-text-medium {
  width: 100%;
  background: transparent;
  padding: 5px 10px;
  text-align: left;
}

.count-bid-item.a_bid_on_item button.small-text-medium i.fa.fa-chevron-right {
  float: right;
  top: 5px;
  position: relative;
}

.count-bid-item.a_bid_on_item:hover button {
  background: #a97756 !important;
}


.bid_modal .modal-header {
  padding: 10px 16px;
  overflow: hidden;
}

.bid_modal .modal-header .modal-title {
  margin: 0;
  font-size: 22px;
  padding: 0;
  color: #a97756;
}

.bid_modal .modal-header button.close {
  background: #a97756;
  opacity: 1;
  font-size: 28px;
  padding: 16px 15px;
  color: #fff;
}

.bid_modal .modal-header button.close span {
  text-shadow: none;
  font-size: 20px;
}

.bid_modal .modal-body .bid_des_detail .top_list ul {
  display: block;
  /* justify-content: center; */
  margin: 15px 37px 0 37px;
  /* flex-direction: column; */
  text-align: center;
}

.bid_modal .modal-body .bid_des_detail .top_list ul li + li {
  margin-top: 10px;
}

.bid_modal .modal-body .bid_des_detail .top_list ul li span {
  font-weight: bold;
  padding-left: 4px;
}


.nax_bid_div {
  max-width: 300px;
  margin: 20px auto 20px;
}

.nax_bid_div ul li {
  padding: 10px 7px;
  border-top: 1px solid #a97756;
  display: flex;
  justify-content: space-between;
}
.nax_bid_div ul li + li {
  border-bottom: 1px solid #a97756;
}

.nax_bid_div ul li span.rgt_dta {
  font-weight: bold;
}

.nax_bid_div .bid_history_btn {
  margin: 20px 0 0;
}

.nax_bid_div .bid_history_btn a {
  font-size: 16px;
  display: block;
  color: #a97756;
}

.bid_onitem_btn {
  margin-bottom: 16px;
}


.bid_onitem_btn a {
  background: transparent !important;
  border-top: 1px solid #a97756 !important;
  border-bottom: 1px solid #a97756 !important;
  color: #000 !important;
  padding: 7px 10px 9px;
}

.nax_bid_div .bid_history_btn a i {
  margin-left: 5px;
  margin-top: 0;
  font-size: 13px;
  vertical-align: -1px;
}

.bid_table_new {
  overflow-x: auto;
  max-width: 80%;
  margin: auto;
}

.bid_table_new table {
  width: 100%;
}

.bid_table_new table tr th {
  background: #a97756;
  color: #fff;
}

.bid_table_new table tr td, .bid_table_new table tr th {
  border: 1px solid #eee;
  padding: 6px 13px;
  font-size: 14px;
}

.bid_notes {
  margin: 20px 0;
  text-align: center;
}

.bid_notes p {
  background: #a97756;
  display: inline-block;
  padding: 0 4px;
  font-size: 14px;
  color: #fff;
}

.bid_onbtn {
  margin: 24px 0 0;
  text-align: center;
}

.bid_onbtn a {
  border-top: 1px solid #a97756;
  border-bottom: 1px solid #a97756;
  padding: 5px 10px;
  display: inline-block;
  font-size: 16px;
  display: inline-block;
  color: #000;
}

.bid_onbtn a i {
  margin-left: 5px;
  margin-top: 0;
  font-size: 13px;
  vertical-align: -1px;
}

.bid_onbtn a:hover {
  background: #a97756;
} 

.bid_onbtn a:hover i {
  color: #000;
}

.bid_history_btn.bid_onbtn.conifrm_btn {
  margin-bottom: 20px;
}

.bid_history_btn.bid_onbtn.conifrm_btn a {
  background: #a97756;
  border: none;
  color: #fff;
}
.save_maxbid_btn a {
  background: #a97756;
  border: none;
  color: #fff;
}

@media (max-width:1700px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
    margin-left: 15px;
  }
}

@media (max-width:1199px) {
  .bottom-header .row.align-items-center .col-lg-10.col-md-9.col-sm-9 .header-content .col-lg-4.col-md-4.col-sm-12:last-child {
    margin-left: 0px;
  }
}

@media (max-width:767px) {
  .product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .product-card .card.card-main.product-card .card-body .product-content .product-img-and-text-main .row.align-items-center.product-image-row .col-lg-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.pend_div .header-links-top.pend_div {
  align-items: center;
}

a.small-text-bold.btn-dagner.pend_btn span.btn.btn-xs.btn-info {
  padding: 3px 9px;
  border-radius: 7px;
}

a.small-text-bold.btn.btn-xs.btn-success.approved_class {
    color: #fff !important;
    padding: 3px 9px;
    border-radius: 7px;
    margin-right: 20px;
}


.custom_new_accordian {
  padding: 0 20px;
}

.custom_new_accordian .accordion {
  margin: 2rem auto;
}

.custom_new_accordian .accordion-item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}

.custom_new_accordian .accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.custom_new_accordian .accordion-item-header::after {
  content: "\002B";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.custom_new_accordian .accordion-item-header.active::after {
  content: "\2212";
}

.custom_new_accordian .accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.custom_new_accordian .accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}



body section.product-list_view .modal-body .gallery-links {
  float: right;
}


/*.new_accordn .card:nth-child(even) .card-main {*/
  /*background: #e6ebf1 !important;*/
/*}*/

body div.new_accordn .container-fluid .row .col-12 .product-inner-card .card-main {
  background: transparent !important;
}


.new_tog_div {
  padding: 17px 20px;
  background: #f2f2f2;
  margin-bottom: 11px;
}



.new_accordn .product-inner-card .view-btn-product {
  position: relative;
  text-align: center;
  display: inline-block;
  float: right;
  border-left: 1px solid #a97756;
  padding-right: 10px;
  /*width: 110px;*/
  width: 75%;
}


.new_accordn .view-btn-product .reg_btn {
  display: none;
}

a.small-text-bold.view-product_list.reg_btn.reg_show {
  display: block;
}

.theme_btn_new {
  padding: 6px 23px 6px 18px;
  border-top: 1px solid #ac7c5c !important;
  border-bottom: 1px solid #ac7c5c !important;
  text-decoration: none;
  color: #000 !important;
  font-weight: 600 !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-left: none;
  border-right: none;
  box-shadow: none;
  font-size: 16px;
  position: relative;
  display: inline-block;
  transition: all .2s linear;
}

.bid_history_btn.bid_onbtn.conifrm_btn button {
  background: #a97756;
  border: none;
  color: #fff;
  padding: 4px 10px;
}

.bid_history_btn.bid_onbtn.conifrm_btn button:disabled {
  background: #8f8178;
  border: none;
  color: #fff;
  padding: 4px 10px;
}

.custom-bth-theme{
  background: #a97756;
  color: #fff;
  padding: 4px 10px;
}




@media (min-width:1200px) {
  .accordion.new_accordn .product-inner-card .card-main .card-body .row.align-items-center .col-lg-10.col-md-10.col-sm-12 .row.align-items-center .col-lg-2.col-md-3.col-sm-12 {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
  }
  
  .accordion.new_accordn .product-inner-card .card-main .card-body .row.align-items-center .col-lg-10.col-md-10.col-sm-12 .row.align-items-center .col-lg-10.col-md-9.col-sm-12 {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
  }
}


.theme_btn_new::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #ac7c5c;
  width: 100%;
  height: 0;
  top: -2px;
  left: 0;
  z-index: -1;
  transition: height 0.2s linear;
}

.theme_btn_new::after {
  content: ' ';
  display: block;
  position: absolute;
  background: #ac7c5c;
  width: 100%;
  height: 0;
  bottom: -2px;
  left: 0;
  z-index: -1;
  transition: height 0.2s linear;
}

.theme_btn_new:hover {
  color: #fff !important;
  border-top: 2px solid #ac7c5c;
  border-right: none;
  border-bottom: 2px solid #ac7c5c;
  border-left: none;
  text-decoration: none;
  background: none;
  opacity: 1;
  filter: opacity(1);
  -moz-filter: opacity(1);
  -webkit-filter: opacity(1);
}

.theme_btn_new:hover::before {
  height: calc(50% + 2px);
}


.theme_btn_new:hover::after {
  height: calc(50% + 2px);
}

.theme_btn_new:hover i {
color: #fff !important;
}

.theme_btn_new:active {
  color: #ac7c5c !important;
}


.header-links-top {
  align-items: center;
}

.header-links-top .cart_btn {
  background: #a97756;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 2px;
}

.fav_table .check_btn {
  text-align: center;
  margin-top: 25px;
}

.theme_btn_new i {
  position: absolute;
  right: 7px;
  top: 12px;
  font-weight: normal;
  font-size: 13px;
}

.order_reivew_wrp .order_list_left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.order_reivew_wrp .order_list_left .order_img {
  width: 100px;
}

.order_reivew_wrp .order_list_left .oder_name {
  width: calc(100% - 100px);
  padding-left: 31px;
}

.order_reivew_wrp .order_list {
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.order_reivew_wrp .order_list_left .oder_name span {
  float: right;
  padding-left: 10px;
}

.order_reivew_wrp .sub_ttl_div {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order_reivew_wrp .sub_ttl_div h2 {
  font-size: 18px;
}


.payment-modal table tr td, .payment-modal table tr th {
  border: none;
  vertical-align: middle;
  padding: 10px 9px;
}

.payment-modal table {
  border: 1px solid #ddd;
  background: #eee;
  border-radius: 5px;
  padding: 3px 7px;
  margin-bottom: 11px;
}

.payment-modal table .card_img img {
  width: 57px;
  margin-right: 10px;
}

.payment-modal table .card_img {
  display: flex;
  align-items: center;
}

.payment-modal table th.card_radio {
  width: 10%;
}

.payment-modal table th.c_img {
  width: 70%;
}

.payment-modal table th.c_date {
  width: 20%;
}

.payment-modal table th.del_icon {
  width: 10%;
  text-align: right;
}

.payment-modal table th.del_icon a {
  background: #a97756;
  color: #fff;
  padding: 8px;
  border-radius: 3px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.invoice_table td, .invoice_table th, .invoice_table small {
  vertical-align: middle;
}

.invoice_table table tr th {
  color: #fff !important;
  font-weight: 500 !important;
}

.intab_wrp .fav_table table tr td, .intab_wrp .fav_table table tr th {
  font-size: 16px !important;
}

.invoice_table table tr th {
  padding: 14px 12px !important;
}

table.plan_table tr td {
  padding: 5px 5px;
}

.quan_list td {
  padding: 14px 12px !important;
} 

@media (max-width:1199px) {
  .intab_wrp {
    padding: 44px 0;
}

h2 {
  font-size: 28px;
}

.breadcrumb-line-top {
  margin-right: 7px;
}

footer.main-footer .header-logo img {
  width: 106px !important;
}

}

@media (max-width:767px) {

  .top-header .header-logo img {
    width: 122px !important;
}

h3 {
  font-size: 22px;
}

 h2 {
  font-size: 22px;
}

.billing_table {
  margin-top: 34px;
}

.thumbnail_container {
  padding-bottom: 55%;
}

.accordion.new_accordn .product-inner-card .card-main .card-body .row.align-items-center .col-lg-10.col-md-10.col-sm-12 .row.align-items-center .col-lg-10.col-md-9.col-sm-12 {
  margin-top: 24px;
}

.new_accordn .product-inner-card .view-btn-product {
  width: 100%;
  margin-top: 19px;
  display: flex;
}

footer.main-footer .row.align-items-center .col-md-6 .col-md-8 {
  margin-top: 16px;
}

}
.txt_declined{
color: red;    
}
.txt_success{
    color: green;
}
.txt_pending{
    color: blue;
}

/*17-9-23*/


.header-links-top ul.breadcrumb-ul {
  justify-content: flex-start;
}

.header-links-top ul.breadcrumb-ul li.link-gridview {
  margin-left: 0;
}

.product-location-btn .product-view-more a.btn.thm-btn {
  color: #fff;
}

.product-location-btn .product-view-more a.btn.thm-btn:hover {
  color: #000;
}

.item_border {
  border-left: 2px solid #a97756;
}

.new_accordn .pend_div span.txt_success, .new_accordn .pend_div span > span {
  position: absolute;
}

body section.product-list_view div.accordion.new_accordn .card:nth-child(even) .card-header .card-main {
  background: #e6ebf1 !important;
}


body section.product-list_view div.accordion.new_accordn .card-main .card-body {
  padding-top: 40px;
  padding-bottom: 40px;
}

.header-links-top ul.breadcrumb-ul li.link-listview {
  margin-left: 0;
}

.nax_bid_div ul li {
  align-items: center;
}

.modal-body .nax_bid_div span.rgt_dta {
  border-left: 1px solid #a97756;
  padding-left: 28px;
  line-height: 1;
}

.nax_bid_div ul li .rgt_dta input {
  height: 34px;
}


.new_tog_div h1, .new_tog_div h2, .new_tog_div h3, .new_tog_div h4, .new_tog_div h5, .new_tog_div h6 {
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 800;
}

.new_tog_div p {
  margin-bottom: 10px;
}

.new_tog_div ul, .new_tog_div ol {
  margin-bottom: 15px;
}

.new_tog_div ul li {
  position: relative;
  padding-left: 16px;
  line-height: 1.4;
}

.new_tog_div ul li + li {
  margin-top: 8px;
}

.new_tog_div ul li:before {
  position: absolute;
  height: 7px;
  width: 7px;
  background: #000;
  content: "";
  left: 0;
  border-radius: 100%;
  top: 8px;
}

.new_tog_div ol {
  padding-left: 15px;
}

.new_tog_div ol li + li {
  margin-top: 5px;
}

.new_tog_div ol li, .new_tog_div ul li, .new_tog_div p, .new_tog_div .row .col-md-12 {
  font-size: 16px;
}

.new_tog_div img {
  max-width: 100%;
}

.new_tog_div p a, .new_tog_div a {
  color: #a97756;
}


.new_tog_div p a:hover, .new_tog_div a:hover {
  color: #000;
}


.new_accordn .pend_div span.txt_success, .new_accordn .pend_div span > span{
    position: inherit !important;
}

.modal-body .nax_bid_div span.rgt_dta label.text_dta {
  line-height: 1.3;
  font-size: 16px;
  color: #8d8a8a;
  margin-right: 10px;
}

.modal-body .nax_bid_div span.rgt_dta {
/*  display: flex;*/
}

.modal-body .nax_bid_div span.rgt_dta input {
  background: transparent;
  border: none;
  padding: 0;
  width: 33px !important;
}

.modal-body .nax_bid_div span.rgt_dta input::-ms-input-placeholder { /* Edge 12-18 */
  font-size: 0;
}

.modal-body .nax_bid_div span.rgt_dta input::placeholder {
  font-size: 0;
}

div#wallet_page table th.card_radio input {
  width: 22px;
}

div#wallet_page h5 {
  margin-bottom: 20px;
}

div#wallet_page table {
  margin: 0;
}

div#wallet_page table th {
  vertical-align: middle;
}

div#wallet_page h5.defa_title {
  margin-top: 28px;
  font-size: 18px;
  margin-bottom: 7px;
}

div#wallet_page .front_radio {
  display: flex;
}

div#wallet_page .front_radio label {
  display: flex;
  width: auto;
  align-items: center;
  margin-right: 20px;
}

div#wallet_page .front_radio label input.form-control {
  width: 20px;
  margin-right: 7px;
}

div#wallet_page table th .card_img img {
  width: 61px;
}

.auction_group_info .row {
  padding-bottom: 22px;
}