/*!

Dan Bisgrove, Callum Roper, Stewart Ehoff and Ollie Walker at Star Digital

ACKNOWLEDGEMENTS
normalize.css | MIT License | https://github.com/necolas/normalize.css
inuit.css | Apache License 2.0 | https://github.com/csswizardry/inuit.css
HTML5 Boilerplate | https://github.com/h5bp/html5-boilerplate
Bootstrap | Apache License 2.0 | https://github.com/twitter/bootstrap
Helium | https://github.com/cbrauckmuller/helium
Font Awesome | SIL Open Font License, MIT License, CC BY 3.0 License | https://github.com/FortAwesome/Font-Awesome

*/
/* THEME */
/*@import "scss/theme/your-filename";*/
/*================================================================================
$ BASE
================================================================================*/
/* ====== VARIABLES ====== */
/* ======
VARIABLES
	- Button Padding
	- Color Pallete
	- Colors
		-- Account
	- Typography
	- Layout
====== */
/*================================================================================
$ BUTTON PADDING
================================================================================*/
/*================================================================================
$ COLOR PALLETE
================================================================================*/
/*================================================================================
$ COLORS
================================================================================*/
/*================================================================================
	$ ACCOUNT
	================================================================================*/
/*================================================================================
$ FUNCTIONAL BUTTON COLOURS
================================================================================*/
/*================================================================================
$ CATALOGUE FILTERS COLOURS
================================================================================*/
/*================================================================================
$ TYPOGRAHPY
================================================================================*/
/*================================================================================
$ LAYOUT
================================================================================*/
/*

MIXINS

*/
/*
  * Output font size using rem and fallback
  *
   `@include font-size(10px);`
  *
*/
/*
  * Output font size using rem and colour
  *
   `@include font-size-colour (10px, ffffff);`
  *
*/
/*
  * color the elements placeholder
  *
   `@include place-holder-color (#007190);`
  *
*/
/*
  * Output uppercase with some letter spacing
  *
   `@include uppercase(0.1em);`
  *
*/
/*
  * Output vendor-prefixed rules
  *
   `@include prefix(border-radius, 4px);`
  *
*/
/*
  * Output clearfix rules
  *
   `@include clearfix();`
  *
*/
/*
  * Output media query block
  *
   `@include media-query(min, 640px){}`
  *
*/
/*
  * Output media query block
  *
   `@include media-query-height(min, 640px){}`
  *
*/
/*
  * Output media query block with min and max limits
  *
   `@include media-query-bracket(640px, 960px){}`
  *
*/
/*
  * Output rule for offscreen image replacement
  *
   `@include offscreen();`
  *
*/
/*
  * Output color using rgba and fallback
  *
   `@include alpha(border-color, rgba(black,0.1), white);`
  *
*/
/*
  * Output percentage using px
  *
   `@include pxtopercent(500px, 1000px);`
  *
*/
/*
  * Set the opacity for all browsers and provide a filter fallback for IE8.
  *
   `@include opacity(0.8);`
  *
*/
/*
  * Center-align a block level element
  *
   `@include center-block;`
  *
*/
/*
  * Absolute Positioned
  *
   `@include abs-pos(10px, 10px, 5px, 15px);`
  *
*/
/*
  * Centre element within the parent
  *
   `@include centered();`
  *
*/
/*
  * Full width element
  *
   `@include full-width();`
  *
*/
/*
  * Input Box Mixin
  *
   `@include input-box();`
  *
*/
/*
  * Vertical Align anything
  *
   `@include vertical-align();`
  *
*/
/*
  * Set float direction and width
  *
   `@include fl-width(left, 100%);`
  *
*/
/*
  * Set the alignment of text in an 'inline-block' element
  *
   `@include display-align(middle);`
  *
*/
/*
  * Break the word if the containing div is too small
  *
   `@include word-wrap();`
  *
*/
/*
  * Add ellipsis onto end of text if overflows the height of element
  *
   `@include ellipsis();`
  *
*/
/*

NORMALIZE

*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Removes default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em; }

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: 600; }

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*

RESET

*/
/**
* Lets make the box model all nice, shall we
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
a, u, ins {
  text-decoration: none; }

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that alt text is visually offset if images dont load.
 */
img {
  font-style: italic;
  max-width: 100%; }

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/* ====== BASE ====== */
/* ======
BASE
    - Classes 
    - Elements
    - Special Element Classes
    - Global Sections
    - General Layout
====== */
/*================================================================================
$ CLASSES
================================================================================*/
*, *:before, *:after {
  margin: 0;
  padding: 0; }

html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-font-smoothing: subpixel-antialiased;
  -ms-font-smoothing: subpixel-antialiased;
  -o-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: auto;
  -ms-text-size-adjust: auto;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }

body {
  background-color: #ffffff;
  color: #4D4D4D;
  font-size: 15px;
  font-weight: 300;
  left: 0;
  line-height: 1.2;
  padding: 0px 0px 0;
  top: 0;
  -webkit-transition: left 0.5s ease 0s;
  -moz-transition: left 0.5s ease 0s;
  -ms-transition: left 0.5s ease 0s;
  -o-transition: left 0.5s ease 0s;
  transition: left 0.5s ease 0s;
  width: 100%; }
  @media screen and (max-width: 999px) {
    body {
      padding: 0; } }
  @media screen and (max-width: 599px) {
    body {
      font-size: 13px;
      padding: 0; } }
  @media screen and (max-width: 599px) {
    body.nav-open {
      left: -60%; } }

/*================================================================================
$ ELEMENTS
================================================================================*/
h1, h2, h3, h4, h5, h6, hgroup, p, blockquote, address, ul, ol, dl, table, fieldset, figure, figcaption, details, pre {
  margin-bottom: 10px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
  font-weight: 400; }

h1, .h1 {
  font-size: 31px; }
  @media screen and (max-width: 999px) {
    h1, .h1 {
      font-size: 28px; } }
  @media screen and (max-width: 599px) {
    h1, .h1 {
      font-size: 24px; } }
  @media screen and (max-width: 499px) {
    h1, .h1 {
      font-size: 20px; } }

h2, .h2 {
  font-size: 21px; }
  @media screen and (max-width: 999px) {
    h2, .h2 {
      font-size: 22px; } }
  @media screen and (max-width: 599px) {
    h2, .h2 {
      font-size: 20px; } }
  @media screen and (max-width: 499px) {
    h2, .h2 {
      font-size: 18px; } }

h3, .h3 {
  font-size: 20px; }
  @media screen and (max-width: 999px) {
    h3, .h3 {
      font-size: 18px; } }
  @media screen and (max-width: 599px) {
    h3, .h3 {
      font-size: 16px; } }
  @media screen and (max-width: 499px) {
    h3, .h3 {
      font-size: 16px; } }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 15px; }

h6, .h6 {
  font-size: 14px; }

p:last-child {
  margin-bottom: 0; }

a {
  color: #4D4D4D;
  cursor: pointer;
  font-weight: 300;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s; }
  a:hover, a:focus, a:active {
    color: #e8292c;
    outline: none;
    text-decoration: underline;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    -ms-transition: all 0.25s ease 0s;
    -o-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s; }

ul {
  list-style: none;
  margin-left: 0; }

li {
  line-height: 1.5; }
  li:first-child {
    margin-top: 0; }

input, textarea {
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #4D4D4D;
  cursor: text;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.5;
  padding: 4px 10px;
  width: 100%; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #969696 !important;
    font-weight: 200; }
  input:-moz-placeholder, textarea:-moz-placeholder {
    color: #969696 !important;
    font-weight: 200; }
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: #969696 !important;
    font-weight: 200; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #969696 !important;
    font-weight: 200; }

input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: auto; }

input[type="radio"] {
  -webkit-appearance: radio;
  width: auto; }

input:focus {
  outline: 0; }

textarea {
  -webkit-appearance: none; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #e3e3e3;
  color: #4D4D4D;
  -webkit-background-size: auto 8px;
  -moz-background-size: auto 8px;
  -ms-background-size: auto 8px;
  -o-background-size: auto 8px;
  background-size: auto 8px;
  background-image: url("../images/select-toggle.png");
  background-position: 97% center;
  background-repeat: no-repeat;
  font-size: 12px;
  outline: medium none;
  padding: 4px 30px 4px 10px; }
  select option {
    color: #4D4D4D;
    padding: 0 10px;
    text-align: left; }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  select {
    padding-right: 0; } }

.checkbox-style input[type=checkbox] {
  display: none; }

.checkbox-style label {
  display: inline-block;
  cursor: pointer;
  margin-right: 15px;
  font-size: 13px;
  font-weight: normal;
  padding-left: 25px;
  position: relative; }
  @media screen and (max-width: 699px) {
    .checkbox-style label {
      font-size: 15px; } }
  .checkbox-style label:before {
    background-color: #ffffff;
    border: 1px solid #F0F0F0;
    border-radius: 3px;
    bottom: -3px;
    content: "";
    display: inline-block;
    height: 19px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    width: 20px; }

.checkbox-style input[type=checkbox]:checked + label:before, .checkbox-style input[type=checkbox]:checked + span + label:before {
  content: "\2713";
  font-size: 16px;
  color: #c81618;
  text-align: center;
  line-height: 17px; }

label {
  cursor: text;
  margin: 0; }

table {
  margin: 10px 0; }

tr {
  border-bottom: none; }
  tr:first-child {
    border-top: none; }

th, td {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-weight: lighter;
  padding: 5px;
  text-align: left;
  vertical-align: middle; }

th {
  border-left: none;
  color: #4D4D4D; }
  th:first-child {
    border-left: none; }

td {
  border-right: none;
  color: #000000; }
  td:first-child {
    border-left: none; }

iframe {
  border: none; }

.primary {
  color: #c81618; }

.secondary {
  color: #3c3c3b; }

.primary-bg {
  background: #c81618; }

.secondary-bg {
  background: #3c3c3b; }

.tertiary-bg {
  background: #cecdcd; }

.offwhite-bg {
  background: #f2f2f2; }

.primary-text {
  color: #c81618; }

.all-break {
  zoom: 1; }
  .all-break:before, .all-break:after {
    content: "";
    display: table; }
  .all-break:after {
    clear: both; }

@media screen and (min-width: 0) and (max-width: 599px) {
  .palm-break {
    zoom: 1; }
    .palm-break:before, .palm-break:after {
      content: "";
      display: table; }
    .palm-break:after {
      clear: both; } }

@media screen and (min-width: 600px) and (max-width: 899px) {
  .lap-break {
    zoom: 1; }
    .lap-break:before, .lap-break:after {
      content: "";
      display: table; }
    .lap-break:after {
      clear: both; } }

@media screen and (min-width: 900px) and (max-width: 119999px) {
  .desk-break {
    zoom: 1; }
    .desk-break:before, .desk-break:after {
      content: "";
      display: table; }
    .desk-break:after {
      clear: both; } }

/*================================================================================
$ SPECIAL ELEMENT CLASSES
================================================================================*/
.tablet {
  display: none; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .tablet {
      display: inline-block; } }

@media screen and (min-width: 0) and (max-width: 599px) {
  .not-tablet {
    display: none;
    padding: 0; } }

.no-display {
  display: none !important; }

.hide-element {
  visibility: hidden; }

section {
  margin: 0 auto;
  padding: 0;
  width: 100%; }
  section .centered {
    padding: 0; }

.close-cross {
  cursor: pointer;
  display: none;
  font-weight: 500;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 35px;
  z-index: 9; }

.show-overlay .close-cross {
  display: inherit; }

.no-click {
  cursor: default !important; }

/*================================================================================
$ GLOBAL SECTIONS
================================================================================*/
.bg-section {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #ffffff;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .bg-section {
      background-attachment: scroll;
      background-repeat: no-repeat;
      background-color: #ffffff;
      background-position: center center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -ms-background-size: cover;
      -o-background-size: cover;
      background-size: cover; } }
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .bg-section {
      background-attachment: scroll;
      background-repeat: no-repeat;
      background-color: #ffffff;
      background-position: center center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -ms-background-size: cover;
      -o-background-size: cover;
      background-size: cover; } }

.moduletable .custom {
  height: 100%;
  zoom: 1; }
  .moduletable .custom:before, .moduletable .custom:after {
    content: "";
    display: table; }
  .moduletable .custom:after {
    clear: both; }

.right-col, .left-col {
  display: inline-block;
  float: left;
  width: 50%; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .right-col, .left-col {
      width: 100%; } }

.central-col {
  display: inline-block;
  float: left;
  width: 100%; }

.centered {
  max-width: 960px;
  margin: 0 auto;
  width: 100%; }

/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.item-page {
  max-width: 960px;
  margin: 0 auto;
  position: relative; }
  @media screen and (max-width: 959px) {
    .item-page {
      padding: 0 25px; } }

.information-link {
  background: url(../../../images/information-icon.png);
  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -ms-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;
  display: block;
  height: 25px;
  width: 25px; }
  @media screen and (max-width: 599px) {
    .information-link {
      height: 21px;
      width: 21px; } }

@media screen and (max-width: 599px) {
  select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
    font-size: 16px; } }

/*

HELPERS

*/
/*
 * Clearfix
 */
.clearfix, .item-page, .invoices__list-holder .invoices__list-item, .lot_details .module-recently-view-items, .lot_detail_right .lot-actions, .lot_detail_right .get-more-info, .bid-basket-holder .bid_basket, .lot-item .lot-actions, .full-width__filters-holder .full-width__top-filters, .full-width__filters-holder .full-width__bottom-filters-inside, .upcoming-auctions, .valuation-form form ul, .news-event-pagination .moduletable,
.cf,
section,
.nav,
.nav--inline,
.nav--stacked,
.nav--tabbed,
.nav--breadcrumb,
.tab__body,
.container,
.grid,
.lot_detail .page .buyers-remorse-notification .buyers-remorse-inner,
.catalogue-details .buyers-remorse-notification .buyers-remorse-inner {
  zoom: 1; }
  .clearfix:before, .item-page:before, .invoices__list-holder .invoices__list-item:before, .lot_details .module-recently-view-items:before, .lot_detail_right .lot-actions:before, .lot_detail_right .get-more-info:before, .bid-basket-holder .bid_basket:before, .lot-item .lot-actions:before, .full-width__filters-holder .full-width__top-filters:before, .full-width__filters-holder .full-width__bottom-filters-inside:before, .upcoming-auctions:before, .valuation-form form ul:before, .news-event-pagination .moduletable:before, .clearfix:after, .item-page:after, .invoices__list-holder .invoices__list-item:after, .lot_details .module-recently-view-items:after, .lot_detail_right .lot-actions:after, .lot_detail_right .get-more-info:after, .bid-basket-holder .bid_basket:after, .lot-item .lot-actions:after, .full-width__filters-holder .full-width__top-filters:after, .full-width__filters-holder .full-width__bottom-filters-inside:after, .upcoming-auctions:after, .valuation-form form ul:after, .news-event-pagination .moduletable:after,
  .cf:before,
  section:before,
  .nav:before,
  .nav--inline:before,
  .nav--stacked:before,
  .nav--tabbed:before,
  .nav--breadcrumb:before,
  .tab__body:before,
  .container:before,
  .grid:before,
  .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner:before,
  .catalogue-details .buyers-remorse-notification .buyers-remorse-inner:before,
  .cf:after,
  section:after,
  .nav:after,
  .nav--inline:after,
  .nav--stacked:after,
  .nav--tabbed:after,
  .nav--breadcrumb:after,
  .tab__body:after,
  .container:after,
  .grid:after,
  .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner:after,
  .catalogue-details .buyers-remorse-notification .buyers-remorse-inner:after {
    content: "";
    display: table; }
  .clearfix:after, .item-page:after, .invoices__list-holder .invoices__list-item:after, .lot_details .module-recently-view-items:after, .lot_detail_right .lot-actions:after, .lot_detail_right .get-more-info:after, .bid-basket-holder .bid_basket:after, .lot-item .lot-actions:after, .full-width__filters-holder .full-width__top-filters:after, .full-width__filters-holder .full-width__bottom-filters-inside:after, .upcoming-auctions:after, .valuation-form form ul:after, .news-event-pagination .moduletable:after,
  .cf:after,
  section:after,
  .nav:after,
  .nav--inline:after,
  .nav--stacked:after,
  .nav--tabbed:after,
  .nav--breadcrumb:after,
  .tab__body:after,
  .container:after,
  .grid:after,
  .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner:after,
  .catalogue-details .buyers-remorse-notification .buyers-remorse-inner:after {
    clear: both; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

.visible {
  display: block !important;
  visibility: visible; }

/*
 * For menu toggling
 */
.is-closed {
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  overflow: hidden; }

.is-open {
  height: auto;
  overflow: visible; }

/*
 * Breakpoint based hiding
 */
.palm {
  display: none !important; }

.lap {
  display: none !important; }

.not-desk {
  display: none !important; }

@media screen and (min-width: 0px) {
  .desk {
    display: none !important; }
  .not-desk {
    display: inherit !important; }
  .lap {
    display: none !important; }
  .not-lap {
    display: inherit !important; }
  .palm {
    display: inherit !important; }
  .not-palm {
    display: none !important; } }

@media screen and (min-width: 600px) and (max-width: 899px) {
  .desk {
    display: none !important; }
  .not-desk {
    display: inherit !important; }
  .lap {
    display: inherit !important; }
  .not-lap {
    display: none !important; }
  .palm {
    display: none !important; }
  .not-palm {
    display: inherit !important; } }

@media screen and (min-width: 900px) {
  .desk {
    display: inherit !important; }
  .not-desk {
    display: none !important; }
  .lap {
    display: none !important; }
  .not-lap {
    display: inherit !important; }
  .palm {
    display: none !important; }
  .not-palm {
    display: inherit !important; } }

/*
 * Overrides for emergency use only ;)
 */
.float--right, .fr {
  float: right !important; }

.float--left, .fl {
  float: left !important; }

.text--left {
  text-align: left  !important; }

.text--center {
  text-align: center !important; }

.text--right {
  text-align: right !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.clear--both, .cb {
  clear: both !important; }

/* ====== OBJECTS ====== */
/* ======
OBJECTS
  - Navs
  - Icons
  - Grid
====== */
/*================================================================================
$ NAVS
================================================================================*/
.nav, .nav--inline, .nav--stacked, .nav--tabbed, .nav--breadcrumb {
  margin-left: 0;
  list-style: none; }
  .nav > li, .nav--inline > li, .nav--stacked > li, .nav--tabbed > li, .nav--breadcrumb > li {
    float: left; }
    .nav > li + li, .nav--inline > li + li, .nav--stacked > li + li, .nav--tabbed > li + li, .nav--breadcrumb > li + li {
      margin-left: 10px; }
    .nav > li > a, .nav--inline > li > a, .nav--stacked > li > a, .nav--tabbed > li > a, .nav--breadcrumb > li > a {
      display: inline-block; }
    .nav > li.active > a, .nav--inline > li.active > a, .nav--stacked > li.active > a, .nav--tabbed > li.active > a, .nav--breadcrumb > li.active > a {
      cursor: default; }

.nav--inline > li {
  display: inline-block;
  float: none; }

.nav--stacked > li {
  display: block;
  float: none;
  margin: 0; }
  .nav--stacked > li + li {
    margin-left: 0; }
  .nav--stacked > li > a {
    display: block; }

.nav--tabbed {
  margin-bottom: 10px;
  border-bottom: 1px solid #cccccc; }
  .nav--tabbed > li {
    margin-bottom: -1px; }
    .nav--tabbed > li + li {
      margin-left: 5px; }
    .nav--tabbed > li > a {
      background: #f2f2f2;
      border: 1px solid #cccccc;
      border-bottom: none;
      border-radius: 9px 9px 0 0;
      -webkit-font-smoothing: antialiased;
      font-weight: bold;
      padding: 5px;
      text-decoration: none; }
    .nav--tabbed > li.active > a {
      background: none;
      border-bottom: 1px solid #ffffff;
      color: inherit; }

.tabbed--full {
  text-align: center; }
  .tabbed--full > li + li {
    margin-left: 0; }
  .tabbed--full > li > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    display: block; }
  .tabbed--full > li:first-child > a {
    -webkit-border-radius: 9px 0 0 0;
    -moz-border-radius: 9px 0 0 0;
    -ms-border-radius: 9px 0 0 0;
    -o-border-radius: 9px 0 0 0;
    border-radius: 9px 0 0 0; }
  .tabbed--full > li:last-child > a {
    -webkit-border-radius: 0 9px 0 0;
    -moz-border-radius: 0 9px 0 0;
    -ms-border-radius: 0 9px 0 0;
    -o-border-radius: 0 9px 0 0;
    border-radius: 0 9px 0 0; }

.tabbed-2 > li {
  width: 50%; }

.tabbed-3 > li {
  width: 33.33333%; }

.tabbed-4 > li {
  width: 25%; }

.tab__body {
  margin-bottom: 10px; }
  .tab__body > :last-child {
    margin-bottom: 0; }

.nav--breadcrumb > li + li {
  margin-left: 5px; }
  .nav--breadcrumb > li + li:before {
    content: "";
    display: inline-block;
    margin-right: 5px; }

@media screen and (max-width: 599px) {
  .nav--breadcrumb > li {
    display: none; }
    .nav--breadcrumb > li:nth-last-child(2) {
      display: block;
      float: none; }
    .nav--breadcrumb > li a {
      display: block; }
  .nav--breadcrumb > li + li {
    margin-left: 0; }
    .nav--breadcrumb > li + li:before {
      content: "";
      float: left; } }

/*================================================================================
$ ICONS
================================================================================*/
[class^="icon-"] span, [class*=" icon-"] span {
  position: absolute;
  left: -9999px; }

/*================================================================================
$ GRID
================================================================================*/
.wrapper {
  clear: both;
  width: 100%; }

.container {
  list-style: none;
  margin: 0 auto;
  max-width: 960px;
  padding-left: 5px;
  padding-right: 5px;
  width: auto; }
  @media screen and (min-width: 600px) {
    .container {
      padding-right: 10px;
      padding-left: 10px; } }

.grid {
  margin-left: -4%; }
  @media screen and (min-width: 900px) {
    .grid {
      margin-left: -2%; } }

.grid--padded-top, .grid--padded {
  padding-top: 10px; }

.grid--padded-bottom, .grid--padded {
  padding-bottom: 10px; }

[class*=span], .grid__cell {
  float: left;
  display: inline;
  min-height: 1px;
  padding-left: 4%;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 900px) {
    [class*=span], .grid__cell {
      padding-left: 2%; } }

@media screen and (max-width: 599px) {
  .palm-4-1 {
    width: 25%; }
  .palm-4-2 {
    width: 50%; }
  .palm-4-3 {
    width: 75%; }
  .palm-4-4 {
    width: 100%; } }

@media screen and (min-width: 600px) and (max-width: 899px) {
  .lap-3-1 {
    width: 33.33333%; }
  .lap-3-2 {
    width: 66.66667%; }
  .lap-3-3 {
    width: 100%; }
  .lap-4-1 {
    width: 25%; }
  .lap-4-2 {
    width: 50%; }
  .lap-4-3 {
    width: 75%; }
  .lap-4-4 {
    width: 100%; }
  .lap-5-1 {
    width: 20%; }
  .lap-5-2 {
    width: 40%; }
  .lap-5-3 {
    width: 60%; }
  .lap-5-4 {
    width: 80%; }
  .lap-5-5 {
    width: 100%; }
  .lap-6-1 {
    width: 16.66667%; }
  .lap-6-2 {
    width: 33.33333%; }
  .lap-6-3 {
    width: 50%; }
  .lap-6-4 {
    width: 66.66667%; }
  .lap-6-5 {
    width: 83.33333%; }
  .lap-6-6 {
    width: 100%; } }

@media screen and (min-width: 900px) {
  .desk-3-1 {
    width: 33.33333%; }
  .desk-3-2 {
    width: 66.66667%; }
  .desk-3-3 {
    width: 100%; }
  .desk-5-1 {
    width: 20%; }
  .desk-5-2 {
    width: 40%; }
  .desk-5-3 {
    width: 60%; }
  .desk-5-4 {
    width: 80%; }
  .desk-5-5 {
    width: 100%; }
  .desk-6-1 {
    width: 16.66667%; }
  .desk-6-2 {
    width: 33.33333%; }
  .desk-6-3 {
    width: 50%; }
  .desk-6-4 {
    width: 66.66667%; }
  .desk-6-5 {
    width: 83.33333%; }
  .desk-6-6 {
    width: 100%; }
  .desk-8-1 {
    width: 12.5%; }
  .desk-8-2 {
    width: 25%; }
  .desk-8-3 {
    width: 37.5%; }
  .desk-8-4 {
    width: 50%; }
  .desk-8-5 {
    width: 62.5%; }
  .desk-8-6 {
    width: 75%; }
  .desk-8-7 {
    width: 87.5%; }
  .desk-8-8 {
    width: 100%; } }

/* ====== BUTTONS ====== */
/* ======
BUTTONS
    - General Buttons
    - Function Buttons
    - Keyframes
====== */
/*================================================================================
$ GENERAL BUTTONS
================================================================================*/
button, input[type="submit"], .btn, .primary-btn, .pay-online-btn, .proceed-invoice-btn, .place-bid-btn, .login-btn, .change-bid-btn, .added-to-wishlist, .hammer-login-btn, .primary-ghost-btn, .view-invoice-btn, .lot-detail-btn, .add-wishlist-btn, .filter-btn, .clear-filters-btn, .secondary-btn, .secondary-ghost-btn, .tertiary-btn, .download-btn, .breakdown-btn, .tertiary-ghost-btn, .invoice_paid_btn, .reset-filters-btn, .view-catalogue-btn, .register-interest-btn, .bid-live-btn, .submit-bids-btn, .cancel-bid-btn, .delete-bid-btn, .remind-me-btn, .add-to-wishlist-btn, .login-to-bid-btn, .view-details-btn, .archived-sales-btn, .coming-soon-btn, .choose-file-btn, .staff-btn, .return-to-cat-btn, .request-valuation, .banner-btn {
  background-color: #c81618;
  border: 2px solid #c81618;
  border-radius: 0px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 15px;
  min-width: 150px;
  padding: 3px 20px 5px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  vertical-align: middle;
  width: auto;
  /*@include media-query(max, $lap-start) {
        font-size: $small-base-font-size;
    }*/ }
  button:hover, button:active, button:focus, input[type="submit"]:hover, input[type="submit"]:active, input[type="submit"]:focus, .btn:hover, .primary-btn:hover, .pay-online-btn:hover, .proceed-invoice-btn:hover, .place-bid-btn:hover, .login-btn:hover, .change-bid-btn:hover, .added-to-wishlist:hover, .hammer-login-btn:hover, .primary-ghost-btn:hover, .view-invoice-btn:hover, .lot-detail-btn:hover, .add-wishlist-btn:hover, .filter-btn:hover, .clear-filters-btn:hover, .secondary-btn:hover, .secondary-ghost-btn:hover, .tertiary-btn:hover, .download-btn:hover, .breakdown-btn:hover, .tertiary-ghost-btn:hover, .invoice_paid_btn:hover, .reset-filters-btn:hover, .view-catalogue-btn:hover, .register-interest-btn:hover, .bid-live-btn:hover, .submit-bids-btn:hover, .cancel-bid-btn:hover, .delete-bid-btn:hover, .remind-me-btn:hover, .add-to-wishlist-btn:hover, .login-to-bid-btn:hover, .view-details-btn:hover, .archived-sales-btn:hover, .coming-soon-btn:hover, .choose-file-btn:hover, .staff-btn:hover, .return-to-cat-btn:hover, .request-valuation:hover, .banner-btn:hover, .btn:active, .primary-btn:active, .pay-online-btn:active, .proceed-invoice-btn:active, .place-bid-btn:active, .login-btn:active, .change-bid-btn:active, .added-to-wishlist:active, .hammer-login-btn:active, .primary-ghost-btn:active, .view-invoice-btn:active, .lot-detail-btn:active, .add-wishlist-btn:active, .filter-btn:active, .clear-filters-btn:active, .secondary-btn:active, .secondary-ghost-btn:active, .tertiary-btn:active, .download-btn:active, .breakdown-btn:active, .tertiary-ghost-btn:active, .invoice_paid_btn:active, .reset-filters-btn:active, .view-catalogue-btn:active, .register-interest-btn:active, .bid-live-btn:active, .submit-bids-btn:active, .cancel-bid-btn:active, .delete-bid-btn:active, .remind-me-btn:active, .add-to-wishlist-btn:active, .login-to-bid-btn:active, .view-details-btn:active, .archived-sales-btn:active, .coming-soon-btn:active, .choose-file-btn:active, .staff-btn:active, .return-to-cat-btn:active, .request-valuation:active, .banner-btn:active, .btn:focus, .primary-btn:focus, .pay-online-btn:focus, .proceed-invoice-btn:focus, .place-bid-btn:focus, .login-btn:focus, .change-bid-btn:focus, .added-to-wishlist:focus, .hammer-login-btn:focus, .primary-ghost-btn:focus, .view-invoice-btn:focus, .lot-detail-btn:focus, .add-wishlist-btn:focus, .filter-btn:focus, .clear-filters-btn:focus, .secondary-btn:focus, .secondary-ghost-btn:focus, .tertiary-btn:focus, .download-btn:focus, .breakdown-btn:focus, .tertiary-ghost-btn:focus, .invoice_paid_btn:focus, .reset-filters-btn:focus, .view-catalogue-btn:focus, .register-interest-btn:focus, .bid-live-btn:focus, .submit-bids-btn:focus, .cancel-bid-btn:focus, .delete-bid-btn:focus, .remind-me-btn:focus, .add-to-wishlist-btn:focus, .login-to-bid-btn:focus, .view-details-btn:focus, .archived-sales-btn:focus, .coming-soon-btn:focus, .choose-file-btn:focus, .staff-btn:focus, .return-to-cat-btn:focus, .request-valuation:focus, .banner-btn:focus {
    background-color: transparent;
    color: #c81618;
    text-decoration: none;
    -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }

.buttons-template {
  padding: 20px 0 0 20px; }
  .buttons-template button, .buttons-template p {
    display: inline-block; }

.primary-ghost-btn, .view-invoice-btn, .lot-detail-btn, .add-wishlist-btn, .filter-btn, .clear-filters-btn {
  background-color: #ffffff;
  border-color: #c81618;
  color: #c81618; }
  .primary-ghost-btn:hover, .view-invoice-btn:hover, .lot-detail-btn:hover, .add-wishlist-btn:hover, .filter-btn:hover, .clear-filters-btn:hover, .primary-ghost-btn:active, .view-invoice-btn:active, .lot-detail-btn:active, .add-wishlist-btn:active, .filter-btn:active, .clear-filters-btn:active, .primary-ghost-btn:focus, .view-invoice-btn:focus, .lot-detail-btn:focus, .add-wishlist-btn:focus, .filter-btn:focus, .clear-filters-btn:focus {
    background-color: #c81618;
    color: #ffffff; }

.secondary-btn {
  background-color: #3c3c3b !important;
  border-color: #3c3c3b !important;
  padding: 5px; }
  .secondary-btn:hover, .secondary-btn:active, .secondary-btn:focus {
    background-color: #ffffff !important;
    color: #3c3c3b !important; }

.secondary-ghost-btn {
  background-color: transparent !important;
  border-color: #3c3c3b !important;
  color: #3c3c3b !important; }
  .secondary-ghost-btn:hover, .secondary-ghost-btn:active, .secondary-ghost-btn:focus {
    background-color: #3c3c3b !important;
    color: #ffffff !important; }

.tertiary-btn, .download-btn, .breakdown-btn {
  background-color: #cecdcd;
  border-color: #cecdcd;
  color: #c81618; }
  .tertiary-btn:hover, .download-btn:hover, .breakdown-btn:hover, .tertiary-btn:active, .download-btn:active, .breakdown-btn:active, .tertiary-btn:focus, .download-btn:focus, .breakdown-btn:focus {
    background-color: #c81618;
    border-color: #c81618;
    color: #ffffff; }

.tertiary-ghost-btn, .invoice_paid_btn {
  background-color: #ffffff;
  border-color: #cecdcd;
  color: #c81618; }
  .tertiary-ghost-btn:hover, .invoice_paid_btn:hover, .tertiary-ghost-btn:active, .invoice_paid_btn:active, .tertiary-ghost-btn:focus, .invoice_paid_btn:focus {
    background-color: #cecdcd;
    color: #ffffff; }

/*================================================================================
$ FUNCTION BUTTONS
================================================================================*/
.reset-filters-btn, .view-catalogue-btn, .register-interest-btn {
  background-color: #c81618;
  border-color: #c81618;
  color: #ffffff;
  font-size: 15px; }
  .reset-filters-btn:hover, .reset-filters-btn:active, .reset-filters-btn:focus, .view-catalogue-btn:hover, .view-catalogue-btn:active, .view-catalogue-btn:focus, .register-interest-btn:hover, .register-interest-btn:active, .register-interest-btn:focus {
    background-color: #ffffff;
    color: #c81618; }

.bid-live-btn, .submit-bids-btn {
  background-color: #c81618;
  border-color: #c81618;
  color: #ffffff; }
  .bid-live-btn:hover, .bid-live-btn:active, .bid-live-btn:focus, .submit-bids-btn:hover, .submit-bids-btn:active, .submit-bids-btn:focus {
    background-color: transparent;
    color: #c81618; }

.banner-btn {
  bottom: 0;
  max-width: 175px;
  position: absolute;
  right: 0;
  width: 100%; }
  @media screen and (max-width: 799px) {
    .banner-btn {
      max-width: none;
      position: static; } }

.change-bid-btn {
  background-color: transparent;
  border-color: #4D4D4D;
  color: #4D4D4D; }
  .change-bid-btn:hover, .change-bid-btn:active, .change-bid-btn:focus {
    background-color: #4D4D4D;
    color: #ffffff; }

.cancel-bid-btn, .delete-bid-btn {
  background-color: transparent !important;
  border-color: #dd2220 !important;
  color: #dd2220 !important;
  max-width: 175px;
  width: 100%; }
  .cancel-bid-btn:hover, .cancel-bid-btn:active, .cancel-bid-btn:focus, .delete-bid-btn:hover, .delete-bid-btn:active, .delete-bid-btn:focus {
    background-color: #dd2220 !important;
    color: #ffffff !important; }

.remind-me-btn {
  background-color: #4d4d4d;
  border-color: #4d4d4d;
  color: #ffffff; }
  .remind-me-btn:hover, .remind-me-btn:active, .remind-me-btn:focus {
    background-color: #ffffff;
    color: #4d4d4d; }

.add-to-wishlist-btn {
  background-color: #e3e3e3 !important;
  border-color: #e3e3e3 !important;
  color: #4D4D4D !important; }
  .add-to-wishlist-btn:hover, .add-to-wishlist-btn:active, .add-to-wishlist-btn:focus {
    background-color: #4D4D4D !important;
    border-color: #4D4D4D !important;
    color: #e3e3e3 !important; }

.login-to-bid-btn {
  background-color: #3c3c3b;
  border-color: #3c3c3b;
  color: #ffffff; }
  .login-to-bid-btn:hover, .login-to-bid-btn:active, .login-to-bid-btn:focus {
    background-color: #ffffff;
    color: #3c3c3b; }

.view-details-btn {
  background-color: #7f9bb1 !important;
  border-color: #7f9bb1 !important;
  color: #ffffff; }
  .view-details-btn:hover, .view-details-btn:active, .view-details-btn:focus {
    background-color: transparent !important;
    color: #7f9bb1 !important; }

.archived-sales-btn {
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
  color: #ffffff; }
  .archived-sales-btn:hover, .archived-sales-btn:active, .archived-sales-btn:focus {
    background-color: transparent !important;
    color: #a6a6a6 !important; }

.lot-detail-btn {
  background-color: #3c3c3b !important;
  border-color: #3c3c3b !important;
  color: #ffffff; }
  .lot-detail-btn:hover, .lot-detail-btn:active, .lot-detail-btn:focus {
    background-color: transparent !important;
    color: #3c3c3b !important; }

.view-invoice-btn, .coming-soon-btn {
  background-color: #4D4D4D !important;
  border-color: #4D4D4D !important;
  color: #ffffff; }
  .view-invoice-btn:hover, .view-invoice-btn:active, .view-invoice-btn:focus, .coming-soon-btn:hover, .coming-soon-btn:active, .coming-soon-btn:focus {
    background-color: transparent !important;
    color: #4D4D4D !important; }

.choose-file-btn {
  background-color: #939393 !important;
  border-color: #939393 !important;
  color: #ffffff;
  margin: 0; }
  .choose-file-btn:hover, .choose-file-btn:active, .choose-file-btn:focus {
    background-color: transparent !important;
    color: #939393 !important; }

.pulse-btn {
  border: 2px solid #c81618;
  box-shadow: 0 0 0 0 #c81618;
  background-color: #c81618;
  cursor: pointer;
  position: relative;
  -webkit-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  -o-animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1); }
  .pulse-btn:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none; }
  .pulse-btn:focus {
    outline: 0; }

.pulse-btn2 {
  border: 2px solid #c81618;
  box-shadow: 0 0 0 0 #c81618;
  background-color: #c81618;
  cursor: pointer;
  position: relative;
  -webkit-animation: pulsetwo 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsetwo 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsetwo 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
  -o-animation: pulsetwo 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsetwo 2.5s infinite cubic-bezier(0.66, 0, 0, 1); }
  .pulse-btn2:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none; }
  .pulse-btn2:focus {
    outline: 0; }

.pulse-btn3 {
  border: 2px solid #c81618;
  box-shadow: 0 0 0 0 #c81618;
  background-color: #c81618;
  cursor: pointer;
  position: relative;
  -webkit-animation: pulsethree 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsethree 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsethree 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  -o-animation: pulsethree 1.75s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsethree 1.75s infinite cubic-bezier(0.66, 0, 0, 1); }
  .pulse-btn3:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    -o-animation: none;
    animation: none; }
  .pulse-btn3:focus {
    outline: 0; }

.stripe-button-el.stripe-button-el {
  background-color: #1275ff !important;
  border: 2px solid #1275ff !important;
  border-radius: 0px !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 15px;
  max-width: 150px;
  min-width: 150px;
  padding: 3px 10px 5px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  vertical-align: middle;
  width: auto;
  color: #ffffff !important; }
  .stripe-button-el.stripe-button-el span {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 600;
    height: 100% !important;
    line-height: normal !important;
    min-height: 0 !important;
    text-shadow: none !important; }
  .stripe-button-el.stripe-button-el:hover, .stripe-button-el.stripe-button-el:active, .stripe-button-el.stripe-button-el:focus {
    background-color: transparent !important;
    color: #1275ff !important;
    -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }

.staff-btn, .return-to-cat-btn {
  background-color: #4D4D4D !important;
  border-color: #4D4D4D !important;
  color: #ffffff; }
  .staff-btn:hover, .staff-btn:active, .staff-btn:focus, .return-to-cat-btn:hover, .return-to-cat-btn:active, .return-to-cat-btn:focus {
    background-color: transparent !important;
    color: #4D4D4D !important; }

.banner-btn:hover, .banner-btn:active, .banner-btn:focus {
  background-color: #ffffff !important; }

.coming-soon-btn {
  background-color: transparent !important;
  border-color: #4D4D4D !important;
  color: #4D4D4D;
  padding: 5px; }
  .coming-soon-btn:hover, .coming-soon-btn:active, .coming-soon-btn:focus {
    background-color: #4D4D4D !important;
    color: #ffffff !important; }

.worldpay-button {
  max-width: 150px;
  padding: 5px 0 !important; }

.bid-live-js {
  min-width: 200px; }

/*================================================================================
$ KEYFRAMES
================================================================================*/
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0); } }

@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0); } }

@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0); } }

@keyframes pulse {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0); } }

@-webkit-keyframes pulsetwo {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  80% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulsetwo {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  80% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-ms-keyframes pulsetwo {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  80% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulsetwo {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  40% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  60% {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15); }
  80% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes pulsethree {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  50% {
    -webkit-transform: scale(1.16);
    -moz-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16); }
  50% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  100% {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-moz-keyframes pulsethree {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  50% {
    -webkit-transform: scale(1.16);
    -moz-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16); }
  50% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  100% {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@-ms-keyframes pulsethree {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  50% {
    -webkit-transform: scale(1.16);
    -moz-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16); }
  50% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  100% {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

@keyframes pulsethree {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  50% {
    -webkit-transform: scale(1.16);
    -moz-transform: scale(1.16);
    -ms-transform: scale(1.16);
    -o-transform: scale(1.16);
    transform: scale(1.16); }
  50% {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08); }
  100% {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); } }

/*================================================================================
$ LAYOUT
================================================================================*/
/* ====== FOOTER ====== */
/* ======
FOOTER
	- EMAIL PREF LINK
	- GENERAL
	- LEFT
	- RIGHT
	- NAV
	- SOCIAL ICONS
====== */
/*================================================================================
$ EMAIL PREF LINK
================================================================================*/
.sign-up-auction-alerts {
  max-width: 1400px;
  background-color: #b5b7b7;
  padding: 0;
  text-transform: uppercase;
  text-align: right;
  margin: 30px auto; }
  .sign-up-auction-alerts a {
    display: block;
    font-weight: 600;
    padding: 15px; }
  .sign-up-auction-alerts form {
    display: none; }

.footer-sign-up p, .footer-sign-up a {
  color: #ffffff;
  max-width: none !important; }

/*================================================================================
$ GENERAL
================================================================================*/
.footer-hold {
  background: #c81618;
  float: left;
  margin-top: 40px;
  width: 100%; }
  .footer-hold .footer-sign-up {
    margin: 0 auto;
    max-width: 960px;
    padding: 10px 0; }
    @media screen and (max-width: 959px) {
      .footer-hold .footer-sign-up {
        padding: 10px; } }
    .footer-hold .footer-sign-up .footer-sign-up__holder {
      background-color: #c81618; }
      .footer-hold .footer-sign-up .footer-sign-up__holder * {
        color: #ffffff; }
      .footer-hold .footer-sign-up .footer-sign-up__holder #container_COLUMN4 input {
        margin-left: 0; }
      .footer-hold .footer-sign-up .footer-sign-up__holder label {
        float: left;
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-size: 15px;
        font-weight: 300;
        margin: 0;
        padding: 0 10px 0 0;
        width: 49%; }
        @media screen and (max-width: 599px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder label {
            font-size: 16px;
            padding-right: 0;
            width: 100%; } }
      .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
        background-color: #ffffff;
        border-radius: 3px;
        color: #4D4D4D;
        float: left;
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-weight: 300;
        height: 30px;
        line-height: normal;
        margin: 0 5px;
        padding: 0 5px;
        width: 49%; }
        .footer-hold .footer-sign-up .footer-sign-up__holder .textInput::-webkit-input-placeholder {
          color: #4D4D4D;
          font-size: 15px;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-weight: lighter; }
        .footer-hold .footer-sign-up .footer-sign-up__holder .textInput:-moz-placeholder {
          color: #4D4D4D;
          font-size: 15px;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-weight: lighter; }
        .footer-hold .footer-sign-up .footer-sign-up__holder .textInput::-moz-placeholder {
          color: #4D4D4D;
          font-size: 15px;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-weight: lighter; }
        .footer-hold .footer-sign-up .footer-sign-up__holder .textInput:-ms-input-placeholder {
          color: #4D4D4D;
          font-size: 15px;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-weight: lighter; }
        @media screen and (max-width: 959px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 425px; } }
        @media screen and (max-width: 929px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 400px; } }
        @media screen and (max-width: 859px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 375px; } }
        @media screen and (max-width: 824px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 350px; } }
        @media screen and (max-width: 789px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 325px; } }
        @media screen and (max-width: 749px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 300px; } }
        @media screen and (max-width: 714px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 275px; } }
        @media screen and (max-width: 679px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 250px; } }
        @media screen and (max-width: 644px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 225px; } }
        @media screen and (max-width: 609px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            max-width: 215px; } }
        @media screen and (max-width: 599px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder .textInput {
            margin-top: 10px;
            width: 100%;
            max-width: none; } }
        .footer-hold .footer-sign-up .footer-sign-up__holder .textInput, .footer-hold .footer-sign-up .footer-sign-up__holder .textInput:active, .footer-hold .footer-sign-up .footer-sign-up__holder .textInput:focus {
          color: #4D4D4D; }
      .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn {
        width: auto;
        float: right; }
        .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle {
          background-color: #3c3c3b;
          border: 2px solid #3c3c3b;
          border-radius: 0;
          font-size: 16px;
          float: left;
          height: 30px;
          line-height: normal;
          margin-bottom: 0;
          min-width: 175px;
          padding: 0;
          text-align: center;
          text-transform: capitalize;
          width: 9%;
          -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
          -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
          -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
          -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
          transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
          @media screen and (max-width: 899px) {
            .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle {
              height: 30px;
              min-width: 150px; } }
          @media screen and (max-width: 599px) {
            .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle {
              margin-top: 10px;
              width: 100%;
              max-width: none; } }
          .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle:hover, .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle:active, .footer-hold .footer-sign-up .footer-sign-up__holder .submit-btn .buttonStyle:focus {
            background-color: transparent;
            color: #ffffff;
            -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
            -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
            -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
            -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
            transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
      .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN4, .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN5 {
        width: 15%; }
        @media screen and (max-width: 599px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN4, .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN5 {
            width: 100%;
            max-width: none; } }
        @media screen and (max-width: 599px) {
          .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN4, .footer-hold .footer-sign-up .footer-sign-up__holder #control_COLUMN5 {
            margin-left: 0; } }
      @media screen and (max-width: 599px) {
        .footer-hold .footer-sign-up .footer-sign-up__holder #control_EMAIL {
          margin-left: 0; } }
  .footer-hold .validation {
    text-align: center;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px; }
  .footer-hold .footer {
    background: #3c3c3b;
    padding: 30px 30px 15px 30px;
    border-bottom: 3px solid #c81618; }
    @media screen and (max-width: 799px) {
      .footer-hold .footer {
        padding: 0 15px; } }
    .footer-hold .footer p, .footer-hold .footer a {
      color: #ffffff !important; }
    .footer-hold .footer p {
      font-size: 14px; }
    .footer-hold .footer a {
      font-size: 13px; }
    .footer-hold .footer .footer-inner {
      margin: 0 auto;
      max-width: 960px;
      padding: 20px 0 10px 0; }
    .footer-hold .footer .footer-logo {
      float: left;
      width: 20%; }
      @media screen and (max-width: 899px) {
        .footer-hold .footer .footer-logo img {
          width: 150px; } }
      @media screen and (max-width: 899px) {
        .footer-hold .footer .footer-logo {
          margin-bottom: 20px;
          text-align: left;
          width: 33.3%; } }
      @media screen and (max-width: 549px) {
        .footer-hold .footer .footer-logo {
          margin-bottom: 20px;
          width: 100%; } }
    .footer-hold .footer .footer-col-1, .footer-hold .footer .footer-col-2 {
      float: left;
      width: 20%; }
      @media screen and (max-width: 899px) {
        .footer-hold .footer .footer-col-1, .footer-hold .footer .footer-col-2 {
          width: 33%; } }
      @media screen and (max-width: 549px) {
        .footer-hold .footer .footer-col-1, .footer-hold .footer .footer-col-2 {
          width: 47%; } }
      .footer-hold .footer .footer-col-1 .col-title, .footer-hold .footer .footer-col-2 .col-title {
        font-weight: 600;
        margin-bottom: 20px; }
      .footer-hold .footer .footer-col-1 .col-address, .footer-hold .footer .footer-col-2 .col-address {
        margin-top: 20px; }
    .footer-hold .footer .footer-col-1 li {
      display: block;
      text-align: left; }
      .footer-hold .footer .footer-col-1 li a {
        background-image: none;
        border: none;
        display: block;
        font-weight: 300;
        padding: 0 0 5px 0 !important; }
    .footer-hold .footer .footer-col-2 a {
      display: block; }
    .footer-hold .footer .footer-col-2 .tel-number {
      font-weight: 500; }
    .footer-hold .footer .footer-col-3 {
      float: left;
      width: 25%; }
      @media screen and (max-width: 899px) {
        .footer-hold .footer .footer-col-3 {
          float: right;
          margin-top: 20px;
          width: 33.3%; } }
      @media screen and (max-width: 549px) {
        .footer-hold .footer .footer-col-3 {
          width: 53%; } }
      @media screen and (max-width: 649px) {
        .footer-hold .footer .footer-col-3 br {
          display: none; } }
      .footer-hold .footer .footer-col-3 a {
        min-width: 200px; }
        @media screen and (max-width: 599px) {
          .footer-hold .footer .footer-col-3 a {
            min-width: 175px; } }
        @media screen and (max-width: 399px) {
          .footer-hold .footer .footer-col-3 a {
            min-width: 150px; } }
    .footer-hold .footer .footer-col-4 {
      float: left;
      text-align: right;
      width: 15%; }
      @media screen and (max-width: 899px) {
        .footer-hold .footer .footer-col-4 {
          clear: left;
          margin-top: -60px;
          text-align: center;
          width: 20.3%; } }
      @media screen and (max-width: 629px) {
        .footer-hold .footer .footer-col-4 {
          margin-top: -43px; } }
      @media screen and (max-width: 549px) {
        .footer-hold .footer .footer-col-4 {
          margin-top: 20px;
          text-align: center;
          width: 100%; } }
      .footer-hold .footer .footer-col-4 img {
        margin: 0 5px; }
      @media screen and (max-width: 549px) {
        .footer-hold .footer .footer-col-4 .social-icons {
          text-align: left; } }
      .footer-hold .footer .footer-col-4 .card-icons {
        padding-top: 25px; }
        @media screen and (max-width: 549px) {
          .footer-hold .footer .footer-col-4 .card-icons {
            text-align: left; } }
    .footer-hold .footer .footer-small-text {
      float: left;
      padding-top: 10px;
      width: 100%; }
      .footer-hold .footer .footer-small-text p {
        color: #ffffff;
        font-size: 11px;
        padding-top: 10px; }

/* ====== GENERAL ====== */
/* ======
GENERAL
	- General
	- Search Overlay
	- System Message
	- Custom Tickbox
	- Email Subscriptions
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.hide-container, .hide-container iframe {
  height: 0 !important;
  visibility: hidden !important;
  width: 0 !important; }

.zoomWindowContainer div {
  border: 1px solid #888888 !important;
  left: 338px !important; }

/*================================================================================
$ SEARCH OVERLAY
================================================================================*/
.search-box-top form {
  box-shadow: -1px -1px 8px -2px #000000;
  z-index: 9999; }

.search-box-top input {
  border: none;
  width: 250px !important; }
  .search-box-top input::-webkit-input-placeholder {
    color: #e0e0e0;
    font-style: italic;
    font-weight: 300; }
  .search-box-top input:-moz-placeholder {
    color: #e0e0e0;
    font-style: italic;
    font-weight: 300; }
  .search-box-top input::-moz-placeholder {
    color: #e0e0e0;
    font-style: italic;
    font-weight: 300; }
  .search-box-top input:-ms-input-placeholder {
    color: #e0e0e0;
    font-style: italic;
    font-weight: 300; }

.search-box-top a {
  background-color: #c81618;
  color: #ffffff !important;
  float: right;
  padding: 4px 0 4px 10px !important;
  text-align: left;
  width: 272px; }
  @media screen and (max-width: 449px) {
    .search-box-top a {
      padding: 12px 0 12px 10px !important; } }

/*================================================================================
$ SECURE PAYMENT PAGE
================================================================================*/
.makepayment .makepayment-page-holder, .step4 .makepayment-page-holder {
  padding: 40px 0;
  max-width: 960px;
  margin: 0 auto; }
  .makepayment .makepayment-page-holder .account-details-holder, .step4 .makepayment-page-holder .account-details-holder {
    width: 100%;
    max-width: 700px;
    float: left; }
    .makepayment .makepayment-page-holder .account-details-holder .fieldLabel, .step4 .makepayment-page-holder .account-details-holder .fieldLabel {
      float: left !important; }
    .makepayment .makepayment-page-holder .account-details-holder .formFooter, .step4 .makepayment-page-holder .account-details-holder .formFooter {
      float: left; }
  .makepayment .makepayment-page-holder .payment-holder .payment-item-1, .step4 .makepayment-page-holder .payment-holder .payment-item-1 {
    float: left;
    width: 49%; }
    @media screen and (max-width: 699px) {
      .makepayment .makepayment-page-holder .payment-holder .payment-item-1, .step4 .makepayment-page-holder .payment-holder .payment-item-1 {
        width: 100%; } }
  .makepayment .makepayment-page-holder .payment-holder .payment-item-2, .step4 .makepayment-page-holder .payment-holder .payment-item-2 {
    float: right;
    width: 49%; }
    @media screen and (max-width: 699px) {
      .makepayment .makepayment-page-holder .payment-holder .payment-item-2, .step4 .makepayment-page-holder .payment-holder .payment-item-2 {
        width: 100%; } }
  .makepayment .makepayment-page-holder .payment-holder .payment-item-3, .step4 .makepayment-page-holder .payment-holder .payment-item-3 {
    float: left;
    margin: 10px 0;
    width: 100%; }
    @media screen and (max-width: 699px) {
      .makepayment .makepayment-page-holder .payment-holder .payment-item-3, .step4 .makepayment-page-holder .payment-holder .payment-item-3 {
        width: 100%; } }
  .makepayment .makepayment-page-holder .payment-holder .buttons-item, .step4 .makepayment-page-holder .payment-holder .buttons-item {
    float: left;
    margin-top: 10px;
    width: 100%; }
  .makepayment .makepayment-page-holder .payment-holder .mpayment-btn, .step4 .makepayment-page-holder .payment-holder .mpayment-btn {
    float: right; }
    @media screen and (max-width: 699px) {
      .makepayment .makepayment-page-holder .payment-holder .mpayment-btn, .step4 .makepayment-page-holder .payment-holder .mpayment-btn {
        width: 100%; } }
  .makepayment .makepayment-page-holder .help-holder, .step4 .makepayment-page-holder .help-holder {
    margin-top: 20px; }
    .makepayment .makepayment-page-holder .help-holder .disclaimer-text, .step4 .makepayment-page-holder .help-holder .disclaimer-text {
      font-size: 11px; }

.stripe_final .makepayment-page-holder {
  margin: 0 auto;
  max-width: 960px;
  padding-top: 40px; }
  .stripe_final .makepayment-page-holder .invoices__top-text {
    text-align: left !important; }

/*================================================================================
$ SYSTEM MESSAGE
================================================================================*/
#system-message-container {
  margin: 0 auto;
  max-width: 960px; }

/*================================================================================
$ CUSTOM TICKBOX
================================================================================*/
/*================================================================================
$ EMAIL SUBSCRIPTIONS
================================================================================*/
.email-quick-signup .item-page {
  max-width: 740px !important; }
  @media screen and (max-width: 999px) {
    .email-quick-signup .item-page {
      max: 840px; } }
  .email-quick-signup .item-page h1 {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    margin-top: 30px;
    padding: 15px 0 !important; }
  .email-quick-signup .item-page p {
    margin-bottom: 15px; }
  .email-quick-signup .item-page .email-subscription-form {
    float: left;
    padding-top: 25px;
    width: 100%; }
    .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 {
      width: 50%;
      float: left; }
      @media screen and (max-width: 699px) {
        .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 {
          width: 100%; } }
      .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 input {
        max-width: 280px;
        float: right; }
        @media screen and (max-width: 959px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 input {
            max-width: 230px; } }
        @media screen and (max-width: 749px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 input {
            width: 100%;
            max-width: none; } }
      .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 .fieldLabel {
        width: auto;
        float: left;
        margin-top: 5px;
        margin-right: 10px; }
        @media screen and (max-width: 749px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN4 .fieldLabel {
            margin-left: 0;
            padding: 5px 0; } }
    .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 {
      width: 50%;
      float: left; }
      @media screen and (max-width: 749px) {
        .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 {
          width: 100%;
          max-width: none; } }
      .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 input {
        max-width: 280px;
        float: right; }
        @media screen and (max-width: 959px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 input {
            max-width: 230px; } }
        @media screen and (max-width: 749px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 input {
            width: 100%;
            max-width: none; } }
      .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 .fieldLabel {
        width: auto;
        float: left;
        margin-top: 5px;
        margin-right: 5px;
        margin-left: 7px; }
        @media screen and (max-width: 749px) {
          .email-quick-signup .item-page .email-subscription-form #container_COLUMN5 .fieldLabel {
            margin-left: 0;
            padding: 5px 0; } }
    .email-quick-signup .item-page .email-subscription-form #control_EMAIL {
      max-width: 650px;
      float: right;
      margin: 10px 0; }
      @media screen and (max-width: 959px) {
        .email-quick-signup .item-page .email-subscription-form #control_EMAIL {
          max-width: 575px; } }
      @media screen and (max-width: 749px) {
        .email-quick-signup .item-page .email-subscription-form #control_EMAIL {
          width: 100%;
          max-width: none; } }
    .email-quick-signup .item-page .email-subscription-form .fieldLabel {
      float: left;
      width: auto;
      margin-top: 15px; }
    .email-quick-signup .item-page .email-subscription-form .email-prefs {
      padding-top: 10px;
      clear: both; }
    .email-quick-signup .item-page .email-subscription-form .primary-btn, .email-quick-signup .item-page .email-subscription-form .pay-online-btn, .email-quick-signup .item-page .email-subscription-form .proceed-invoice-btn, .email-quick-signup .item-page .email-subscription-form .place-bid-btn, .email-quick-signup .item-page .email-subscription-form .login-btn, .email-quick-signup .item-page .email-subscription-form .change-bid-btn, .email-quick-signup .item-page .email-subscription-form .added-to-wishlist, .email-quick-signup .item-page .email-subscription-form .hammer-login-btn {
      margin-top: 20px; }
      @media screen and (max-width: 749px) {
        .email-quick-signup .item-page .email-subscription-form .primary-btn, .email-quick-signup .item-page .email-subscription-form .pay-online-btn, .email-quick-signup .item-page .email-subscription-form .proceed-invoice-btn, .email-quick-signup .item-page .email-subscription-form .place-bid-btn, .email-quick-signup .item-page .email-subscription-form .login-btn, .email-quick-signup .item-page .email-subscription-form .change-bid-btn, .email-quick-signup .item-page .email-subscription-form .added-to-wishlist, .email-quick-signup .item-page .email-subscription-form .hammer-login-btn {
          width: 100%; } }
  .email-quick-signup .item-page .cbft_checkbox, .email-quick-signup .item-page .cbft_multicheckbox {
    clear: both;
    display: block;
    margin: 0 auto;
    max-width: 960px;
    padding-bottom: 5px;
    position: relative;
    width: auto; }
    .email-quick-signup .item-page .cbft_checkbox > div, .email-quick-signup .item-page .cbft_multicheckbox > div {
      float: left;
      width: auto; }
    .email-quick-signup .item-page .cbft_checkbox label, .email-quick-signup .item-page .cbft_multicheckbox label {
      float: right;
      text-align: left;
      width: 95%; }
      @media screen and (max-width: 599px) {
        .email-quick-signup .item-page .cbft_checkbox label, .email-quick-signup .item-page .cbft_multicheckbox label {
          width: 90%; } }
  .email-quick-signup .item-page #cbfr_130 input, .email-quick-signup .item-page #cbfr_131 input, .email-quick-signup .item-page #cbfr_132 input {
    clear: left;
    margin-right: 12px;
    margin-top: 5px;
    float: left; }
  .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 label input, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 label input, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 label input {
    margin-top: 3px; }
  .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_131 span label:first-child, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_131 span label:first-child, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_131 span label:first-child {
    float: left;
    margin-left: 5%;
    width: 45%; }
    @media screen and (max-width: 599px) {
      .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_131 span label:first-child, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_131 span label:first-child, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_130 span label:first-child, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_131 span label:first-child {
        width: 100%; } }
  .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, .email-quick-signup .item-page #cbfr_130 .cb_field.col-sm-9 #cbfv_131 .uncheck-all, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, .email-quick-signup .item-page #cbfr_131 .cb_field.col-sm-9 #cbfv_131 .uncheck-all, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, .email-quick-signup .item-page #cbfr_132 .cb_field.col-sm-9 #cbfv_131 .uncheck-all {
    float: left;
    width: 100%; }

/*================================================================================
$ CHANGE PASSWORD OVERLAY
================================================================================*/
#TB_window {
  background-color: #F0F0F0 !important;
  height: 300px;
  padding: 15px;
  top: 30% !important;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 4px solid #c81618 !important; }
  @media screen and (max-width: 599px) {
    #TB_window {
      top: 20% !important; } }
  #TB_window a {
    float: right;
    font-size: 15px !important; }
  #TB_window #form_password h3 {
    color: #3c3c3b;
    margin-bottom: 20px; }
  #TB_window #form_password p {
    clear: left;
    float: left;
    padding: 5px 0 !important;
    width: 20%; }
    @media screen and (max-width: 599px) {
      #TB_window #form_password p {
        width: 100%;
        margin: 0; } }
  #TB_window #form_password input#old_pass {
    float: right;
    width: 75%; }
    @media screen and (max-width: 599px) {
      #TB_window #form_password input#old_pass {
        width: 100%; } }
  #TB_window #form_password input#new_pass {
    float: right;
    width: 75%; }
    @media screen and (max-width: 599px) {
      #TB_window #form_password input#new_pass {
        width: 100%; } }
  #TB_window #form_password .primary-btn, #TB_window #form_password .pay-online-btn, #TB_window #form_password .proceed-invoice-btn, #TB_window #form_password .place-bid-btn, #TB_window #form_password .login-btn, #TB_window #form_password .change-bid-btn, #TB_window #form_password .added-to-wishlist, #TB_window #form_password .hammer-login-btn {
    clear: right;
    float: right !important;
    margin: 20px 0; }

/* ====== HEADER ====== */
/* ======
HEADER
	- GENERAL
	- LOGO HOLDER
	- SEARCH / SIGN IN
	- MAIN MENU STYLES
	- NAV
	- MOBILE HEADER STYLES
====== */
/*================================================================================
$ CLASSES
================================================================================*/
body.fixed-header-js .header-wrapper {
  opacity: 0.8; }

@media screen and (min-width: 960px) {
  .header-wrapper.scroll-magic .header-section .logo-holder img {
    -webkit-transition: opacity 0.6s ease-in-out 0s;
    -moz-transition: opacity 0.6s ease-in-out 0s;
    -ms-transition: opacity 0.6s ease-in-out 0s;
    -o-transition: opacity 0.6s ease-in-out 0s;
    transition: opacity 0.6s ease-in-out 0s; }
  .header-wrapper.scroll-magic .header-section .logo-holder .non-scroll-image {
    opacity: 0; }
  .header-wrapper.scroll-magic .header-section .logo-holder .scroll-image {
    opacity: 1;
    margin-top: 5px; } }

.header-wrapper {
  background: #ffffff;
  height: auto;
  margin-top: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; }
  @media screen and (max-width: 959px) {
    .header-wrapper {
      height: auto; } }
  .header-wrapper .header-container {
    border-bottom: 3px solid #c81618;
    height: 84px; }
  .header-wrapper .header-section {
    height: auto;
    margin: 0 auto;
    max-width: 960px;
    width: 100%; }
    .header-wrapper .header-section ul {
      margin-bottom: 0; }
    .header-wrapper .header-section .logo-holder {
      float: none;
      height: auto;
      margin: 0;
      max-width: 175px;
      padding-top: 0;
      position: absolute;
      width: 20%; }
      @media screen and (max-width: 959px) {
        .header-wrapper .header-section .logo-holder {
          float: left;
          padding-left: 10px;
          padding-top: 18px;
          position: static;
          width: 40%; } }
      @media screen and (max-width: 599px) {
        .header-wrapper .header-section .logo-holder {
          width: 60%;
          max-width: 165px;
          padding-top: 20px; } }
      .header-wrapper .header-section .logo-holder a {
        display: block;
        position: relative; }
      @media screen and (min-width: 960px) {
        .header-wrapper .header-section .logo-holder img {
          left: 0;
          position: absolute;
          -webkit-transition: opacity 0.6s ease-in-out 0s;
          -moz-transition: opacity 0.6s ease-in-out 0s;
          -ms-transition: opacity 0.6s ease-in-out 0s;
          -o-transition: opacity 0.6s ease-in-out 0s;
          transition: opacity 0.6s ease-in-out 0s; } }
      .header-wrapper .header-section .logo-holder .non-scroll-image {
        opacity: 0;
        top: 0; }
        @media screen and (min-width: 960px) {
          .header-wrapper .header-section .logo-holder .non-scroll-image {
            opacity: 1; } }
        @media screen and (max-width: 959px) {
          .header-wrapper .header-section .logo-holder .non-scroll-image {
            display: none; } }
      .header-wrapper .header-section .logo-holder .scroll-image {
        opacity: 0;
        top: 15px; }
        @media screen and (max-width: 959px) {
          .header-wrapper .header-section .logo-holder .scroll-image {
            display: block;
            opacity: 1; } }
    .header-wrapper .header-section .header-right {
      float: right;
      height: auto;
      margin: 0;
      padding-right: 10px;
      width: 92%; }
      @media screen and (max-width: 959px) {
        .header-wrapper .header-section .header-right {
          width: 60%; } }
      @media screen and (max-width: 749px) {
        .header-wrapper .header-section .header-right {
          width: auto; } }
      .header-wrapper .header-section .header-right .header-links {
        float: right;
        width: 25%; }
        @media screen and (max-width: 959px) {
          .header-wrapper .header-section .header-right .header-links {
            width: 100%; } }
      .header-wrapper .header-section .header-right .header-nav {
        float: right;
        width: 65%;
        margin-top: 5px; }
        @media screen and (max-width: 959px) {
          .header-wrapper .header-section .header-right .header-nav {
            float: none;
            max-width: 320px;
            width: auto; } }

body.menu-active .header-nav {
  right: -15px; }

/*================================================================================
$ LOGO HOLDER
================================================================================*/
.logo-holder a {
  display: inline-block;
  width: 100%; }

/*================================================================================
$ SEARCH/SIGN IN
================================================================================*/
.header-right .header-links {
  float: right;
  text-align: right; }
  .header-right .header-links li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-top: 5px; }
    @media screen and (max-width: 959px) {
      .header-right .header-links li.link {
        display: none; } }
  .header-right .header-links a {
    color: #3c3c3b;
    display: block;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    padding: 25px 10px;
    text-decoration: none;
    text-transform: none; }
    @media screen and (max-width: 1049px) {
      .header-right .header-links a {
        padding: 25px 5px; } }
    @media screen and (max-width: 1219px) {
      .header-right .header-links a {
        padding: 25px 5px; } }
    @media screen and (max-width: 959px) {
      .header-right .header-links a {
        padding: 20px 5px; } }
  @media screen and (max-width: 1219px) {
    .header-right .header-links .not-tablet {
      display: none; } }
  .header-right .header-links .tablet {
    display: none;
    max-width: 35px; }
    @media screen and (max-width: 1219px) {
      .header-right .header-links .tablet {
        display: block;
        padding: 20px 10px; } }
    @media screen and (max-width: 959px) {
      .header-right .header-links .tablet {
        padding: 15px 5px; } }
  @media screen and (min-width: 960px) and (max-width: 119999px) {
    .header-right .header-links .nav-child {
      background: #c81618;
      -webkit-background: rgba(153, 153, 163, 0.95);
      -moz-background: rgba(153, 153, 163, 0.95);
      -ms-background: rgba(153, 153, 163, 0.95);
      -o-background: rgba(153, 153, 163, 0.95);
      background: rgba(153, 153, 163, 0.95);
      display: none;
      left: 0;
      position: absolute;
      top: 72px; } }
  @media screen and (min-width: 960px) and (max-width: 119999px) {
    .header-right .header-links li.parent:hover > .nav-child {
      display: block; } }
  .header-right .header-links li.parent li {
    border-top: 1px solid #ffffff;
    min-width: 200px;
    opacity: 0.7;
    width: 100%; }
    .header-right .header-links li.parent li:hover {
      opacity: 1; }
    @media screen and (min-width: 0px) and (max-width: 959px) {
      .header-right .header-links li.parent li:first-child {
        border-top: none; } }
    .header-right .header-links li.parent li a {
      padding: 10px; }
  .header-right .header-links li.parent .parent .nav-child {
    left: 50px;
    top: 32px; }

.header-right li.search-trigger {
  position: inherit; }

.header-right .search-box-top {
  right: -1500px;
  max-width: 272px;
  position: absolute;
  width: 100%;
  -webkit-transition: right 0.5s ease-in-out 0s;
  -moz-transition: right 0.5s ease-in-out 0s;
  -ms-transition: right 0.5s ease-in-out 0s;
  -o-transition: right 0.5s ease-in-out 0s;
  transition: right 0.5s ease-in-out 0s; }
  .header-right .search-box-top form {
    position: relative; }
  .header-right .search-box-top .search-box {
    border: 2px solid #41a940;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    padding: 10px;
    width: 100%; }
  .header-right .search-box-top .search-query {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ffffff; }
  .header-right .search-box-top input.button {
    border: medium none;
    display: none;
    padding: 8px;
    position: absolute;
    right: 2px;
    top: 2px; }
  .header-right .search-box-top input.button-arrows {
    display: none; }

.header-right .mobile-sign-out {
  display: none; }
  @media screen and (max-width: 959px) {
    .header-right .mobile-sign-out {
      display: block; } }

body.search-active-js .search-box-top {
  right: 0; }

.submit-bids-link a.green-btn, .submit-bids-link .bid-basket-holder .submit-bids a, .bid-basket-holder .submit-bids .submit-bids-link a, .submit-bids-link a.bid-live-btn, .submit-bids-link a.submit-bids-btn {
  min-width: 0;
  padding: 28px 8px; }
  .submit-bids-link a.green-btn:hover, .submit-bids-link .bid-basket-holder .submit-bids a:hover, .bid-basket-holder .submit-bids .submit-bids-link a:hover, .submit-bids-link a.bid-live-btn:hover, .submit-bids-link a.submit-bids-btn:hover {
    color: #41a940; }

.responsive-sumbit-bids {
  display: none;
  padding: 2px;
  width: 100%; }
  @media screen and (max-width: 959px) {
    .responsive-sumbit-bids {
      display: inline-block; } }

/*================================================================================
$ MAIN MENU STYLES
================================================================================*/
.menu {
  text-align: center; }
  .menu li {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle; }
    .menu li.triggered > ul, .menu li:hover > ul {
      border-bottom: 3px solid #c81618;
      max-height: 700px;
      -webkit-transition: max-height 0.75s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -moz-transition: max-height 0.75s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -ms-transition: max-height 0.75s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -o-transition: max-height 0.75s ease-in-out 0s, border 0.5s ease-in-out 0s;
      transition: max-height 0.75s ease-in-out 0s, border 0.5s ease-in-out 0s; }
    @media screen and (max-width: 959px) {
      .menu li.clicked .separator {
        background-image: url("../images/mobile-menu-down-arrow.png");
        background-size: 15px;
        border: none; } }
    @media screen and (max-width: 599px) {
      .menu li.clicked .separator {
        background-position: 90% center; } }
    .menu li a, .menu li .separator {
      color: #3c3c3b;
      display: block;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 1;
      padding: 25px 9px;
      text-decoration: none;
      text-transform: none;
      -webkit-transition: color 0.5s ease-in-out 0s;
      -moz-transition: color 0.5s ease-in-out 0s;
      -ms-transition: color 0.5s ease-in-out 0s;
      -o-transition: color 0.5s ease-in-out 0s;
      transition: color 0.5s ease-in-out 0s; }
      @media screen and (max-width: 959px) {
        .menu li a, .menu li .separator {
          background-image: url("../images/mobile-menu-right-arrow.png");
          background-position: 95% center;
          background-repeat: no-repeat;
          background-size: 10px;
          border-bottom: 1px solid #b0b0b0;
          font-size: 16px;
          font-weight: 200;
          padding: 20px 10px !important; } }
      @media screen and (max-width: 599px) {
        .menu li a, .menu li .separator {
          background-position: 90% center; } }
      .menu li a:hover, .menu li .separator:hover {
        color: #c81618;
        -webkit-transition: color 0.5s ease-in-out 0s;
        -moz-transition: color 0.5s ease-in-out 0s;
        -ms-transition: color 0.5s ease-in-out 0s;
        -o-transition: color 0.5s ease-in-out 0s;
        transition: color 0.5s ease-in-out 0s; }
    .menu li ul {
      background-color: #ffffff;
      border-bottom: 3px solid #ffffff;
      box-shadow: 0px -7px 6px -7px #d7d7d7;
      margin: 0;
      max-height: 0;
      overflow: hidden;
      position: absolute;
      top: 50px;
      width: auto;
      -webkit-transition: max-height 0.5s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -moz-transition: max-height 0.5s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -ms-transition: max-height 0.5s ease-in-out 0s, border 0.5s ease-in-out 0s;
      -o-transition: max-height 0.5s ease-in-out 0s, border 0.5s ease-in-out 0s;
      transition: max-height 0.5s ease-in-out 0s, border 0.5s ease-in-out 0s; }
      .menu li ul li {
        display: block;
        padding: 7px 0 7px 10px;
        text-align: left;
        width: auto; }
        .menu li ul li:last-child {
          padding-bottom: 15px; }
        .menu li ul li span {
          padding: 0 30px 0 0 !important; }
          @media screen and (max-width: 959px) {
            .menu li ul li span {
              padding: 15px 10px !important; } }
        .menu li ul li a {
          background: none;
          margin: 0;
          padding: 0 30px 0 0; }

.mobile-sign-out {
  background-color: #c81618;
  font-size: 15px;
  float: left;
  padding: 15px 10px;
  width: 100%; }
  .mobile-sign-out a {
    color: #ffffff; }

.login a {
  color: #c81618 !important; }

/*================================================================================
$ NAV
================================================================================*/
@media screen and (min-width: 960px) and (max-width: 119999px) {
  .header-nav {
    float: right; }
    .header-nav .menu-close-btn {
      display: none; }
    .header-nav .dashboard-menu-arrow {
      display: none; }
  .header-right .header-links .menu-trigger {
    display: none; } }

/*================================================================================
$ MOBILE HEADER STYLES
================================================================================*/
@media screen and (max-width: 959px) {
  div.header-nav {
    background: #ffffff;
    border-left: 3px solid #c81618;
    height: 100%;
    max-height: 100%;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    right: -25%;
    top: 0;
    padding: 0px;
    position: fixed;
    width: 25%;
    z-index: 999;
    -webkit-transition: right 0.5s ease 0s;
    -moz-transition: right 0.5s ease 0s;
    -ms-transition: right 0.5s ease 0s;
    -o-transition: right 0.5s ease 0s;
    transition: right 0.5s ease 0s; } }
  @media screen and (max-width: 959px) and (max-width: 1049px) {
    div.header-nav {
      right: -359px; } }

@media screen and (max-width: 959px) {
    div.header-nav .menu-close-btn {
      background: #cecdcd;
      color: #4D4D4D;
      display: inline-block;
      font-size: 15px;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      padding: 15px;
      text-transform: none;
      width: 100%; }
      div.header-nav .menu-close-btn img {
        float: right;
        position: absolute;
        right: 15px;
        top: 5px;
        width: 30px; }
    div.header-nav .menu {
      float: left;
      padding: 0;
      width: 100%; }
      div.header-nav .menu li {
        background: none;
        display: block;
        float: none;
        font-size: 15px;
        height: auto;
        line-height: 1;
        max-width: 265px;
        padding: 0;
        position: relative;
        width: 100%;
        z-index: 400; } }
      @media screen and (max-width: 959px) and (max-width: 959px) {
        div.header-nav .menu li {
          max-width: none; } }

@media screen and (max-width: 959px) {
        div.header-nav .menu li:hover > ul {
          display: none; }
        div.header-nav .menu li a {
          background: none;
          border: none;
          box-shadow: none;
          color: #3c3c3b;
          cursor: pointer;
          display: inline-block;
          float: none;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-style: normal;
          font-size: 14px;
          font-weight: 200;
          height: auto;
          letter-spacing: inherit;
          line-height: 1.5;
          padding: 10px 5px !important;
          text-align: left;
          text-decoration: none;
          text-transform: none;
          width: 100%; }
          div.header-nav .menu li a:hover {
            text-decoration: none; }
        div.header-nav .menu li .item-364 span, div.header-nav .menu li .item-365 span {
          background-image: none;
          font-size: 14px;
          font-weight: 200;
          padding: 10px 5px !important; }
        div.header-nav .menu li span {
          padding: 10px 5px;
          text-align: left; }
    div.header-nav .parent ul {
      background: none;
      border-bottom: 1px solid #b0b0b0;
      box-shadow: none;
      display: none;
      left: 0;
      min-width: 100%;
      padding: 0 25px;
      position: inherit;
      top: 0; }
    div.header-nav .dashboard-menu-arrow {
      cursor: pointer;
      padding: 0 !important;
      position: absolute;
      right: 30px;
      top: 10px;
      width: 15px; }
    div.header-nav li.clicked:hover > ul {
      display: block; }
    div.header-nav li.clicked > ul {
      display: block; } }

/*================================================================================
$ RIBBON
================================================================================*/
.bidbasket {
  background-color: #F0F0F0;
  position: fixed;
  top: 67px;
  width: 100%;
  z-index: 999; }
  .bidbasket .login-bidbasket {
    max-width: 700px;
    margin: 0 auto;
    font-size: 13px;
    list-style: none;
    padding-top: 10px; }
    .bidbasket .login-bidbasket .bid-basket {
      width: 25%;
      float: left;
      font-weight: 500;
      text-align: right; }
      @media screen and (max-width: 649px) {
        .bidbasket .login-bidbasket .bid-basket {
          width: 33%; } }
      .bidbasket .login-bidbasket .bid-basket p {
        float: right;
        color: #c81618;
        margin: 10px 0; }
      .bidbasket .login-bidbasket .bid-basket img {
        margin-top: 7px;
        margin-right: 7px; }
    .bidbasket .login-bidbasket .total-bids {
      width: 15%;
      text-align: center;
      float: left;
      font-weight: 500;
      margin: 10px 0; }
      @media screen and (max-width: 649px) {
        .bidbasket .login-bidbasket .total-bids {
          width: 33%; } }
      .bidbasket .login-bidbasket .total-bids .basket-text {
        display: block; }
    .bidbasket .login-bidbasket .bid-amount {
      width: 20%;
      float: left;
      margin: 10px 0;
      text-align: center;
      font-weight: 500; }
      @media screen and (max-width: 649px) {
        .bidbasket .login-bidbasket .bid-amount {
          width: 33%; } }
    .bidbasket .login-bidbasket .login-link.bid_submit {
      float: right;
      width: 35%;
      margin-top: 5px;
      text-align: center; }
      @media screen and (max-width: 649px) {
        .bidbasket .login-bidbasket .login-link.bid_submit {
          width: 100%; } }
      .bidbasket .login-bidbasket .login-link.bid_submit .secondary-btn {
        min-width: 120px;
        font-size: 13px; }
        @media screen and (max-width: 649px) {
          .bidbasket .login-bidbasket .login-link.bid_submit .secondary-btn {
            width: 45%; } }
      .bidbasket .login-bidbasket .login-link.bid_submit .submit-bids-btn {
        min-width: 120px;
        font-size: 13px; }
        @media screen and (max-width: 649px) {
          .bidbasket .login-bidbasket .login-link.bid_submit .submit-bids-btn {
            width: 45%; } }

/*
body.logged-in {
	.header-wrapper .navigation.header-nav .menu {
		.item-361 > ul .item-353 {
			display: none;
		}
	}
}
*/
/* ====== OVERLAYS ====== */
/* ======
OVERLAYS
	- General
	- Overlay Styles
	- Login Overlay
	- Placebid Overlay Styles
	- Bid Thankyou
	- Cancel Bid Holder
	- Wishlist Thankyou
	- Register Interest
	- Countdown Overlay
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.main-overlay-holder {
  display: block !important; }

.overlay-container-header {
  margin-bottom: 20px;
  text-align: center; }
  @media screen and (max-width: 599px) {
    .overlay-container-header {
      display: none; } }

.overlay-container-content {
  background-color: #f2f2f2; }
  .overlay-container-content input {
    width: 100%; }
  .overlay-container-content .popout__login-input {
    border: none;
    color: #cccccc;
    font-size: 18px;
    margin: 10px 0 !important;
    max-width: none !important;
    text-transform: inherit;
    width: 100%; }
    @media screen and (max-width: 599px) {
      .overlay-container-content .popout__login-input {
        margin: 5px 0 !important; } }
    .overlay-container-content .popout__login-input:focus, .overlay-container-content .popout__login-input:active {
      color: #000000; }

.overlay-container-content-header {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: center; }

.overlay-container__remember {
  margin-top: 30px;
  float: left;
  width: 50%; }
  @media screen and (max-width: 599px) {
    .overlay-container__remember {
      margin-top: 20px; } }
  .overlay-container__remember label {
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    margin: 0 0 0 10px !important;
    padding: 0 !important;
    vertical-align: middle;
    width: auto; }
  .overlay-container__remember input {
    display: inline-block;
    margin: 0 !important;
    vertical-align: middle;
    width: auto; }

.overlay-container__login {
  padding-right: 0;
  margin-top: 20px;
  float: right;
  width: 40%; }
  @media screen and (max-width: 599px) {
    .overlay-container__login {
      margin-top: 10px; } }
  .overlay-container__login .blue-btn {
    font-size: 11px;
    margin: 0;
    padding: 10px; }

.overlay-container__btn-holder {
  margin-top: 20px; }
  @media screen and (max-width: 599px) {
    .overlay-container__btn-holder {
      margin-top: 10px; } }
  .overlay-container__btn-holder .login-overlay-btn {
    float: left;
    padding: 0;
    width: auto; }
    @media screen and (max-width: 599px) {
      .overlay-container__btn-holder .login-overlay-btn {
        width: 49%; } }
    @media screen and (max-width: 449px) {
      .overlay-container__btn-holder .login-overlay-btn {
        padding: 0;
        width: 100%; } }
    .overlay-container__btn-holder .login-overlay-btn > a {
      border: 2px solid #F0F0F0;
      background-color: #F0F0F0;
      margin: 0;
      padding: 10px; }
      @media screen and (max-width: 449px) {
        .overlay-container__btn-holder .login-overlay-btn > a {
          padding: 5px; } }
      .overlay-container__btn-holder .login-overlay-btn > a:hover {
        background-color: #ffffff;
        color: #F0F0F0; }
    .overlay-container__btn-holder .login-overlay-btn.overlay-container__reg {
      float: right;
      margin-left: 10px; }
      @media screen and (max-width: 599px) {
        .overlay-container__btn-holder .login-overlay-btn.overlay-container__reg {
          margin-left: 2%; } }
      @media screen and (max-width: 449px) {
        .overlay-container__btn-holder .login-overlay-btn.overlay-container__reg {
          margin: 10px 0 0; } }

.change_password {
  max-width: 500px !important; }

#overlay-message {
  color: #C1272D;
  left: 30px;
  position: relative;
  top: 20px;
  width: 60%; }

#login-overlay-message {
  color: #C1272D;
  margin: 0 auto 30px;
  max-width: 300px;
  width: 100%; }

.register-your-interest-overlay {
  padding: 30px; }

/*================================================================================
$ OVERLAY STYLES
================================================================================*/
.more-lot__btn-holder__button.overlay-trigger-holder {
  max-width: none;
  min-width: 170px; }

.overlay-trigger-holder .left-col, .overlay-trigger-holder .right-col, .overlay-trigger-holder .central-col {
  color: #4D4D4D; }
  .overlay-trigger-holder .left-col .h3, .overlay-trigger-holder .right-col .h3, .overlay-trigger-holder .central-col .h3 {
    font-weight: 600 !important;
    font-size: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
  .overlay-trigger-holder .left-col p, .overlay-trigger-holder .right-col p, .overlay-trigger-holder .central-col p {
    color: #4D4D4D; }

.overlay-trigger-holder .overlay-container {
  max-height: 0;
  overflow: hidden;
  display: none; }

.overlay-trigger-holder.show-overlay .overlay-container {
  background-color: none;
  display: block;
  float: left;
  height: 100%;
  max-height: 5000px;
  overflow: visible;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1500; }
  .overlay-trigger-holder.show-overlay .overlay-container:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }
    @media screen and (max-width: 736px) {
      .overlay-trigger-holder.show-overlay .overlay-container:after {
        position: fixed; } }

@media screen and (min-width: 0) and (max-width: 599px) {
  .overlay-trigger-holder.show-overlay .close-cross {
    top: 25px;
    right: 10px; } }

.overlay-trigger-holder.show-overlay .overlay-container__wrapper {
  background: #cecdcd;
  border: 1px solid #b0b0b0;
  border-bottom: 5px solid #c81618;
  height: auto;
  margin: 0 auto;
  max-width: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  text-align: left;
  top: 12%;
  -webkit-transition: all 0.2s ease 0.2s;
  -moz-transition: all 0.2s ease 0.2s;
  -ms-transition: all 0.2s ease 0.2s;
  -o-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
  width: 60%;
  z-index: 20; }
  @media screen and (min-width: 600px) and (max-width: 899px) {
    .overlay-trigger-holder.show-overlay .overlay-container__wrapper {
      top: 10%;
      width: 90%; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .overlay-trigger-holder.show-overlay .overlay-container__wrapper {
      left: 0;
      margin-left: 0;
      max-width: 2000px !important;
      top: 0;
      width: 100%; } }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper.vtimes-overlay__wrapper {
    max-width: 550px; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper p {
    line-height: 1.5; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .key-title {
    color: #4D4D4D;
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
    line-height: 1.15;
    margin-bottom: 15px;
    padding-left: 0;
    text-align: left;
    width: 90%; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .key-title {
        padding-bottom: 10px;
        line-height: 1.2; } }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .key-text {
    color: #4D4D4D;
    margin: 0;
    width: 90%; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper ul {
    display: inline-block;
    text-align: left;
    float: left;
    width: 100%; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper ul {
        padding-top: 10px; }
        .overlay-trigger-holder.show-overlay .overlay-container__wrapper ul.show {
          display: block; } }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper ul.bid-increments {
        display: none; } }
  @media screen and (max-width: 549px) {
    .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col, .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col {
      margin-bottom: 5%;
      width: 100%; } }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col p {
    float: left;
    width: 100%;
    font-size: 16px; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col p {
        font-size: 15px;
        margin-top: 0; } }
    .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col p > span {
      font-weight: 400;
      float: left;
      width: 70%; }
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col p > span:first-child {
        color: #4D4D4D;
        width: 30%; }
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .left-col p > span.lot-detail {
        color: #4D4D4D;
        font-size: 15px;
        font-weight: 600; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col ul {
    padding-top: 20px; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col ul {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col ul li {
      display: inline-block;
      padding-bottom: 5px;
      float: left;
      width: 100%; }
      .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col ul li p {
        display: inline;
        font-weight: bold;
        margin: 0; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .right-col h3 span {
    font-weight: 500 !important; }
  .overlay-trigger-holder.show-overlay .overlay-container__wrapper .central-col {
    float: left;
    width: 100%; }

.overlay-trigger-holder.show-overlay .overlay-content {
  background-color: #cecdcd;
  float: left;
  padding: 30px;
  width: 100%; }
  .overlay-trigger-holder.show-overlay .overlay-content .viewing-times-terms {
    float: left;
    width: 31%; }
    @media screen and (max-width: 449px) {
      .overlay-trigger-holder.show-overlay .overlay-content .viewing-times-terms {
        width: 37%; } }
  .overlay-trigger-holder.show-overlay .overlay-content .terms-link {
    float: left;
    width: 39%; }
    @media screen and (max-width: 449px) {
      .overlay-trigger-holder.show-overlay .overlay-content .terms-link {
        width: 34%;
        margin-left: 75px; } }
  @media screen and (max-width: 449px) {
    .overlay-trigger-holder.show-overlay .overlay-content .bid-terms-agree-js {
      position: relative;
      top: 15px;
      left: 63px; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .overlay-trigger-holder.show-overlay .overlay-content .error {
      width: 80%; } }

.overlay-trigger-holder .hear-abt-us {
  float: left;
  width: 100%;
  padding-bottom: 20px; }

.overlay-trigger-holder select#hearabout_us {
  width: 100%;
  padding: 6px 30px 7px 10px;
  border-radius: 0;
  margin-top: 5px;
  font-size: 14px; }

/*================================================================================
$  LOGIN OVERLAY
================================================================================*/
.overlay-trigger-holder.show-overlay.login-overlay .overlay-content {
  padding: 0; }

.overlay-trigger-holder.show-overlay.login-overlay .overlay-container__wrapper {
  border: none; }

.username-hold, .password-hold, .remember-hold {
  margin: 10px 0; }

.login-overlay .overlay-container__wrapper {
  max-width: 550px !important;
  padding: 0 !important; }
  .login-overlay .overlay-container__wrapper .overlay-content {
    padding: 0 !important; }

.wishlist-overlay {
  border: none !important; }
  .wishlist-overlay .overlay-content {
    padding: 0 !important; }
  .wishlist-overlay .wishlist-overlay {
    padding: 30px; }

/*================================================================================
$  PLACEBID OVERLAY STYLES
================================================================================*/
.overlay-content .bidding-form {
  float: left; }
  .overlay-content .bidding-form h3 {
    color: #4D4D4D;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    margin-bottom: 0; }
  .overlay-content .bidding-form .low-est {
    color: #c81618;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px !important; }
    .overlay-content .bidding-form .low-est span {
      color: #c81618;
      font-weight: 700; }
    .overlay-content .bidding-form .low-est.your-bid {
      padding-left: 20px; }

.overlay-content .bid-amount-input {
  width: 25%;
  display: inline-block;
  line-height: 1.25; }
  .overlay-content .bid-amount-input .bid-amount__input {
    font-size: 15px;
    padding: 9px !important; }

.overlay-content .bid-btn {
  display: inline-block;
  margin-left: 5px;
  width: 33%; }
  .overlay-content .bid-btn input {
    margin: 6px 0 10px 0;
    max-width: 500px;
    min-width: 145px;
    padding: 9px;
    line-height: 1.25 !important; }
    @media screen and (max-width: 599px) {
      .overlay-content .bid-btn input {
        font-size: 16px; } }

.overlay-content .bid-text p {
  padding: 0; }

.overlay-content .terms-and-conditions {
  color: #4D4D4D;
  float: left;
  margin: 5px 0 15px 0;
  font-size: 12px; }
  .overlay-content .terms-and-conditions a {
    color: #c81618;
    font-weight: 600; }

.overlay-content .bid-warning {
  background-color: #4D4D4D;
  bottom: -30px;
  float: left;
  margin-top: -30px;
  margin-left: -30px;
  margin-right: -30px;
  padding: 5px 30px;
  position: relative; }
  .overlay-content .bid-warning p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4; }

.overlay-content .left-col {
  float: left;
  margin-bottom: 15px;
  width: 70%; }

.overlay-content .right-col {
  float: right;
  width: 30%; }
  .overlay-content .right-col .h3 span {
    text-transform: uppercase;
    color: #C0C0C0; }

.overlay-content .h3 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 0 !important; }

.overlay-content .cancel-success {
  margin-bottom: 0 !important; }

/*================================================================================
$  BID THANKYOU
================================================================================*/
.overlay-container__wrapper .bid-btns {
  float: left;
  width: 100%; }
  .overlay-container__wrapper .bid-btns button {
    margin-bottom: 0 !important; }
    @media screen and (max-width: 499px) {
      .overlay-container__wrapper .bid-btns button {
        width: 100%;
        margin: 5px 0; } }
    .overlay-container__wrapper .bid-btns button:first-child {
      float: left !important; }
    .overlay-container__wrapper .bid-btns button:last-child {
      float: right; }

/*================================================================================
$  CANCEL BID HOLDER
================================================================================*/
.cancelbid .cancel-bid-holder {
  float: left;
  width: 100%; }
  .cancelbid .cancel-bid-holder input {
    margin-top: 10px;
    margin-bottom: 0 !important; }
  .cancelbid .cancel-bid-holder .secondary-btn {
    margin-left: 15px; }

/*================================================================================
$  WISHLIST THANKYOU
================================================================================*/
.wishlist-overlay .wishlist-message p {
  font-size: 14px; }

.wishlist-overlay .bid-btns {
  margin-top: 15px; }

/*================================================================================
$  REGISTER YOUR INTEREST OVERLAY
================================================================================*/
.register-your-interest-overlay .register-interest-login {
  float: right; }
  @media screen and (max-width: 399px) {
    .register-your-interest-overlay .register-interest-login {
      float: left; } }

/*================================================================================
$  PROGRESS OVERLAY
================================================================================*/
#progress-div .progress {
  margin-top: 20px; }

/*================================================================================
$  COUNTDOWN OVERLAY
================================================================================*/
.countdown-time {
  color: #4D4D4D;
  font-size: 40px;
  font-weight: 500;
  font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif; }
  .countdown-time span {
    color: #c81618; }

.countdown-register-account, .technical-register-account {
  margin-top: 20px; }

/*================================================================================
$  TIMED OVERLAY
================================================================================*/
.overlay-content .bid_success {
  display: block;
  margin-top: 20px; }

/* ====== BANNERS ====== */
/* ======
BANNERS
	- General Banner Layout
	- Banner Loader
	- Banner Overlay
	- Banner Direction Nav
	- Banner Scroll Arrow
	- Keyframes
====== */
/*================================================================================
$ GENERAL BANNER LAYOUT
================================================================================*/
.main-banner-container {
  position: relative; }

/*================================================================================
$ BANNER LOADER
================================================================================*/
.banner-loading {
  background-color: #ffffff;
  position: relative;
  width: 100%; }
  .banner-loading canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }

/*================================================================================
$ BANNER OVERLAY
================================================================================*/
.main-banner-container .banner-slides {
  position: relative;
  width: 100%; }
  .main-banner-container .banner-slides .banner__image #play_image {
    position: absolute !important;
    width: 180px !important;
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    top: 50% !important; }
  .main-banner-container .banner-slides .banner__content {
    background-color: #3c3c3b;
    bottom: 0;
    left: 0;
    padding: 15px 10px 17px;
    position: absolute;
    width: 100%;
    z-index: 3; }
    @media screen and (max-width: 1059px) {
      .main-banner-container .banner-slides .banner__content {
        padding: 10px 50px 12px; } }
    @media screen and (max-width: 599px) {
      .main-banner-container .banner-slides .banner__content {
        padding: 10px; } }
    .main-banner-container .banner-slides .banner__content > .banner__content--inner {
      margin: 0 auto;
      max-width: 960px; }
    .main-banner-container .banner-slides .banner__content .banner__content--text {
      float: left;
      padding-right: 10px;
      width: 75%; }
      @media screen and (max-width: 799px) {
        .main-banner-container .banner-slides .banner__content .banner__content--text {
          padding-right: 0;
          width: 100%; } }
    .main-banner-container .banner-slides .banner__content .banner__content--button {
      float: right;
      min-height: 55px;
      position: relative;
      text-align: right;
      width: 25%; }
      @media screen and (max-width: 799px) {
        .main-banner-container .banner-slides .banner__content .banner__content--button {
          margin-top: 10px;
          min-height: 0;
          width: 100%; } }
    .main-banner-container .banner-slides .banner__content .auction__title {
      color: #ffffff;
      font-size: 28px;
      line-height: 1.5;
      margin-bottom: 0;
      overflow: hidden;
      -ms-text-overflow: ellipsis;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%; }
      @media screen and (max-width: 599px) {
        .main-banner-container .banner-slides .banner__content .auction__title {
          font-size: 21px; } }
    .main-banner-container .banner-slides .banner__content .auction__date {
      color: #ffffff;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 0;
      margin-top: 2px; }
      @media screen and (max-width: 599px) {
        .main-banner-container .banner-slides .banner__content .auction__date {
          font-size: 14px; } }
    .main-banner-container .banner-slides .banner__content .view-catalogue-banner-btn {
      margin-bottom: 0; }
      .main-banner-container .banner-slides .banner__content .view-catalogue-banner-btn:hover {
        background-color: transparent; }

/*================================================================================
$ BANNER DIRECTION NAV
================================================================================*/
.slides-navigation {
  bottom: 63px;
  height: 0;
  padding: 0 40px;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 5; }
  @media screen and (max-width: 1119px) {
    .slides-navigation {
      padding: 0 10px; } }
  @media screen and (max-width: 1059px) {
    .slides-navigation {
      bottom: 57px;
      padding: 0 5px; } }
  @media screen and (max-width: 799px) {
    .slides-navigation {
      bottom: 85px; } }
  @media screen and (max-width: 599px) {
    .slides-navigation {
      display: none !important; } }
  .slides-navigation > a {
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px auto;
    border-radius: 50%;
    display: block;
    height: 40px;
    text-indent: -999em;
    width: 40px; }
    @media screen and (min-width: 900px) {
      .slides-navigation > a {
        -webkit-transition: background-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s; } }
    .slides-navigation > a:hover {
      background-color: #c81618; }
      @media screen and (min-width: 900px) {
        .slides-navigation > a:hover {
          -webkit-transition: background-color 0.25s ease-in-out 0s;
          -moz-transition: background-color 0.25s ease-in-out 0s;
          -ms-transition: background-color 0.25s ease-in-out 0s;
          -o-transition: background-color 0.25s ease-in-out 0s;
          transition: background-color 0.25s ease-in-out 0s; } }
  .slides-navigation .prev {
    background-image: url("../images/banners/banner-prev-arrow.png");
    background-position: 10px 6px;
    float: left; }
  .slides-navigation .next {
    background-image: url("../images/banners/banner-next-arrow.png");
    background-position: 14px 6px;
    float: right; }

/*================================================================================
$ BANNER SCROLL ARROW
================================================================================*/
.scroll-holder {
  bottom: 105px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  z-index: 4; }
  @media screen and (max-width: 799px) {
    .scroll-holder {
      bottom: 140px; } }
  @media screen and (max-width: 599px) {
    .scroll-holder {
      bottom: 120px; } }
  .scroll-holder > a {
    display: block; }
  .scroll-holder .scroll__circle-arrow {
    background-color: rgba(255, 255, 255, 0.75);
    background-image: url("../images/banners/banner-scroll-button.png");
    background-position: 6px 12px;
    background-repeat: no-repeat;
    background-size: 23px auto;
    border-radius: 50%;
    display: block;
    height: 35px;
    width: 35px; }
    @media screen and (min-width: 900px) {
      .scroll-holder .scroll__circle-arrow {
        -webkit-transition: background-color 0.5s ease-in-out 0s;
        -moz-transition: background-color 0.5s ease-in-out 0s;
        -ms-transition: background-color 0.5s ease-in-out 0s;
        -o-transition: background-color 0.5s ease-in-out 0s;
        transition: background-color 0.5s ease-in-out 0s; } }
    .scroll-holder .scroll__circle-arrow:hover, .scroll-holder .scroll__circle-arrow:focus, .scroll-holder .scroll__circle-arrow:active {
      background-color: rgba(255, 255, 255, 0.9); }
      @media screen and (min-width: 900px) {
        .scroll-holder .scroll__circle-arrow:hover, .scroll-holder .scroll__circle-arrow:focus, .scroll-holder .scroll__circle-arrow:active {
          animation: heartbeat 0.75s infinite;
          -webkit-transition: background-color 0.5s ease-in-out 0s;
          -moz-transition: background-color 0.5s ease-in-out 0s;
          -ms-transition: background-color 0.5s ease-in-out 0s;
          -o-transition: background-color 0.5s ease-in-out 0s;
          transition: background-color 0.5s ease-in-out 0s; } }

/*================================================================================
$ KEYFRAMES
================================================================================*/
@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25); } }

@-moz-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25); } }

@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25); } }

@-ms-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25); } }

@-o-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.25);
    -moz-transform: scale(1.25);
    -ms-transform: scale(1.25);
    -o-transform: scale(1.25);
    transform: scale(1.25); } }

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    -o-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    -o-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateX(180deg);
    -moz-transform: perspective(140px) rotateX(180deg);
    -ms-transform: perspective(140px) rotateX(180deg);
    -o-transform: perspective(140px) rotateX(180deg);
    transform: perspective(140px) rotateX(180deg);
    opacity: 0; } }

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    -o-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0; }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    -o-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1; }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateX(180deg);
    -moz-transform: perspective(140px) rotateX(180deg);
    -ms-transform: perspective(140px) rotateX(180deg);
    -o-transform: perspective(140px) rotateX(180deg);
    transform: perspective(140px) rotateX(180deg);
    opacity: 0; } }

/* ====== PALETS ====== */
/* ======
PALETS
	- GENERAL PALETS
	- SIGN UP
	- MY PREFERENCES
====== */
/*================================================================================
$ GENERAL PALETS
================================================================================*/
.palet-section {
  float: left;
  overflow: hidden;
  width: 100%; }

.palet {
  background-size: cover !important;
  background-repeat: no-repeat;
  min-height: 300px;
  position: relative;
  width: 100%; }
  @media screen and (max-width: 899px) {
    .palet {
      min-height: 250px; } }
  @media screen and (max-width: 699px) {
    .palet {
      min-height: 200px; } }
  @media screen and (max-width: 549px) {
    .palet {
      min-height: 150px; } }
  @media screen and (max-width: 449px) {
    .palet {
      min-height: 100px; } }
  .palet.no-bg {
    background: none;
    border: 1px solid #c81618; }
  .palet a {
    display: block;
    height: 100%;
    width: 100%; }

/*================================================================================
$ PALETS
================================================================================*/
.palet.two {
  height: 66.6%; }

.palet.three {
  height: 100%; }

.palet .palet-text {
  -webkit-background: rgba(255, 255, 255, 0.9);
  -moz-background: rgba(255, 255, 255, 0.9);
  -ms-background: rgba(255, 255, 255, 0.9);
  -o-background: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.9);
  left: 50%;
  max-width: 200px;
  padding: 15px 10px;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translateY(-50%) translateX(-50%); }
  @media screen and (max-width: 449px) {
    .palet .palet-text {
      margin-left: 0;
      max-width: 100%;
      padding: 8px 5px; } }
  .palet .palet-text h2, .palet .palet-text h4, .palet .palet-text p {
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
    font-weight: 300;
    text-align: center;
    width: 100%; }
  .palet .palet-text h2 {
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 399px) {
      .palet .palet-text h2 {
        font-size: 15px; } }

/*================================================================================
$ ACCOUNT
================================================================================*/
/* ====== MY ACCOUT ====== */
/* ======
MY ACCOUNT
	- SIDEBAR
	- ACCOUNT CONTENT
	- VALUATION FORM
	- MOBILE MENU
====== */
/*================================================================================
$ SIDEBAR
================================================================================*/
.acc-page-holder {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 10px;
  text-align: center; }

.page-left-options {
  float: left;
  width: 17%;
  margin-top: 30px; }
  @media screen and (max-width: 899px) {
    .page-left-options {
      margin-top: 10px;
      width: 100%; } }
  .page-left-options .account__title {
    text-align: left; }
    .page-left-options .account__title h4 {
      color: #666666;
      font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
      font-size: 22px; }
    .page-left-options .account__title p {
      display: inline-block;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 18px;
      font-weight: lighter; }
      .page-left-options .account__title p:first-child {
        margin-right: 3px; }
  .page-left-options .account__page-options {
    margin-top: 20px; }
    @media screen and (max-width: 899px) {
      .page-left-options .account__page-options {
        margin-top: 0; } }
    .page-left-options .account__page-options > ul {
      margin-bottom: 0;
      zoom: 1; }
      .page-left-options .account__page-options > ul:before, .page-left-options .account__page-options > ul:after {
        content: "";
        display: table; }
      .page-left-options .account__page-options > ul:after {
        clear: both; }
      @media screen and (max-width: 899px) {
        .page-left-options .account__page-options > ul {
          border-bottom: 1px solid #c81618;
          max-height: 0;
          overflow: hidden;
          -webkit-transition: max-height 0.6s linear 0s;
          -moz-transition: max-height 0.6s linear 0s;
          -ms-transition: max-height 0.6s linear 0s;
          -o-transition: max-height 0.6s linear 0s;
          transition: max-height 0.6s linear 0s; } }
      @media screen and (max-width: 899px) {
        .page-left-options .account__page-options > ul.menu-open {
          max-height: 1000px;
          -webkit-transition: max-height 1.5s ease-in-out 0s;
          -moz-transition: max-height 1.5s ease-in-out 0s;
          -ms-transition: max-height 1.5s ease-in-out 0s;
          -o-transition: max-height 1.5s ease-in-out 0s;
          transition: max-height 1.5s ease-in-out 0s; } }
      .page-left-options .account__page-options > ul > li {
        position: relative;
        float: left;
        width: 100%; }
        .page-left-options .account__page-options > ul > li:hover > .option-title, .page-left-options .account__page-options > ul > li.active > .option-title {
          color: #c81618 !important;
          -webkit-transition: font-weight 0s ease-in-out 0s;
          -moz-transition: font-weight 0s ease-in-out 0s;
          -ms-transition: font-weight 0s ease-in-out 0s;
          -o-transition: font-weight 0s ease-in-out 0s;
          transition: font-weight 0s ease-in-out 0s; }
        .page-left-options .account__page-options > ul > li:hover > ul, .page-left-options .account__page-options > ul > li.active > ul {
          display: block; }
        .page-left-options .account__page-options > ul > li:hover > a, .page-left-options .account__page-options > ul > li.active > a {
          color: #c81618;
          text-decoration: none; }
        .page-left-options .account__page-options > ul > li > .option-title {
          color: #4D4D4D;
          display: block;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-size: 15px;
          font-weight: lighter;
          padding: 0px 0px 10px 0px;
          text-align: left;
          text-transform: capitalize;
          -webkit-transition: font-weight 0s ease-in-out 0s;
          -moz-transition: font-weight 0s ease-in-out 0s;
          -ms-transition: font-weight 0s ease-in-out 0s;
          -o-transition: font-weight 0s ease-in-out 0s;
          transition: font-weight 0s ease-in-out 0s;
          width: 100%; }
          @media screen and (max-width: 899px) {
            .page-left-options .account__page-options > ul > li > .option-title {
              padding: 10px; } }
        .page-left-options .account__page-options > ul > li .tool-tip {
          cursor: pointer;
          left: 100px;
          position: absolute;
          top: 7px;
          width: 20px; }
          @media screen and (max-width: 599px) {
            .page-left-options .account__page-options > ul > li .tool-tip {
              left: 110px; } }
        .page-left-options .account__page-options > ul > li > ul {
          display: none; }
          .page-left-options .account__page-options > ul > li > ul > li {
            position: relative;
            float: left;
            width: 100%; }
            .page-left-options .account__page-options > ul > li > ul > li:last-child {
              padding-bottom: 10px; }
            .page-left-options .account__page-options > ul > li > ul > li:hover > .option-title, .page-left-options .account__page-options > ul > li > ul > li.active > .option-title {
              color: #c81618;
              font-weight: normal;
              -webkit-transition: font-weight 0s ease-in-out 0s;
              -moz-transition: font-weight 0s ease-in-out 0s;
              -ms-transition: font-weight 0s ease-in-out 0s;
              -o-transition: font-weight 0s ease-in-out 0s;
              transition: font-weight 0s ease-in-out 0s; }
            .page-left-options .account__page-options > ul > li > ul > li:hover > a, .page-left-options .account__page-options > ul > li > ul > li.active > a {
              color: #c81618 !important;
              text-decoration: none; }
            .page-left-options .account__page-options > ul > li > ul > li > .option-title {
              color: #4D4D4D;
              display: block;
              font-size: 12px;
              line-height: 1.2;
              padding: 0 10px 5px 5px;
              text-align: left;
              text-transform: capitalize;
              -webkit-transition: font-weight 0s ease-in-out 0s;
              -moz-transition: font-weight 0s ease-in-out 0s;
              -ms-transition: font-weight 0s ease-in-out 0s;
              -o-transition: font-weight 0s ease-in-out 0s;
              transition: font-weight 0s ease-in-out 0s;
              width: 100%; }

/*================================================================================
$ ACCOUNT CONTENT
================================================================================*/
.account__content {
  border-left: 1px solid #cccccc;
  margin-top: 30px;
  min-height: 650px;
  padding: 0 20px 20px 30px;
  float: right;
  width: 83%;
  position: relative; }
  @media screen and (max-width: 899px) {
    .account__content {
      border: none;
      margin: 20px 0 0;
      min-height: 0;
      padding: 0;
      width: 100%; } }
  .dashboard-page-holder .account__content {
    padding: 0 20px 20px 30px; }
    @media screen and (max-width: 899px) {
      .dashboard-page-holder .account__content {
        padding: 0 10px 20px; } }
  .account__content .p, .account__content h1, .account__content h2, .account__content h3, .account__content h4, .account__content h5, .account__content h6, .account__content span {
    line-height: 1.2;
    margin-bottom: 0; }
  .account__content h1 {
    color: #666666 !important;
    font-size: 22px !important;
    font-weight: 400 !important; }
  .account__content h1, .account__content h2 {
    color: #4D4D4D;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 30px; }
  .account__content h3 {
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif; }
  .account__content .account__content__title {
    position: relative;
    text-align: left;
    zoom: 1; }
    .account__content .account__content__title:before, .account__content .account__content__title:after {
      content: "";
      display: table; }
    .account__content .account__content__title:after {
      clear: both; }
    .account__content .account__content__title h1 {
      font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
      font-weight: 300;
      margin-bottom: 0;
      padding-bottom: 40px; }
    .account__content .account__content__title h3 {
      font-size: 18px;
      margin-top: 10px;
      margin-bottom: 15px;
      text-align: left; }
    .account__content .account__content__title .email-wishlist-btn {
      float: none;
      position: absolute;
      right: 0;
      top: 2px;
      width: auto; }
      @media screen and (max-width: 609px) {
        .account__content .account__content__title .email-wishlist-btn {
          font-size: 15px;
          font-size: 1rem; } }
      @media screen and (max-width: 599px) {
        .account__content .account__content__title .email-wishlist-btn {
          margin-top: 10px;
          position: static;
          width: 100%; } }
  .account__content #pagination-filter {
    position: absolute;
    right: 0;
    top: 0; }
    .account__content #pagination-filter ul.archive-paginaton {
      float: right;
      width: 100%;
      text-align: right; }
      .account__content #pagination-filter ul.archive-paginaton > li {
        display: inline-block;
        padding: 0 5px; }
  .account__content .paragraph-text {
    padding-bottom: 20px; }
    .account__content .paragraph-text p {
      text-align: left; }
  .account__content .account__content__filters {
    background-color: #f2f2f2;
    margin: 10px 0;
    padding: 0px 20px;
    display: none;
    zoom: 1; }
    .account__content .account__content__filters:before, .account__content .account__content__filters:after {
      content: "";
      display: table; }
    .account__content .account__content__filters:after {
      clear: both; }
    @media screen and (max-width: 899px) {
      .account__content .account__content__filters {
        margin-top: 20px; } }
    .account__content .account__content__filters.filters-2 .filter-text {
      float: left;
      width: 10%; }
      .account__content .account__content__filters.filters-2 .filter-text p {
        font-weight: 400;
        line-height: 2.1;
        padding: 5px 15px 5px 0;
        width: auto; }
        @media screen and (max-width: 799px) {
          .account__content .account__content__filters.filters-2 .filter-text p {
            font-size: 16px;
            line-height: 2.4; } }
        @media screen and (max-width: 699px) {
          .account__content .account__content__filters.filters-2 .filter-text p {
            font-size: 15px;
            line-height: 2.8; } }
    .account__content .account__content__filters.filters-2 .mf-filter {
      margin-left: -5%;
      width: 20%; }
      @media screen and (max-width: 499px) {
        .account__content .account__content__filters.filters-2 .mf-filter {
          margin: 0 0 0 0; } }
      @media screen and (max-width: 499px) {
        .account__content .account__content__filters.filters-2 .mf-filter {
          width: 35%; } }
    .account__content .account__content__filters.filters-2 .history-reset {
      float: right;
      line-height: 36px; }
      .account__content .account__content__filters.filters-2 .history-reset p {
        background-color: transparent;
        border: none;
        color: #4D4D4D;
        margin-bottom: 0;
        min-width: 0 !important;
        padding: 0; }
        .account__content .account__content__filters.filters-2 .history-reset p:hover {
          background-color: transparent;
          color: #4D4D4D; }
    .account__content .account__content__filters.filters-3 .mf-filter {
      width: 32%; }
      @media screen and (max-width: 499px) {
        .account__content .account__content__filters.filters-3 .mf-filter {
          width: 48%; } }
      .account__content .account__content__filters.filters-3 .mf-filter:nth-child(2) {
        margin: 0 1%; }
        @media screen and (max-width: 499px) {
          .account__content .account__content__filters.filters-3 .mf-filter:nth-child(2) {
            margin: 0 0 0 4%; } }
    .account__content .account__content__filters.filters-3.filter-with-search {
      margin-bottom: 0; }
      .account__content .account__content__filters.filters-3.filter-with-search .mf-filter {
        width: 26.3%; }
        @media screen and (max-width: 599px) {
          .account__content .account__content__filters.filters-3.filter-with-search .mf-filter {
            width: 30%; } }
        @media screen and (max-width: 499px) {
          .account__content .account__content__filters.filters-3.filter-with-search .mf-filter {
            width: 48%; } }
      .account__content .account__content__filters.filters-3.filter-with-search .account__content__search {
        margin-bottom: 20px; }
    .account__content .account__content__filters .mf-filter {
      float: left; }
      .account__content .account__content__filters .mf-filter:hover {
        position: relative; }
        .account__content .account__content__filters .mf-filter:hover > ul {
          left: 0; }
      @media screen and (max-width: 899px) {
        .account__content .account__content__filters .mf-filter#search-filter {
          padding: 10px 0 10px 10px; } }
      .account__content .account__content__filters .mf-filter#search-filter .mod-search-left input {
        border: none;
        padding: 0; }
      .account__content .account__content__filters .mf-filter#search-filter .mod-search-left #keyword {
        border: none;
        font-weight: 300;
        line-height: 1.2 !important;
        font-size: 15px;
        font-size: 1rem;
        color: #4D4D4D;
        float: left;
        width: 90%; }
        @media screen and (max-width: 599px) {
          .account__content .account__content__filters .mf-filter#search-filter .mod-search-left #keyword {
            width: 75%; } }
      .account__content .account__content__filters .mf-filter#search-filter .mod-search-left .search-filter-but {
        background-image: url("../images/search-filter.png");
        background-position: center center;
        background-repeat: no-repeat;
        float: right;
        height: 17px;
        margin-top: 1px;
        min-width: 17px;
        overflow: hidden;
        text-indent: -999em;
        width: 10%; }
        @media screen and (max-width: 599px) {
          .account__content .account__content__filters .mf-filter#search-filter .mod-search-left .search-filter-but {
            min-width: 0;
            width: 25%; } }
      @media screen and (max-width: 499px) {
        .account__content .account__content__filters .mf-filter:nth-child(2n+2):hover > ul {
          left: -100%; } }
      .account__content .account__content__filters .mf-filter > p {
        background: url("../images/select-toggle.png");
        background-position: 80% 50%;
        background-repeat: no-repeat;
        -webkit-background-size: auto 8px;
        -moz-background-size: auto 8px;
        -ms-background-size: auto 8px;
        -o-background-size: auto 8px;
        background-size: auto 8px;
        color: #606060;
        cursor: pointer;
        font-size: 15px;
        font-weight: 300;
        line-height: 2.1;
        margin: 0;
        overflow: hidden;
        padding: 5px 15px 5px 0;
        -webkit-text-overflow: ellipsis;
        -moz-text-overflow: ellipsis;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        text-transform: capitalize;
        white-space: nowrap;
        width: 100%; }
        @media screen and (max-width: 799px) {
          .account__content .account__content__filters .mf-filter > p {
            font-size: 16px;
            line-height: 2.4; } }
        @media screen and (max-width: 699px) {
          .account__content .account__content__filters .mf-filter > p {
            font-size: 15px;
            line-height: 2.8; } }
      .account__content .account__content__filters .mf-filter > ul {
        background-color: #f2f2f2;
        border: none;
        left: -9999px;
        position: absolute;
        top: 40px;
        width: 100%;
        z-index: 3; }
        @media screen and (max-width: 499px) {
          .account__content .account__content__filters .mf-filter > ul {
            max-height: 300px;
            overflow: auto;
            width: 200%; } }
        .account__content .account__content__filters .mf-filter > ul > li {
          border-top: 1px solid #ffffff;
          color: #4D4D4D;
          cursor: pointer;
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-weight: normal;
          padding: 9px 25px 9px 9px;
          text-align: right;
          text-transform: capitalise; }
          @media screen and (max-width: 899px) {
            .account__content .account__content__filters .mf-filter > ul > li {
              padding: 7px 10px; } }
          .account__content .account__content__filters .mf-filter > ul > li:first-child {
            border-top: none; }
          .account__content .account__content__filters .mf-filter > ul > li:hover {
            background-color: #d5d5d5; }
          .account__content .account__content__filters .mf-filter > ul > li span {
            color: #4D4D4D; }
        .account__content .account__content__filters .mf-filter > ul li[data-select="selected"] {
          background-color: #d5d5d5; }
    .account__content .account__content__filters .mf-filter__search {
      background-image: url(../images/search.png);
      background-position: right center;
      background-repeat: no-repeat;
      -webkit-background-size: 20px auto;
      -moz-background-size: 20px auto;
      -ms-background-size: 20px auto;
      -o-background-size: 20px auto;
      background-size: 20px auto;
      cursor: pointer;
      display: block;
      float: right;
      height: 34px;
      position: relative;
      width: 10%; }
      @media screen and (max-width: 599px) {
        .account__content .account__content__filters .mf-filter__search {
          display: none; } }
  .account__content .account__content__main {
    zoom: 1; }
    .account__content .account__content__main:before, .account__content .account__content__main:after {
      content: "";
      display: table; }
    .account__content .account__content__main:after {
      clear: both; }
    @media screen and (max-width: 899px) {
      .account__content .account__content__main {
        margin-top: 20px; } }
    .account__content .account__content__main.no-margin {
      margin-top: 0 !important; }
  .account__content .account__content__search {
    max-height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0; }
    @media screen and (max-width: 599px) {
      .account__content .account__content__search {
        max-height: 2000px; } }
    .account__content .account__content__search input {
      border: 3px solid #cecdcd;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 15px;
      padding: 10px;
      width: 100%; }
    .account__content .account__content__search.opened {
      padding: 20px 5% 0;
      max-height: 2000px; }

/*================================================================================
$ VALUTION FORM
================================================================================*/
.account__content .new-valuation-form {
  background: transparent;
  padding: 0 2% 2% 0;
  max-width: 550px; }
  .account__content .new-valuation-form .val-form-title {
    color: #666666 !important;
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
    font-size: 22px !important;
    font-weight: 400 !important;
    padding-bottom: 20px;
    text-align: left; }
  .account__content .new-valuation-form input::-webkit-input-placeholder, .account__content .new-valuation-form textarea::-webkit-input-placeholder {
    color: #4D4D4D;
    text-transform: capitalize; }
  .account__content .new-valuation-form input:-moz-placeholder, .account__content .new-valuation-form textarea:-moz-placeholder {
    color: #4D4D4D;
    text-transform: capitalize; }
  .account__content .new-valuation-form input::-moz-placeholder, .account__content .new-valuation-form textarea::-moz-placeholder {
    color: #4D4D4D;
    text-transform: capitalize; }
  .account__content .new-valuation-form input:-ms-input-placeholder, .account__content .new-valuation-form textarea:-ms-input-placeholder {
    color: #4D4D4D;
    text-transform: capitalize; }
  .account__content .new-valuation-form .form-4 input::-webkit-input-placeholder {
    text-transform: lowercase; }
  .account__content .new-valuation-form .form-4 input:-moz-placeholder {
    text-transform: lowercase; }
  .account__content .new-valuation-form .form-4 input::-moz-placeholder {
    text-transform: lowercase; }
  .account__content .new-valuation-form .form-4 input:-ms-input-placeholder {
    text-transform: lowercase; }
  .account__content .new-valuation-form .choose-file-btn {
    background-color: #cecdcd;
    border-color: #cecdcd;
    font-size: 16px;
    min-width: 200px;
    padding: 3px 20px 5px;
    text-transform: capitalize;
    text-align: center;
    -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
    .account__content .new-valuation-form .choose-file-btn:hover, .account__content .new-valuation-form .choose-file-btn:focus, .account__content .new-valuation-form .choose-file-btn:active {
      background-color: transparent;
      color: #cecdcd;
      -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
  .account__content .new-valuation-form .p_scents {
    float: left;
    margin-top: 5px;
    width: 100%; }
    .account__content .new-valuation-form .p_scents p {
      float: left;
      text-align: left;
      width: 100%; }
    .account__content .new-valuation-form .p_scents a {
      float: left; }
    .account__content .new-valuation-form .p_scents .secondary-btn {
      min-width: 200px; }
  .account__content .new-valuation-form .submit-btn-wrapper {
    float: left;
    margin-top: 10px; }
    .account__content .new-valuation-form .submit-btn-wrapper input {
      min-width: 200px;
      text-transform: capitalize; }

/*================================================================================
$ MOBILE MENU
================================================================================*/
.palm-account-menu {
  background-color: #c81618;
  cursor: pointer;
  display: none;
  margin: 10px 0;
  padding: 10px;
  position: relative;
  /* Override Palm Menu Function */ }
  @media screen and (max-width: 899px) {
    .palm-account-menu {
      display: inherit !important; } }
  .palm-account-menu > h3 {
    color: #ffffff;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-weight: normal;
    line-height: 1.25;
    margin-bottom: 0;
    text-transform: uppercase; }
  .palm-account-menu > ul {
    margin-bottom: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transition: right 0.25s ease-in-out 0s;
    -moz-transition: right 0.25s ease-in-out 0s;
    -ms-transition: right 0.25s ease-in-out 0s;
    -o-transition: right 0.25s ease-in-out 0s;
    transition: right 0.25s ease-in-out 0s;
    width: 20px; }
    .palm-account-menu > ul > li {
      background-color: #ffffff;
      float: left;
      height: 2px;
      margin-top: 5px;
      width: 100%; }
    .palm-account-menu > ul li:nth-child(1) {
      margin-top: 3px;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transform-origin: 0;
      -moz-transform-origin: 0;
      -ms-transform-origin: 0;
      -o-transform-origin: 0;
      transform-origin: 0;
      -webkit-transition: transform 0.5s ease-in-out 0s;
      -moz-transition: transform 0.5s ease-in-out 0s;
      -ms-transition: transform 0.5s ease-in-out 0s;
      -o-transition: transform 0.5s ease-in-out 0s;
      transition: transform 0.5s ease-in-out 0s; }
    .palm-account-menu > ul li:nth-child(2) {
      opacity: 1;
      -webkit-transition: opacity 0.5s ease-in-out 0s;
      -moz-transition: opacity 0.5s ease-in-out 0s;
      -ms-transition: opacity 0.5s ease-in-out 0s;
      -o-transition: opacity 0.5s ease-in-out 0s;
      transition: opacity 0.5s ease-in-out 0s; }
    .palm-account-menu > ul li:nth-child(3) {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transform-origin: 0;
      -moz-transform-origin: 0;
      -ms-transform-origin: 0;
      -o-transform-origin: 0;
      transform-origin: 0;
      -webkit-transition: transform 0.5s ease-in-out 0s;
      -moz-transition: transform 0.5s ease-in-out 0s;
      -ms-transition: transform 0.5s ease-in-out 0s;
      -o-transition: transform 0.5s ease-in-out 0s;
      transition: transform 0.5s ease-in-out 0s; }
  .palm-account-menu.close-menu > ul {
    -webkit-transition: right 0.25s ease-in-out 0s;
    -moz-transition: right 0.25s ease-in-out 0s;
    -ms-transition: right 0.25s ease-in-out 0s;
    -o-transition: right 0.25s ease-in-out 0s;
    transition: right 0.25s ease-in-out 0s; }
    .palm-account-menu.close-menu > ul li:nth-child(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition: transform 0.5s ease-in-out 0s;
      -moz-transition: transform 0.5s ease-in-out 0s;
      -ms-transition: transform 0.5s ease-in-out 0s;
      -o-transition: transform 0.5s ease-in-out 0s;
      transition: transform 0.5s ease-in-out 0s; }
    .palm-account-menu.close-menu > ul li:nth-child(2) {
      opacity: 0;
      -webkit-transition: opacity 0.25s ease-in-out 0s;
      -moz-transition: opacity 0.25s ease-in-out 0s;
      -ms-transition: opacity 0.25s ease-in-out 0s;
      -o-transition: opacity 0.25s ease-in-out 0s;
      transition: opacity 0.25s ease-in-out 0s; }
    .palm-account-menu.close-menu > ul li:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition: transform 0.5s ease-in-out 0s;
      -moz-transition: transform 0.5s ease-in-out 0s;
      -ms-transition: transform 0.5s ease-in-out 0s;
      -o-transition: transform 0.5s ease-in-out 0s;
      transition: transform 0.5s ease-in-out 0s; }

.com_comprofiler.no-task.view-.no-layout .main-cms-content-holder {
  padding-top: 50px;
  text-align: center; }

/* ====== ACCOUNT ====== */
/* ======
ACCOUNT
	- GENERAL
====== */
/*================================================================================
$ ACCOUNT
================================================================================*/
.account-details-holder {
  font-size: 15px;
  margin: 0 auto;
  text-align: center;
  width: 60%;
  zoom: 1; }
  .account-details-holder:before, .account-details-holder:after {
    content: "";
    display: table; }
  .account-details-holder:after {
    clear: both; }
  @media screen and (max-width: 699px) {
    .account-details-holder {
      width: 100%; } }
  .account-details-holder .account-details__left {
    margin: 25px auto;
    max-width: 500px;
    padding-right: 10px;
    text-align: center;
    width: 100%; }
    @media screen and (max-width: 549px) {
      .account-details-holder .account-details__left {
        padding: 0; } }
    .account-details-holder .account-details__left > h5 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      margin-top: 20px;
      zoom: 1; }
      .account-details-holder .account-details__left > h5:before, .account-details-holder .account-details__left > h5:after {
        content: "";
        display: table; }
      .account-details-holder .account-details__left > h5:after {
        clear: both; }
      .account-details-holder .account-details__left > h5:first-child {
        margin-top: 0; }
      .account-details-holder .account-details__left > h5 .account-details__username-label {
        color: #4D4D4D;
        font-weight: normal;
        margin-left: 21%;
        text-align: left;
        text-transform: uppercase;
        float: left;
        width: 30%; }
        @media screen and (max-width: 499px) {
          .account-details-holder .account-details__left > h5 .account-details__username-label {
            font-size: 15px;
            font-size: 1rem; } }
      .account-details-holder .account-details__left > h5 .account-details__username-value {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-weight: lighter;
        -webkit-word-wrap: break-word;
        -moz-word-wrap: break-word;
        -ms-word-wrap: break-word;
        -o-word-wrap: break-word;
        word-wrap: break-word;
        font-size: 15px;
        font-size: 1rem;
        color: #4D4D4D;
        float: left;
        width: 40%; }
      .account-details-holder .account-details__left > h5 a {
        margin-top: 25px; }
    .account-details-holder .account-details__left .primary-btn.change-password-btn, .account-details-holder .account-details__left .change-password-btn.pay-online-btn, .account-details-holder .account-details__left .change-password-btn.proceed-invoice-btn, .account-details-holder .account-details__left .change-password-btn.place-bid-btn, .account-details-holder .account-details__left .change-password-btn.login-btn, .account-details-holder .account-details__left .change-password-btn.change-bid-btn, .account-details-holder .account-details__left .change-password-btn.added-to-wishlist, .account-details-holder .account-details__left .change-password-btn.hammer-login-btn {
      margin-top: 15px; }
  .account-details-holder .account-details__right {
    margin-top: 20px;
    text-align: center;
    float: left;
    width: 100%; }
    @media screen and (max-width: 799px) {
      .account-details-holder .account-details__right {
        float: right;
        width: auto; } }
    @media screen and (max-width: 549px) {
      .account-details-holder .account-details__right {
        margin-top: 15px;
        padding: 0;
        width: 100%; } }
    .account-details-holder .account-details__right > .change-password-btn {
      display: inline-block;
      font-size: 15px;
      margin-left: 60px;
      padding: 5px 15px;
      text-align: center; }
      @media screen and (max-width: 799px) {
        .account-details-holder .account-details__right > .change-password-btn {
          margin: 0; } }
      @media screen and (max-width: 549px) {
        .account-details-holder .account-details__right > .change-password-btn {
          width: 100%; } }

.saleroom-svg:hover path {
  fill: red; }

.saleroom-button {
  float: left;
  width: 100%; }

.sales-room-charge {
  float: left;
  padding-bottom: 15px;
  width: 100%; }

.login-details-information-holder {
  font-size: 18px;
  margin: 40px auto 0 auto;
  text-align: center;
  width: 80%;
  zoom: 1; }
  .login-details-information-holder:before, .login-details-information-holder:after {
    content: "";
    display: table; }
  .login-details-information-holder:after {
    clear: both; }
  @media screen and (max-width: 799px) {
    .login-details-information-holder {
      width: 85%; } }
  @media screen and (max-width: 599px) {
    .login-details-information-holder {
      width: 100%; } }
  .login-details-information-holder > h5 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase; }
  .login-details-information-holder > p {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px auto 0;
    max-width: 400px; }
    @media screen and (max-width: 599px) {
      .login-details-information-holder > p {
        font-size: 12px; } }
  .login-details-information-holder > a {
    display: inline-block;
    font-size: 15px;
    margin: 15px 0 0 !important;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    float: none;
    width: auto; }
    @media screen and (max-width: 599px) {
      .login-details-information-holder > a {
        width: 100%; } }
  .login-details-information-holder .live-bidding-holder h5 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
  .login-details-information-holder .live-bidding-holder p {
    font-size: 15px;
    font-weight: lighter;
    margin: 0 auto;
    margin-top: 10px;
    max-width: 450px;
    text-align: center; }
  .login-details-information-holder .live-bidding-btn {
    background: url("../images/thesaleroom.png") no-repeat;
    background-color: #c81618;
    background-position: 85% 61%;
    background-size: 102px;
    padding: 7px 140px 7px 25px; }
    @media screen and (min-width: 480px) and (max-width: 599px) {
      .login-details-information-holder .live-bidding-btn {
        width: 75%; } }
    .login-details-information-holder .live-bidding-btn:hover {
      background: url("../images/thesaleroom-red.png") no-repeat;
      background-color: transparent;
      background-position: 85% 61%;
      background-size: 102px;
      color: #c81618; }

.mf-departments-holder {
  padding: 10px 30px;
  zoom: 1; }
  .mf-departments-holder:before, .mf-departments-holder:after {
    content: "";
    display: table; }
  .mf-departments-holder:after {
    clear: both; }
  @media screen and (max-width: 899px) {
    .mf-departments-holder {
      padding: 10px; } }
  @media screen and (max-width: 599px) {
    .mf-departments-holder {
      padding: 10px 0; } }
  .mf-departments-holder .mf-departments {
    padding-bottom: 30px;
    zoom: 1; }
    .mf-departments-holder .mf-departments:before, .mf-departments-holder .mf-departments:after {
      content: "";
      display: table; }
    .mf-departments-holder .mf-departments:after {
      clear: both; }
    .mf-departments-holder .mf-departments .mf-departments__name {
      color: #c81618;
      font-weight: bold;
      float: left;
      width: 100%; }
    .mf-departments-holder .mf-departments .mf-departments__list {
      margin-top: 10px;
      float: left;
      width: 100%; }
      .mf-departments-holder .mf-departments .mf-departments__list > li {
        margin-top: 20px;
        padding-right: 20px;
        float: left;
        width: 33.33%; }
        @media screen and (max-width: 599px) {
          .mf-departments-holder .mf-departments .mf-departments__list > li {
            width: 50%; } }
  .mf-departments-holder .dept-image-holder {
    float: left;
    width: 100%; }
  .mf-departments-holder .dept-details-holder {
    margin-top: 20px;
    float: left;
    width: 100%; }
    .mf-departments-holder .dept-details-holder h4 {
      color: #4D4D4D;
      font-weight: normal; }
    .mf-departments-holder .dept-details-holder p.contact-job {
      margin-top: 3px; }
    .mf-departments-holder .dept-details-holder p.contact-email {
      -webkit-word-wrap: break-word;
      -moz-word-wrap: break-word;
      -ms-word-wrap: break-word;
      -o-word-wrap: break-word;
      word-wrap: break-word; }
      .mf-departments-holder .dept-details-holder p.contact-email > a {
        color: #4D4D4D;
        text-decoration: none; }
        .mf-departments-holder .dept-details-holder p.contact-email > a:hover {
          color: #c81618; }

.account-details-holder .formTable {
  width: 100%; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .account-details-holder .formTable .account-details-holder {
      width: 80%; } }
  @media screen and (min-width: 0) and (max-width: 749px) {
    .account-details-holder .formTable .account-details-holder {
      padding: 10px;
      width: 100%; } }
  .account-details-holder .formTable th, .account-details-holder .formTable td {
    font-size: 15px;
    padding: 5px;
    vertical-align: middle; }
    @media screen and (max-width: 599px) {
      .account-details-holder .formTable th, .account-details-holder .formTable td {
        font-size: 15px; } }
  .account-details-holder .formTable input, .account-details-holder .formTable textarea, .account-details-holder .formTable select {
    font-size: 15px;
    width: 100%; }
    @media screen and (max-width: 599px) {
      .account-details-holder .formTable input, .account-details-holder .formTable textarea, .account-details-holder .formTable select {
        font-size: 15px; } }
  .account-details-holder .formTable input, .account-details-holder .formTable textarea {
    padding: 5px; }
  @media screen and (min-width: 0) and (max-width: 449px) {
    .account-details-holder .formTable .fieldLabel, .account-details-holder .formTable .fieldData, .account-details-holder .formTable select {
      display: block;
      width: 100%; } }

.account-details-holder .formFooter {
  margin-bottom: 20px;
  text-align: right; }

.login-details-table tr td:first-child {
  font-weight: 500;
  padding: 5px 20px 10px 0 !important; }

/* ====== ARCHIVES ====== */
/* ======
ARCHIVES
	- GENERAL
====== */
/*================================================================================
$ ARCHIVES
================================================================================*/
.auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price {
  font-weight: normal;
  margin: 20px 0 0;
  zoom: 1;
  font-size: 15px;
  font-size: 1rem; }
  .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:before, .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:after {
    content: "";
    display: table; }
  .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:after {
    clear: both; }
  .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__title {
    color: #c81618;
    float: left;
    width: 40%; }
    @media screen and (max-width: 699px) {
      .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__title {
        width: 50%; } }
  .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__value {
    color: #c81618;
    float: left;
    width: 60%; }
    @media screen and (max-width: 699px) {
      .auction-archives-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__value {
        width: 50%; } }

/* ====== BIDS ====== */
/* ======
BIDS
	- GENERAL
	- LOGIN DETAILS
	- WON/LOST
	- BID HISTORY OVERRIDES
====== */
/*================================================================================
$ BIDS
================================================================================*/
.lot-storage-message {
  color: red;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 auto 15px;
  max-width: 80%;
  text-align: center; }
  @media screen and (max-width: 599px) {
    .lot-storage-message {
      max-width: none; } }

.mf-bid-basket-holder {
  padding-top: 15px;
  position: relative;
  zoom: 1; }
  .mf-bid-basket-holder:before, .mf-bid-basket-holder:after {
    content: "";
    display: table; }
  .mf-bid-basket-holder:after {
    clear: both; }
  .mf-bid-basket-holder .mf-bid-basket__left {
    background-color: #f2f2f2;
    background-image: url("/images/arrow-dropdown.png");
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 12px;
    cursor: pointer;
    padding: 5px 40px 5px 10px;
    float: left;
    width: 55%; }
    @media screen and (max-width: 699px) {
      .mf-bid-basket-holder .mf-bid-basket__left {
        padding: 10px 40px 10px 10px; } }
    @media screen and (max-width: 549px) {
      .mf-bid-basket-holder .mf-bid-basket__left {
        width: 100%; } }
    .mf-bid-basket-holder .mf-bid-basket__left.opened {
      background-image: url("/images/arrow-dropdown.png");
      background-size: 12px; }
    .mf-bid-basket-holder .mf-bid-basket__left > h4 {
      float: left;
      width: auto;
      font-size: 15px;
      font-size: 1rem;
      color: #4D4D4D;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-weight: 300;
      line-height: 1.5;
      text-transform: capitalize; }
      @media screen and (max-width: 699px) {
        .mf-bid-basket-holder .mf-bid-basket__left > h4 {
          font-size: 15px; } }
    .mf-bid-basket-holder .mf-bid-basket__left .mf-bid-basket__total-num {
      float: left;
      font-weight: 500;
      margin-left: 20px; }
  .mf-bid-basket-holder .mf-bid-basket__right {
    float: left;
    width: 45%; }
    @media screen and (max-width: 549px) {
      .mf-bid-basket-holder .mf-bid-basket__right {
        margin-top: 5px;
        width: 100%; } }
    .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons {
      zoom: 1; }
      .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons:before, .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons:after {
        content: "";
        display: table; }
      .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons:after {
        clear: both; }
      .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons .button {
        float: left;
        margin-bottom: 0;
        margin-left: 1%;
        padding: 6px;
        width: 49%; }
        @media screen and (max-width: 699px) {
          .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons .button {
            padding: 11px 0;
            font-size: 14px; } }
        @media screen and (max-width: 549px) {
          .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons .button {
            margin-left: 0; } }
        @media screen and (max-width: 549px) {
          .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons .button:first-child {
            margin-right: 2%; } }
        @media screen and (max-width: 549px) {
          .mf-bid-basket-holder .mf-bid-basket__right .mf-bid-basket__right__buttons .button.button-left {
            margin-left: 0; } }

.mf-bid-basket-total-holder {
  background-color: #eeeeee;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.6s linear 0s;
  -moz-transition: max-height 0.6s linear 0s;
  -ms-transition: max-height 0.6s linear 0s;
  -o-transition: max-height 0.6s linear 0s;
  transition: max-height 0.6s linear 0s;
  float: left;
  width: 100%; }
  .mf-bid-basket-total-holder .mf-bid-basket-total__inner {
    padding: 10px 0;
    text-align: center;
    zoom: 1; }
    .mf-bid-basket-total-holder .mf-bid-basket-total__inner:before, .mf-bid-basket-total-holder .mf-bid-basket-total__inner:after {
      content: "";
      display: table; }
    .mf-bid-basket-total-holder .mf-bid-basket-total__inner:after {
      clear: both; }
    @media screen and (max-width: 699px) {
      .mf-bid-basket-total-holder .mf-bid-basket-total__inner {
        padding: 20px; } }
    @media screen and (max-width: 599px) {
      .mf-bid-basket-total-holder .mf-bid-basket-total__inner {
        padding: 10px; } }
    .mf-bid-basket-total-holder .mf-bid-basket-total__inner .bb-left-col {
      margin-left: 10px; }
    .mf-bid-basket-total-holder .mf-bid-basket-total__inner .total__bids {
      min-width: 25%; }
      .mf-bid-basket-total-holder .mf-bid-basket-total__inner .total__bids span {
        color: #5e5e5d; }
    .mf-bid-basket-total-holder .mf-bid-basket-total__inner .total__amount {
      min-width: 30%; }
  .mf-bid-basket-total-holder p {
    color: #4D4D4D;
    float: left;
    margin-bottom: 0;
    text-transform: capitalize; }
    @media screen and (max-width: 1249px) {
      .mf-bid-basket-total-holder p {
        font-size: 15px; } }
    @media screen and (max-width: 799px) {
      .mf-bid-basket-total-holder p {
        font-size: 15px; } }
    .mf-bid-basket-total-holder p .bb-left-col, .mf-bid-basket-total-holder p .bb-right-col {
      display: inline-block; }
    .mf-bid-basket-total-holder p .bb-right-col {
      font-weight: 500;
      padding-left: 10px; }
  .mf-bid-basket-total-holder.open-basket {
    max-height: 500px;
    -webkit-transition: max-height 1.5s ease-in-out 0s;
    -moz-transition: max-height 1.5s ease-in-out 0s;
    -ms-transition: max-height 1.5s ease-in-out 0s;
    -o-transition: max-height 1.5s ease-in-out 0s;
    transition: max-height 1.5s ease-in-out 0s; }

.currentbids .bidded-auctions.auction-open .bidded-auctions__title, .mywishlist .bidded-auctions.auction-open .bidded-auctions__title, .biddinghistory .bidded-auctions.auction-open .bidded-auctions__title {
  border-bottom: 1px solid #cccccc !important; }

.auction-bid-holder {
  float: left;
  width: 100%; }
  .auction-bid-holder .bidded-auctions.no-bids, .auction-bid-holder .bidded-auctions.no-bids.auction-open {
    border-bottom: none !important; }
    .auction-bid-holder .bidded-auctions.no-bids .bidded-auctions__title, .auction-bid-holder .bidded-auctions.no-bids.auction-open .bidded-auctions__title {
      cursor: default;
      background: none;
      border-bottom: none !important;
      border-top: none !important;
      padding-top: 0;
      margin-top: 0; }
  .auction-bid-holder .bidded-auctions .bidded-auctions__title {
    background-image: url("../images/arrow-dropdown.png");
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: 12px;
    -webkit-background-size: 12px;
    -moz-background-size: 12px;
    -ms-background-size: 12px;
    -o-background-size: 12px;
    background-size: 12px;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    zoom: 1; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__title:before, .auction-bid-holder .bidded-auctions .bidded-auctions__title:after {
      content: "";
      display: table; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__title:after {
      clear: both; }
    @media screen and (max-width: 899px) {
      .auction-bid-holder .bidded-auctions .bidded-auctions__title {
        padding: 10px 40px 10px 0; } }
    .auction-bid-holder .bidded-auctions .bidded-auctions__title > h3 {
      color: #4D4D4D;
      font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
      font-weight: 300;
      float: left;
      font-size: 15px;
      margin: 0;
      position: relative;
      text-align: left;
      text-transform: capitalize;
      vertical-align: middle;
      width: 91%;
      z-index: 2; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__title > h3 span {
        color: #c81618;
        font-weight: 300;
        line-height: 1.5;
        text-transform: none; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__title > .personal-cat-btn {
      display: none;
      float: right !important;
      margin-bottom: 0;
      max-width: 225px;
      position: relative;
      right: 50px;
      width: 100%; }
  .auction-bid-holder .bidded-auctions.auction-open {
    border-bottom: 1px solid #cccccc; }
    .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title {
      background-image: url("../images/arrow-dropup.png");
      background-size: 12px;
      border-bottom: none; }
      .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > h3 {
        padding-right: 55px;
        width: auto; }
        @media screen and (max-width: 549px) {
          .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > h3 {
            width: 70%; } }
        @media screen and (max-width: 479px) {
          .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > h3 {
            padding-right: 0;
            width: 100%; } }
      .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > .personal-cat-btn {
        display: inline-block;
        height: auto;
        float: left;
        font-size: 13px;
        line-height: 1.25;
        opacity: 1;
        padding: 3px 20px 5px;
        text-align: center;
        -webkit-transition: all 0s ease-in-out 0s;
        -moz-transition: all 0s ease-in-out 0s;
        -ms-transition: all 0s ease-in-out 0s;
        -o-transition: all 0s ease-in-out 0s;
        transition: all 0s ease-in-out 0s; }
        @media screen and (max-width: 629px) {
          .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > .personal-cat-btn {
            padding: 5px; } }
        @media screen and (max-width: 549px) {
          .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > .personal-cat-btn {
            width: 28%; } }
        @media screen and (max-width: 479px) {
          .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > .personal-cat-btn {
            margin: 10px 0;
            width: 100%;
            font-size: 11px;
            font-size: 0.73333rem; } }
        .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title > .personal-cat-btn:hover {
          background-color: transparent;
          color: #c81618;
          -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
          -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
          -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
          -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s;
          transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s; }
      .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title .auction-expander {
        border-color: #ffffff; }
        .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__title .auction-expander span {
          background-color: #ffffff; }
    .auction-bid-holder .bidded-auctions.auction-open .bidded-auctions__content {
      max-height: 100%;
      padding: 0;
      -webkit-transition: max-height 0.5s ease-in-out 0s;
      -moz-transition: max-height 0.5s ease-in-out 0s;
      -ms-transition: max-height 0.5s ease-in-out 0s;
      -o-transition: max-height 0.5s ease-in-out 0s;
      transition: max-height 0.5s ease-in-out 0s; }
  .auction-bid-holder .bidded-auctions .bidded-auctions__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out 0s;
    -moz-transition: max-height 0.5s ease-in-out 0s;
    -ms-transition: max-height 0.5s ease-in-out 0s;
    -o-transition: max-height 0.5s ease-in-out 0s;
    transition: max-height 0.5s ease-in-out 0s; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content * {
      font-size: 13px !important; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content .button, .auction-bid-holder .bidded-auctions .bidded-auctions__content button, .auction-bid-holder .bidded-auctions .bidded-auctions__content .secondary-btn {
      font-size: 15px !important;
      min-width: 175px !important; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content td {
      padding: 5px 0; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items {
      border-top: 1px solid #cccccc;
      margin: 0 auto;
      padding: 40px 0;
      width: 100%;
      zoom: 1; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items:before, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items:after {
        content: "";
        display: table; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items:after {
        clear: both; }
      @media screen and (max-width: 899px) {
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items {
          width: 100%; } }
      @media screen and (max-width: 599px) {
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items {
          padding: 10px; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__items:first-child {
        border-top: none; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left {
      float: left;
      margin-right: 2%;
      width: 22%; }
      @media screen and (max-width: 699px) {
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left {
          float: none;
          margin: 0 auto;
          max-width: 300px;
          padding-right: 0;
          width: 100%; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left a {
        display: block; }
        @media screen and (max-width: 449px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left a {
            margin: 0 auto;
            width: 70%; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left a img {
          width: 100%; }
    .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right {
      float: left;
      margin-left: 3%;
      width: 40%; }
      @media screen and (max-width: 699px) {
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right {
          width: 100%;
          margin-left: 0; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right p {
        line-height: 1.25;
        text-align: left; }
        @media screen and (max-width: 699px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right p {
            text-align: left !important; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-num {
        color: #4D4D4D;
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 0;
        text-transform: capitalize; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-desc {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-weight: normal;
        margin: 10px 0; }
        @media screen and (max-width: 499px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-desc {
            margin-top: 15px; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-desc p {
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-size: 14px;
          font-weight: light;
          margin: 10px 0 0; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-desc p:first-child {
            margin: 0; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids {
        float: left;
        width: 100%; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids.dropdown-open .your-bid.has-dropdown {
          background-image: url(/images/account-down-arrow.png); }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids.dropdown-open .additional-fees-container {
          max-height: 190px; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .current-bid {
          float: left;
          width: 100%; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .current-bid > p {
            float: left;
            font-size: 15px !important;
            font-weight: 400;
            margin: 5px 0 0 0;
            padding-top: 20px; }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .current-bid > p:first-child {
              padding-right: 10px; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .your-bid {
          float: left;
          width: 100%;
          border-bottom: 1px solid #eeeeee;
          border-top: 1px solid #eeeeee;
          margin-top: 5px;
          max-width: 400px;
          position: relative;
          background-position: 98% center;
          background-repeat: no-repeat;
          background-size: 12px;
          margin-bottom: 0;
          padding: 10px 30px 10px 0;
          zoom: 1; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .your-bid.has-dropdown {
            cursor: pointer;
            background-image: url(/images/account-right-arrow.png); }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .your-bid > p {
            float: left;
            color: #c81618;
            font-weight: 400;
            margin-bottom: 0; }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .your-bid > p:first-child {
              padding-right: 10px; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container {
          float: left;
          width: 100%;
          padding-top: 10px;
          max-height: 0;
          overflow: hidden;
          -webkit-transition: max-height 0.3s ease-out;
          -moz-transition: max-height 0.3s ease-out;
          -ms-transition: max-height 0.3s ease-out;
          -o-transition: max-height 0.3s ease-out;
          transition: max-height 0.3s ease-out; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid {
            margin-bottom: 5px; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty {
            float: left;
            width: 100%; }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p {
              float: left;
              margin-bottom: 0; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p.mybid-bid-commission-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p.timed-user-bidded-value, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p.mybid-bid-vat-on-hammer-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p.mybid-bid-arr-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-commission > p.mybid-bid-import-duty-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p.mybid-bid-commission-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p.timed-user-bidded-value, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p.mybid-bid-vat-on-hammer-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p.mybid-bid-arr-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .your-max-bid > p.mybid-bid-import-duty-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p.mybid-bid-commission-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p.timed-user-bidded-value, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p.mybid-bid-vat-on-hammer-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p.mybid-bid-arr-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-vat-on-hammer > p.mybid-bid-import-duty-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p.mybid-bid-commission-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p.timed-user-bidded-value, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p.mybid-bid-vat-on-hammer-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p.mybid-bid-arr-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-arr > p.mybid-bid-import-duty-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p.mybid-bid-commission-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p.timed-user-bidded-value, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p.mybid-bid-vat-on-hammer-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p.mybid-bid-arr-gs, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-import-duty > p.mybid-bid-import-duty-gs {
                float: right;
                font-weight: 600; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-total {
            float: right;
            width: 100%;
            max-width: 180px;
            padding-top: 10px; }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-total p {
              color: #c81618;
              font-weight: normal;
              float: left;
              margin-bottom: 0; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .additional-fees-container .mybid-bid-total p.mybid-bid-total-gs {
                float: right;
                font-weight: 600; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .placed-bids .advisory_notice {
          float: left;
          width: 100%;
          padding-top: 20px; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-est {
        font-size: 15px !important;
        font-weight: 400;
        margin: 5px 0 0 0;
        padding-top: 20px;
        font-size: 18px;
        font-size: 1.2rem; }
        @media screen and (max-width: 699px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-est {
            padding-top: 0; } }
        @media screen and (max-width: 499px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-est {
            margin-top: 15px; } }
        @media screen and (max-width: 399px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-est {
            font-size: 15px; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny {
        border-bottom: 1px solid #eeeeee;
        border-top: 1px solid #eeeeee;
        margin-top: 5px;
        max-width: 400px;
        position: relative; }
        @media screen and (max-width: 499px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny {
            margin-top: 10px; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p {
          color: #c81618;
          margin-bottom: 0;
          padding: 10px 30px 10px 0;
          zoom: 1;
          font-size: 15px;
          font-size: 1rem; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p:before, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p:after {
            content: "";
            display: table; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p:after {
            clear: both; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p > span {
            color: #c81618;
            float: left;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
            text-transform: capitalize; }
            @media screen and (max-width: 399px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p > span {
                font-size: 15px; } }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p > span .small {
              color: #4D4D4D;
              font-size: 9px;
              font-size: 0.6rem; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p .bid-total-num {
            font-weight: normal;
            text-align: left; }
            @media screen and (max-width: 549px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total_ny > p .bid-total-num {
                width: 40%; } }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total {
        border-bottom: 1px solid #eeeeee;
        border-top: 1px solid #eeeeee;
        margin-top: 5px;
        max-width: 400px;
        position: relative; }
        @media screen and (max-width: 799px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total {
            margin: 0 auto;
            max-width: none;
            width: 61%; } }
        @media screen and (max-width: 499px) {
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total {
            margin-top: 10px; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total.auction-bid-total-open > p {
          background-image: url("/images/account-down-arrow.png");
          background-size: 12px; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total.auction-bid-total-open .mf-bid-total-holder {
          max-height: 500px;
          -webkit-transition: max-height 0.5s ease-in-out 0s;
          -moz-transition: max-height 0.5s ease-in-out 0s;
          -ms-transition: max-height 0.5s ease-in-out 0s;
          -o-transition: max-height 0.5s ease-in-out 0s;
          transition: max-height 0.5s ease-in-out 0s; }
          @media screen and (max-width: 799px) {
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total.auction-bid-total-open .mf-bid-total-holder {
              text-align: center; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p {
          background-image: url("/images/account-right-arrow.png");
          background-position: 98% center;
          background-repeat: no-repeat;
          background-size: 12px;
          color: #c81618;
          cursor: pointer;
          margin-bottom: 0;
          padding: 10px 30px 10px 0;
          zoom: 1;
          font-size: 15px;
          font-size: 1rem; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p:before, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p:after {
            content: "";
            display: table; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p:after {
            clear: both; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p > span {
            color: #c81618;
            float: left;
            font-size: 14px;
            font-weight: 500;
            margin-right: 10px;
            text-transform: capitalize; }
            @media screen and (max-width: 399px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p > span {
                font-size: 15px; } }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p > span .small {
              color: #4D4D4D;
              font-size: 9px;
              font-size: 0.6rem; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p .bid-total-num {
            font-weight: normal;
            text-align: left; }
            @media screen and (max-width: 549px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total > p .bid-total-num {
                width: 40%; } }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder {
          max-height: 0;
          overflow: hidden;
          -webkit-transition: max-height 0.5s ease-in-out 0s;
          -moz-transition: max-height 0.5s ease-in-out 0s;
          -ms-transition: max-height 0.5s ease-in-out 0s;
          -o-transition: max-height 0.5s ease-in-out 0s;
          transition: max-height 0.5s ease-in-out 0s; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown {
            float: right;
            width: 100%; }
            @media screen and (max-width: 799px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown {
                display: inline-block;
                float: none; } }
            @media screen and (max-width: 599px) {
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown {
                float: left;
                width: 90%; } }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p {
              color: #4D4D4D;
              line-height: 1.75;
              margin: 5px 0 0;
              zoom: 1; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p:before, .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p:after {
                content: "";
                display: table; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p:after {
                clear: both; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p .mf-bid-total__breakdown__title {
                padding-right: 40px;
                float: left;
                width: 70%; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p .mf-bid-total__breakdown__value {
                font-weight: 600;
                text-align: right;
                float: left;
                width: 30%; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p.total-row {
                color: #c81618;
                font-weight: normal;
                margin-top: 15px; }
                .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__breakdown > p.total-row .mf-bid-total__breakdown__title {
                  text-align: right; }
          .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information {
            margin-top: 10px;
            padding-bottom: 10px;
            float: left;
            width: 100%; }
            .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a {
              font-weight: 300;
              line-height: 1.5;
              text-transform: none;
              font-size: 11px;
              font-size: 0.73333rem;
              color: #BBBBBB;
              float: right;
              width: 60%; }
              @media screen and (max-width: 999px) {
                .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a {
                  width: 68%; } }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a:hover > span {
                color: #c81618; }
              .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a > span {
                display: inline-block;
                vertical-align: middle; }
                .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a > span.tooltip-title-text {
                  margin-left: 5px; }
                .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__bid-total .mf-bid-total-holder .mf-bid-total__information > a > span > img {
                  display: block;
                  height: 15px;
                  width: 15px; }
      .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__button-text {
        margin-top: 10px; }
        .auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__button-text > p {
          color: #c81618;
          text-transform: initial; }

.current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right p {
  text-align: left; }

.current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.75;
  margin: 0;
  zoom: 1; }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p:before, .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p:after {
    content: "";
    display: table; }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p:after {
    clear: both; }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span {
    float: left;
    width: 50%; }
    .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span > img {
      display: inline-block;
      margin-right: 2px;
      margin-top: 2px;
      vertical-align: top; }
    .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span.bid-history__title {
      color: #c81618; }
      @media screen and (max-width: 599px) {
        .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span.bid-history__title {
          width: 50%; } }
    .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span.bid-history__value {
      color: #c81618; }
      @media screen and (max-width: 599px) {
        .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p > span.bid-history__value {
          width: 50%; } }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p.hammer-price-row img {
    max-width: 12px; }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__lot-result > p.hammer-price-row span {
    color: #c81618;
    font-weight: 600; }

.current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons {
  float: right;
  min-width: 150px;
  max-width: 150px;
  width: 25%; }
  @media screen and (max-width: 799px) {
    .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons {
      float: left;
      max-width: none;
      padding-top: 20px;
      width: 100%; } }
  .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons a {
    font-size: 15px !important;
    float: right;
    margin: 0 0 5px 0;
    max-width: 150px;
    min-width: 0 !important;
    width: 100%; }
    @media screen and (max-width: 799px) {
      .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons a {
        float: left;
        max-width: 40%;
        clear: both;
        margin-left: 27%; } }
    @media screen and (max-width: 699px) {
      .current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons a {
        float: none;
        margin-left: 0; } }

.current-auction-bid-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__button-text {
  float: left;
  width: 100%; }

/*================================================================================
$ LOGIN DETAILS
================================================================================*/
.bidded-auctions__content .my-details-title {
  padding-top: 10px; }
  .bidded-auctions__content .my-details-title.billing-details {
    padding-top: 0;
    padding-bottom: 15px; }

/*================================================================================
$ WON/LOST
================================================================================*/
.account__content .pending-bids-title {
  background: #F0F0F0;
  margin: 20px 0 10px;
  padding: 20px 0; }
  .account__content .pending-bids-title span {
    font-size: 15px; }

.account__content .account__current-bids-title {
  padding: 15px 0 15px 0;
  text-align: left; }

/*================================================================================
$ WON/LOST
================================================================================*/
.bidded-auctions__content__left {
  position: relative; }

.bidded-auctions__outcome {
  border: 3px solid #ffffff;
  color: white;
  font-size: 14px;
  padding: 7px 20px;
  position: absolute;
  left: 0;
  text-transform: uppercase;
  top: -5px; }
  .bidded-auctions__outcome.lost.lost {
    background: #ffffff;
    border: 1px solid #4D4D4D;
    color: #4D4D4D;
    font-size: 13px !important;
    font-weight: 600;
    padding: 6px 7px; }
  .bidded-auctions__outcome.won.won {
    background: #c81618;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600;
    padding: 6px 7px; }

/*================================================================================
$ BID HISTORY OVERRIDES
================================================================================*/
.bid-history-page-holder .bidded-auctions__content__left {
  float: left;
  margin-right: 2%;
  width: 22%; }
  @media screen and (max-width: 799px) {
    .bid-history-page-holder .bidded-auctions__content__left {
      float: none;
      margin: 0 auto;
      max-width: 300px;
      padding-right: 0;
      width: 100%; } }
  .bid-history-page-holder .bidded-auctions__content__left a {
    display: block; }
    @media screen and (max-width: 449px) {
      .bid-history-page-holder .bidded-auctions__content__left a {
        margin: 0 auto;
        width: 70%; } }
    .bid-history-page-holder .bidded-auctions__content__left a img {
      width: 100%; }

.bid-history-page-holder .bidded-auctions__content__right {
  float: left;
  margin-left: 3%;
  width: 40% !important; }
  @media screen and (max-width: 799px) {
    .bid-history-page-holder .bidded-auctions__content__right {
      width: 100% !important; } }
  .bid-history-page-holder .bidded-auctions__content__right p {
    line-height: 1.25;
    text-align: left; }
    @media screen and (max-width: 799px) {
      .bid-history-page-holder .bidded-auctions__content__right p {
        text-align: center !important; } }
  .bid-history-page-holder .bidded-auctions__content__right .estimate {
    float: left;
    width: 50%; }
  .bid-history-page-holder .bidded-auctions__content__right .estimate_amount {
    float: right;
    width: 50%; }

.bid-history-page-holder .bidded-auctions__buttons {
  float: left;
  min-width: 150px;
  max-width: 150px;
  width: 25%; }
  @media screen and (max-width: 799px) {
    .bid-history-page-holder .bidded-auctions__buttons {
      float: left;
      padding-top: 20px;
      width: 100%; } }
  .bid-history-page-holder .bidded-auctions__buttons a {
    display: block;
    margin: 0 auto 5px;
    max-width: 150px;
    width: 100%; }
    @media screen and (max-width: 799px) {
      .bid-history-page-holder .bidded-auctions__buttons a {
        max-width: none; } }

.currentbids .bidded-auctions__title {
  border-top: 1px solid #cccccc;
  margin-top: 20px; }

.biddinghistory .account__content__title {
  position: relative;
  text-align: left;
  zoom: 1; }
  .biddinghistory .account__content__title:before, .biddinghistory .account__content__title:after {
    content: "";
    display: table; }
  .biddinghistory .account__content__title:after {
    clear: both; }
  .biddinghistory .account__content__title h1 {
    padding-bottom: 40px; }

/* ====== BILLING DETAILS ====== */
/* ======
BILLING DETAILS
	- GENERAL
====== */
/*================================================================================
$ BILLING DETAILS
================================================================================*/
.billing-details-holder {
  max-width: 500px;
  padding: 10px 0;
  width: 100%;
  zoom: 1; }
  .billing-details-holder:before, .billing-details-holder:after {
    content: "";
    display: table; }
  .billing-details-holder:after {
    clear: both; }
  @media screen and (max-width: 899px) {
    .billing-details-holder {
      width: 100%; } }
  .billing-details-holder .billing-details__row {
    margin-top: 20px;
    -webkit-word-wrap: break-word;
    -moz-word-wrap: break-word;
    -ms-word-wrap: break-word;
    -o-word-wrap: break-word;
    word-wrap: break-word;
    float: left;
    width: 100%; }
    .billing-details-holder .billing-details__row:first-child {
      margin-top: 0; }
  .billing-details-holder .billing-details__row__left {
    float: left;
    min-width: 150px;
    width: auto; }
    .billing-details-holder .billing-details__row__left > h5 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-weight: normal;
      line-height: 1.25;
      text-align: left;
      text-transform: capitalize; }
      @media screen and (max-width: 599px) {
        .billing-details-holder .billing-details__row__left > h5 {
          font-size: 12px; } }
  .billing-details-holder .billing-details__row__middle {
    float: left;
    padding-left: 10px;
    width: 50%; }
    .billing-details-holder .billing-details__row__middle > p {
      font-weight: lighter;
      line-height: 1.25;
      text-align: left; }
  .billing-details-holder .billing-details__row__right {
    float: left;
    padding-right: 30px;
    text-align: left;
    width: 100%; }
    @media screen and (max-width: 499px) {
      .billing-details-holder .billing-details__row__right {
        clear: left;
        margin-top: 10px;
        padding-right: 0;
        width: 100%; } }
    .billing-details-holder .billing-details__row__right > a {
      display: inline-block;
      padding: 5px 30px;
      text-align: center;
      width: auto; }
      @media screen and (max-width: 599px) {
        .billing-details-holder .billing-details__row__right > a {
          padding: 5px 15px;
          width: 100%; } }

/* ====== WISHLIST ====== */
/* ======
CONTACT A DEPARTMENT
	- GENERAL
====== */
/*================================================================================
$ CONTACT A DEPARTMENT
================================================================================*/
/* Code for odd/even styling */
.account__content__main .mf-departments__list .dept-image-holder {
  text-align: center; }

.account__content__main .mf-departments__list .contact-name {
  font-size: 18px;
  font-weight: 500;
  text-align: center; }

.account__content__main .mf-departments__list .contact-job {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase; }

.account__content__main .mf-departments__list .contact-tel {
  display: none; }

.account__content__main .mf-departments__list .contact-email {
  text-align: center; }
  .account__content__main .mf-departments__list .contact-email a {
    color: #4D4D4D;
    font-size: 14px; }

/* ====== DASHBOARD ====== */
/* ======
DASHBOARD
	- GENERAL
====== */
/*================================================================================
$ DASHBOARD
================================================================================*/
.buyer-vendor-tabs {
  zoom: 1; }
  .buyer-vendor-tabs:before, .buyer-vendor-tabs:after {
    content: "";
    display: table; }
  .buyer-vendor-tabs:after {
    clear: both; }
  .buyer-vendor-tabs .buyer-vendor-tabs__content {
    float: left;
    width: 100%; }

.dashboard-box {
  border-left: 1px solid #cccccc;
  min-height: 325px;
  padding: 10px;
  position: relative;
  float: left;
  width: 49%; }
  @media screen and (max-width: 1139px) {
    .dashboard-box {
      min-height: 350px; } }
  @media screen and (max-width: 899px) {
    .dashboard-box {
      border-left: none;
      border-top: 1px solid #cccccc;
      margin: 10px 0 0 !important;
      min-height: 0;
      padding: 10px 0;
      width: 100%; } }
  .dashboard-box.dashboard-box-left {
    border-left: none; }
  .dashboard-box.dashboard-box-3, .dashboard-box.dashboard-box-4 {
    border-top: 1px solid #cccccc; }
  .dashboard-box .dashboard-box__title {
    text-align: center;
    float: left;
    width: 100%; }
    .dashboard-box .dashboard-box__title > h2 {
      font-size: 30px;
      font-weight: 300;
      padding-top: 10px; }
      @media screen and (max-width: 899px) {
        .dashboard-box .dashboard-box__title > h2 {
          font-weight: normal; } }
  .dashboard-box .dashboard-box__content {
    margin-top: 20px;
    min-height: 250px;
    float: left;
    width: 100%; }
    @media screen and (max-width: 899px) {
      .dashboard-box .dashboard-box__content {
        min-height: 0; } }
    @media screen and (max-width: 499px) {
      .dashboard-box .dashboard-box__content {
        margin-top: 10px; } }
    .dashboard-box .dashboard-box__content table {
      margin-top: 0; }
      .dashboard-box .dashboard-box__content table td {
        font-size: 12px;
        font-size: 0.8rem;
        color: #4D4D4D; }
    .dashboard-box .dashboard-box__content .dashboard-box__no-content-text {
      font-size: 16px;
      font-weight: lighter;
      margin-top: 95px;
      text-align: center;
      vertical-align: middle; }
      @media screen and (max-width: 899px) {
        .dashboard-box .dashboard-box__content .dashboard-box__no-content-text {
          margin-top: 0; } }
    .dashboard-box .dashboard-box__content .my-details-table {
      margin: 0 auto;
      max-width: 275px; }
      .dashboard-box .dashboard-box__content .my-details-table tr td {
        font-size: 15px;
        padding: 10px 5px; }
        .dashboard-box .dashboard-box__content .my-details-table tr td:nth-child(1) {
          font-weight: lighter;
          width: 23%; }
          @media screen and (max-width: 1079px) {
            .dashboard-box .dashboard-box__content .my-details-table tr td:nth-child(1) {
              width: 30%; } }
        .dashboard-box .dashboard-box__content .my-details-table tr td:nth-child(2) {
          width: 77%; }
          @media screen and (max-width: 1079px) {
            .dashboard-box .dashboard-box__content .my-details-table tr td:nth-child(2) {
              width: 70%; } }
    .dashboard-box .dashboard-box__content .my-current-bids-table, .dashboard-box .dashboard-box__content .my-wishlist-table {
      margin: 0 auto;
      max-width: 450px; }
      @media screen and (max-width: 899px) {
        .dashboard-box .dashboard-box__content .my-current-bids-table, .dashboard-box .dashboard-box__content .my-wishlist-table {
          max-width: 500px; } }
      .dashboard-box .dashboard-box__content .my-current-bids-table tr td, .dashboard-box .dashboard-box__content .my-wishlist-table tr td {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-size: 12px; }
        .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(1), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(1) {
          font-weight: normal;
          text-transform: uppercase;
          width: 25%; }
          @media screen and (max-width: 1149px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(1), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(1) {
              width: 20%; } }
          @media screen and (max-width: 399px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(1), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(1) {
              width: 25%; } }
        .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(2), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(2) {
          width: 50%; }
          @media screen and (max-width: 1149px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(2), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(2) {
              width: 45%; } }
          @media screen and (max-width: 399px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(2), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(2) {
              width: 38%; } }
        .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(3), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(3) {
          font-weight: normal;
          text-align: right;
          width: 24%; }
          @media screen and (max-width: 1149px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(3), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(3) {
              width: 35%; } }
          @media screen and (max-width: 399px) {
            .dashboard-box .dashboard-box__content .my-current-bids-table tr td:nth-child(3), .dashboard-box .dashboard-box__content .my-wishlist-table tr td:nth-child(3) {
              width: 37%; } }
    @media screen and (max-width: 899px) {
      .dashboard-box .dashboard-box__content .pending-invoices-table {
        max-width: 500px; } }
    .dashboard-box .dashboard-box__content .pending-invoices-table .overdue td {
      color: #c81618;
      font-weight: bold; }
    .dashboard-box .dashboard-box__content .pending-invoices-table tr td:nth-child(1) {
      font-weight: normal;
      width: 50%; }
    .dashboard-box .dashboard-box__content .pending-invoices-table tr td:nth-child(2) {
      text-align: center;
      width: 20%; }
    .dashboard-box .dashboard-box__content .pending-invoices-table tr td:nth-child(3) {
      font-weight: normal;
      text-align: right;
      width: 20%; }
    .dashboard-box .dashboard-box__content .dashboard-box__buttons {
      position: absolute;
      bottom: 15px;
      left: 32%; }
      @media screen and (max-width: 1049px) {
        .dashboard-box .dashboard-box__content .dashboard-box__buttons {
          left: 26%; } }
      @media screen and (max-width: 899px) {
        .dashboard-box .dashboard-box__content .dashboard-box__buttons {
          bottom: auto;
          position: static;
          margin-top: 20px;
          right: auto;
          float: right;
          width: 100%; } }
      .dashboard-box .dashboard-box__content .dashboard-box__buttons .acc-button {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        min-width: 170px;
        padding: 10px 0;
        text-transform: uppercase; }

.auction-bid-holder .dashboard-box__no-content-text {
  padding-bottom: 15px; }

.auction-bid-holder .dashboard-box__buttons {
  padding-top: 30px;
  text-align: left; }
  .auction-bid-holder .dashboard-box__buttons a {
    margin-bottom: 20px;
    min-width: 175px;
    padding: 5px; }

.auction-bid-holder .bidded-auctions__content p {
  color: #4D4D4D;
  font-size: 14px;
  font-weight: lighter;
  margin-bottom: 5px;
  text-align: left; }

.auction-bid-holder .bidded-auctions__content .details {
  font-weight: 500;
  margin: 10px 0 15px 0;
  text-align: left; }

.auction-bid-holder .bidded-auctions__content .my-details-table, .auction-bid-holder .bidded-auctions__content .my-current-bids-table, .auction-bid-holder .bidded-auctions__content .my-wishlist-table, .auction-bid-holder .bidded-auctions__content .pending-invoices-table {
  padding-top: 5px; }

.auction-bid-holder .bidded-auctions__content .my-details-table p {
  line-height: 1; }

@media screen and (max-width: 599px) {
  .auction-bid-holder .bidded-auctions__content .my-wishlist-table p:last-child {
    width: 25%; } }

.auction-bid-holder .bidded-auctions__content .pending-invoices-table .overdue {
  text-align: left; }
  .auction-bid-holder .bidded-auctions__content .pending-invoices-table .overdue p {
    display: inline-block;
    text-align: center;
    width: 32%; }
    .auction-bid-holder .bidded-auctions__content .pending-invoices-table .overdue p:first-child {
      text-align: left; }
    .auction-bid-holder .bidded-auctions__content .pending-invoices-table .overdue p:last-child {
      color: #c81618;
      float: right;
      text-align: left;
      width: 19%; }

.auction-bid-holder .bidded-auctions__content .bidding-wrapper {
  text-align: left; }
  .auction-bid-holder .bidded-auctions__content .bidding-wrapper p {
    display: inline-block;
    margin-bottom: 5px; }
    .auction-bid-holder .bidded-auctions__content .bidding-wrapper p:first-child {
      width: 20%; }
    .auction-bid-holder .bidded-auctions__content .bidding-wrapper p:last-child {
      color: #c81618;
      float: right;
      text-align: left;
      width: 18%; }

.mydashboard .first-dashboard {
  border-top: 1px solid #cccccc; }

/* ====== EMAIL PREFERENCES ====== */
/* ======
EMAIL PREFERENCES
	- GENERAL
====== */
/*================================================================================
$ EMAIL PREFERENCES
================================================================================*/
.email-subs-holder {
  padding: 10px 30px 10px 0;
  zoom: 1; }
  .email-subs-holder:before, .email-subs-holder:after {
    content: "";
    display: table; }
  .email-subs-holder:after {
    clear: both; }
  @media screen and (max-width: 899px) {
    .email-subs-holder {
      padding: 10px; } }
  @media screen and (max-width: 599px) {
    .email-subs-holder {
      padding: 10px 0; } }
  .email-subs-holder .email-subs__title-text {
    text-align: center;
    float: left;
    width: 100%; }
    .email-subs-holder .email-subs__title-text > h5 {
      color: #c81618;
      font-size: 21px; }
    .email-subs-holder .email-subs__title-text > p {
      font-size: 16px;
      margin-top: 5px; }
  .email-subs-holder .email-subs__options-list {
    float: left;
    width: 100%;
    text-align: center; }
  .email-subs-holder .email-subs__buttons {
    margin-top: 30px;
    text-align: left;
    float: left;
    width: 100%; }
    .email-subs-holder .email-subs__buttons > a {
      text-align: center;
      padding: 5px 25px; }
      @media screen and (max-width: 599px) {
        .email-subs-holder .email-subs__buttons > a {
          width: 100%; } }

.email-subs__title-text {
  margin-bottom: 20px; }

.email-subs__options-list {
  margin-top: 0; }
  .email-subs__options-list .email-preference-item {
    float: none;
    margin: 0 auto 20px;
    max-width: 250px;
    padding-left: 20px;
    text-align: left;
    width: 100%; }
    @media screen and (max-width: 599px) {
      .email-subs__options-list .email-preference-item {
        width: 100%; } }
    .email-subs__options-list .email-preference-item:first-child {
      margin-top: 0; }
  .email-subs__options-list .email-update-item {
    margin-top: 10px;
    float: left;
    width: 100%; }
    .email-subs__options-list .email-update-item .pref-name {
      font-size: 16px; }
      @media screen and (max-width: 599px) {
        .email-subs__options-list .email-update-item .pref-name {
          width: 85%; } }
  .email-subs__options-list input {
    cursor: pointer;
    display: inline-block;
    float: left;
    margin: 4px 10px;
    vertical-align: middle;
    width: auto; }
  @media screen and (max-width: 599px) {
    .email-subs__options-list .pref-title {
      padding-left: 10px;
      width: 88%; } }
  .email-subs__options-list .pref-title, .email-subs__options-list .pref-title > span {
    display: inline-block;
    font-size: 15px;
    vertical-align: middle; }
  .email-subs__options-list .pref-img {
    margin-right: 20px; }
    @media screen and (max-width: 599px) {
      .email-subs__options-list .pref-img {
        margin-right: 0;
        width: 20%; } }
    .email-subs__options-list .pref-img > img {
      display: block;
      height: 100%;
      max-height: 50px;
      max-width: 50px;
      width: 100%; }
  @media screen and (max-width: 599px) {
    .email-subs__options-list .pref-name {
      padding-left: 10px;
      width: 77%; } }

.view-emailsubscriptions .email-subs__buttons {
  text-align: center; }
  @media screen and (max-width: 599px) {
    .view-emailsubscriptions .email-subs__buttons > .button {
      width: 100%; } }

/*================================================================================
$ UPDATED EMAIL PREFS
================================================================================*/
.email-pref-form {
  max-width: 600px;
  margin: 0 auto; }
  .email-pref-form h1 {
    text-align: center;
    font-weight: 300; }
  .email-pref-form input[type="checkbox"] {
    width: 10%;
    float: left;
    margin-right: 20px; }
  .email-pref-form #container_EMAIL {
    margin-bottom: 20px;
    max-width: none;
    text-align: center;
    width: 100%; }
    .email-pref-form #container_EMAIL input {
      max-width: 300px; }
  .email-pref-form > div {
    max-width: 150px;
    margin: 0 auto;
    padding: 5px 0; }
  .email-pref-form .paragraph {
    max-width: none;
    text-align: center; }
  .email-pref-form .recieve-text {
    margin-bottom: 20px; }
  .email-pref-form .submit-btn {
    max-width: 175px;
    margin-top: 20px; }

/*================================================================================
$ ACCOUNT EMAIL PREFS
================================================================================*/
.email-subs-holder .email-subs__options-list {
  text-align: center;
  float: left;
  width: 100%; }
  .email-subs-holder .email-subs__options-list .cbft_multicheckbox {
    margin: 0 auto;
    padding-bottom: 5px;
    text-align: left;
    width: 100%;
    float: left; }
    .email-subs-holder .email-subs__options-list .cbft_multicheckbox .control-label {
      float: left;
      width: 85%; }
    .email-subs-holder .email-subs__options-list .cbft_multicheckbox input {
      float: left; }
    .email-subs-holder .email-subs__options-list .cbft_multicheckbox .cb_field.col-sm-9 {
      float: left;
      margin-left: 5%;
      width: 38%; }
      @media screen and (max-width: 599px) {
        .email-subs-holder .email-subs__options-list .cbft_multicheckbox .cb_field.col-sm-9 {
          float: left;
          width: 100%; } }
    .email-subs-holder .email-subs__options-list .cbft_multicheckbox .uncheck-all {
      float: left;
      width: 100%; }
  .email-subs-holder .email-subs__options-list .cbft_checkbox {
    margin: 0 auto;
    padding-bottom: 5px;
    text-align: left;
    width: 100%;
    float: left; }
    .email-subs-holder .email-subs__options-list .cbft_checkbox input {
      float: left; }
    .email-subs-holder .email-subs__options-list .cbft_checkbox .cb_field.col-sm-9 {
      float: left;
      margin-left: 0;
      clear: left; }

.email-subs-holder .email-subs-holder .email-subs__buttons > a {
  float: left !important; }

/*================================================================================
$ EMAIL PREFS
================================================================================*/
/*================================================================================
$ EMAIL QUICK SIGNUP
================================================================================*/
iframe.wrapper.email-quick-signup .cb_field.col-sm-9 {
  float: left;
  width: auto; }

iframe.wrapper.email-quick-signup .fieldLabel {
  width: 20%;
  float: left; }

/* ====== INVOICES ====== */
/* ======
INVOICES
	- GENERAL
	- BUTTONS
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.com_myinvoice h1 {
  padding-bottom: 0 !important; }

.invoices__list-holder {
  float: left;
  width: 100%; }
  .invoices__list-holder .invoices__list-item {
    border-top: 1px solid #eeeeee;
    padding: 20px 0;
    width: 100%; }
    .invoices__list-holder .invoices__list-item:last-child {
      border-bottom: 1px solid #eeeeee; }
    @media screen and (max-width: 999px) {
      .invoices__list-holder .invoices__list-item {
        padding: 10px;
        width: 100%; } }
    .invoices__list-holder .invoices__list-item .invoices__list-item__left, .invoices__list-holder .invoices__list-item .invoices__list-item__right {
      float: left;
      width: 50%; }
      @media screen and (max-width: 449px) {
        .invoices__list-holder .invoices__list-item .invoices__list-item__left, .invoices__list-holder .invoices__list-item .invoices__list-item__right {
          width: 100%; } }
    .invoices__list-holder .invoices__list-item .invoices__list-item__left {
      text-align: left; }
      .invoices__list-holder .invoices__list-item .invoices__list-item__left h5 {
        display: inline-block;
        font-size: 13px;
        font-weight: 200;
        margin-bottom: 5px; }
    .invoices__list-holder .invoices__list-item .invoices__list-item__right {
      text-align: right; }
      .invoices__list-holder .invoices__list-item .invoices__list-item__right input#token_container-button {
        margin-bottom: 10px;
        background-color: #ffffff;
        color: #c81618;
        border: 2px solid #c81618;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .invoices__list-holder .invoices__list-item .invoices__list-item__right input#token_container-button:hover {
          color: #ffffff;
          background-color: #c81618; }
    .invoices__list-holder .invoices__list-item h5 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 18px;
      font-weight: lighter; }
      @media screen and (max-width: 599px) {
        .invoices__list-holder .invoices__list-item h5 {
          font-size: 12px; } }

/*================================================================================
$ BUTTONS
================================================================================*/
/*================================================================================
$ TEXT
================================================================================*/
.invoices__top-text {
  padding: 20px 0;
  text-align: center;
  width: 100%; }
  @media screen and (max-width: 899px) {
    .invoices__top-text {
      padding: 10px; } }

.invoices__top-text__title {
  float: left;
  text-align: left;
  width: 100%; }
  .invoices__top-text__title h4 {
    display: inline-block;
    margin-right: 10px; }
  .invoices__top-text__title h5 {
    display: inline-block;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: 200;
    margin-bottom: 10px; }
  .invoices__top-text__title img {
    display: inline-block;
    vertical-align: middle; }

.invoices__top-text__content {
  float: left;
  margin: 15px 0 0 0;
  max-width: 400px;
  text-align: left;
  width: 60%; }
  @media screen and (max-width: 479px) {
    .invoices__top-text__content {
      width: 100%; } }
  .invoices__top-text__content p {
    font-size: 13px; }

.invoices__top-text__button {
  float: right;
  margin-top: 15px;
  padding-left: 10px;
  text-align: right;
  width: 40%; }
  @media screen and (max-width: 479px) {
    .invoices__top-text__button {
      padding-left: 0;
      width: 100%; } }

.invoice-total-box p {
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 5px; }

.invoice-total-box .invoice-total__title {
  color: #c81618;
  margin-right: 10px; }

.invoice-total-box .invoice-total__value {
  color: #c81618; }

.invoice-buttons-box {
  float: right;
  max-width: 175px; }
  .invoice-buttons-box a {
    margin-bottom: 10px; }

@media screen and (max-width: 599px) {
  .invoices__list-item__right .pay-online-btn, .invoices__list-item__right .view-invoice-btn {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 5px;
    width: 100%; } }

/* ====== LOGIN PAGES ====== */
/* ======
LOGIN PAGES
	- LOGIN
	- LOGIN POPUP
	- LOGIN CATALOGUE
====== */
/*================================================================================
$ LOGIN PAGE
================================================================================*/
#login-form {
  max-width: 500px;
  margin: 10% auto 8% auto !important; }
  #login-form #form-login-username, #login-form #form-login-password {
    padding-bottom: 15px; }
    #login-form #form-login-username .add-on, #login-form #form-login-password .add-on {
      display: block;
      margin-bottom: 5px; }
  #login-form #form-login-remember {
    margin-bottom: 6px; }
  #login-form fieldset {
    padding: 30px;
    border: 2px solid #C0C0C0; }
  #login-form h2 {
    text-align: center; }
  #login-form .button {
    float: right;
    margin-bottom: 0;
    padding: 10px 30px; }
  #login-form .mod_login.light-button {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 0; }
  #login-form .forgot_password {
    width: 100%;
    text-align: right;
    display: inline-block; }

#TB_window {
  top: 50% !important; }

/*================================================================================
$ LOGIN POPUP
================================================================================*/
#login-box {
  background-color: #d7d7d7;
  width: 100%; }
  #login-box .login-heading {
    display: inline-block !important;
    padding: 50px 80px 0 80px;
    text-align: left; }
    @media screen and (max-width: 599px) {
      #login-box .login-heading {
        padding: 50px 80px 0 30px; } }
    #login-box .login-heading img {
      margin-right: 5px;
      position: relative;
      top: 2px;
      width: 20px; }
  #login-box .remember-hold {
    width: 40%;
    display: inline; }
    #login-box .remember-hold .remember {
      display: inline; }
  #login-box .button {
    float: right;
    padding: 6px 27px;
    margin-bottom: 0; }
  #login-box .username-hold {
    padding: 0 80px; }
    @media screen and (max-width: 599px) {
      #login-box .username-hold {
        padding: 0 30px; } }
  #login-box .password-hold {
    padding: 0 80px; }
    @media screen and (max-width: 599px) {
      #login-box .password-hold {
        padding: 0 30px; } }
  #login-box .remember-hold {
    padding: 0 80px; }
    @media screen and (max-width: 599px) {
      #login-box .remember-hold {
        padding: 0 30px; } }
    #login-box .remember-hold p {
      font-weight: 500; }
  #login-box input[type="submit"] {
    margin-right: 80px;
    min-width: 0;
    padding: 6px 32px;
    width: 127px; }
    @media screen and (max-width: 599px) {
      #login-box input[type="submit"] {
        margin-right: 30px;
        width: 120px; } }
  #login-box .forgot-password {
    padding: 0 80px 30px 80px; }
    @media screen and (max-width: 599px) {
      #login-box .forgot-password {
        padding: 0 30px 30px; } }
  #login-box .register-hold {
    background-color: #3c3c3b;
    border-bottom: 3px solid #c81618;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px 0 10px 0; }
    #login-box .register-hold p {
      color: #ffffff; }
    #login-box .register-hold a {
      color: #ffffff !important;
      font-weight: 300;
      padding: 6px 27px; }
  #login-box .forgot-password {
    display: inline-block;
    float: right;
    width: 100%; }
    #login-box .forgot-password a {
      float: right;
      font-size: 15px;
      font-weight: 500;
      padding: 10px 0 0 0;
      text-decoration: none; }

/*================================================================================
$ LOGIN CATALOGUE
================================================================================*/
#box p {
  vertical-align: middle;
  width: 30%;
  display: inline-block;
  font-size: 18px; }

#box div#message p {
  font-size: 12px;
  width: 100%; }

#box input {
  display: inline-block;
  font-size: 15px;
  padding: 0.5%;
  vertical-align: middle; }

#box .username-hold {
  margin-bottom: 3%; }

#box .remember-hold .remember {
  margin: 0; }

#box .remember-hold .remember-input {
  width: auto; }

#box .register-hold {
  display: inline-block;
  margin-left: 3%;
  margin-top: 2%; }
  #box .register-hold a {
    font-size: 12px; }

/*================================================================================
$ LOGIN FIX
================================================================================*/
.page .login {
  margin: 40px auto 0;
  max-width: 960px; }
  .page .login fieldset {
    border: none !important; }
  .page .login .control-group {
    padding-bottom: 10px; }

.page .nav-stacked {
  margin: 0 auto;
  max-width: 960px; }

/* ====== LOGIN OUT ====== */
/* ======
LOGIN OUT
	- LOGIN OUT
====== */
/*================================================================================
$ LOGIN OUT
================================================================================*/
#mod_login_logoutform > span {
  font-size: 16px; }

#mod_login_logoutform > div {
  text-align: left !important; }
  #mod_login_logoutform > div input {
    background: none repeat scroll 0 0 !important;
    border: 1px solid #c81618 !important;
    border-radius: 0 !important;
    color: #c81618 !important;
    font-size: 13px !important;
    height: auto !important;
    line-height: inherit !important;
    padding: 6px 20px 5px !important;
    width: auto !important;
    text-decoration: none !important;
    text-transform: uppercase !important; }

/* ====== RESET PASSWORD ====== */
/* ======
RESET PASSWORD
	- General
====== */
/*================================================================================
$ LOST PASSWORD
================================================================================*/
.reset .reset-password-wrapper, .reset .reset-confirm {
  margin: 50px auto 0 auto;
  max-width: 600px; }
  .reset .reset-password-wrapper h1, .reset .reset-confirm h1 {
    color: #666666; }
  .reset .reset-password-wrapper form fieldset, .reset .reset-confirm form fieldset {
    border: none !important; }
    .reset .reset-password-wrapper form fieldset .control-label, .reset .reset-confirm form fieldset .control-label {
      float: left;
      padding-top: 5px;
      min-width: 130px; }
      @media screen and (max-width: 599px) {
        .reset .reset-password-wrapper form fieldset .control-label, .reset .reset-confirm form fieldset .control-label {
          clear: both; } }
    .reset .reset-password-wrapper form fieldset .controls, .reset .reset-confirm form fieldset .controls {
      float: left;
      margin-left: 20px;
      width: 400px; }
      @media screen and (max-width: 599px) {
        .reset .reset-password-wrapper form fieldset .controls, .reset .reset-confirm form fieldset .controls {
          clear: both; } }
    .reset .reset-password-wrapper form fieldset .control-group, .reset .reset-confirm form fieldset .control-group {
      float: left;
      width: 100%; }
      .reset .reset-password-wrapper form fieldset .control-group:nth-child(3), .reset .reset-confirm form fieldset .control-group:nth-child(3) {
        display: none; }

/* ====== MAKE A PAYMENT ====== */
/* ======
MAKE A PAYMENT
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.makepayment .makepayment-page-holder {
  max-width: 980px;
  padding: 40px 10px; }

.makepayment p {
  margin-top: 10px; }

.makepayment input {
  margin: 5px 0; }

.page div.myinvoice-container div.payment-heading span.mybid_heding {
  border-bottom: 0 none;
  color: #c81618;
  display: inherit;
  font-size: 26px;
  line-height: inherit;
  margin-bottom: 0;
  padding-bottom: 30px;
  width: 100%; }

.page div.myinvoice-container .invoice_step1 > h3 {
  background-image: none;
  color: #c81618;
  line-height: inherit;
  padding: 0;
  font-size: 18px;
  font-weight: 300px; }

.page div.myinvoice-container .myinvoice-text {
  padding: 0 0 15px; }
  .page div.myinvoice-container .myinvoice-text p {
    margin-bottom: 5px; }
  .page div.myinvoice-container .myinvoice-text.invoice-info-text {
    margin-bottom: 30px; }

.page div.myinvoice-container .myinvoice-form {
  float: left;
  margin-bottom: 30px; }
  .page div.myinvoice-container .myinvoice-form p {
    width: auto;
    clear: inherit; }
    .page div.myinvoice-container .myinvoice-form p input {
      border: 1px solid #c81618;
      border-radius: 0;
      box-shadow: none;
      clear: both;
      float: left;
      margin-bottom: 0;
      margin-left: 50px;
      margin-top: -4px;
      padding: 5px;
      width: 250px; }
  .page div.myinvoice-container .myinvoice-form.payment-amount {
    margin-bottom: 40px; }
    .page div.myinvoice-container .myinvoice-form.payment-amount input {
      background-image: url("../images/pound-icon.png");
      background-position: left center;
      background-repeat: no-repeat;
      padding: 5px 5px 5px 12px; }

.page #pageContainer {
  width: 100%; }
  .page #pageContainer #content {
    border-radius: 0;
    box-shadow: none;
    float: none;
    padding: 0;
    text-align: left;
    width: 100%; }
    .page #pageContainer #content h3 {
      background-image: none;
      padding-left: 0; }
    .page #pageContainer #content .formTable .subheader {
      background: url("/sagepay/images/secured_sagepay.jpg") no-repeat scroll right center;
      border-bottom: medium none;
      clear: none;
      color: inherit;
      display: block;
      float: none;
      font-size: 18px;
      font-weight: 300;
      margin-bottom: 15px;
      padding: 20px 0;
      text-align: left;
      width: 100%; }
    .page #pageContainer #content .formTable .fieldData {
      font-size: 14px; }
      .page #pageContainer #content .formTable .fieldData input {
        border: 1px solid #4D4D4D;
        border-radius: 0;
        box-shadow: none;
        padding: 1%;
        font-size: 14px;
        max-width: 250px;
        width: 100% !important; }
        .page #pageContainer #content .formTable .fieldData input[name="CustomerEMail"] {
          width: 100%; }
        .page #pageContainer #content .formTable .fieldData input[name="BillingState"] {
          width: 40px !important; }
      .page #pageContainer #content .formTable .fieldData span {
        width: auto;
        margin: 0; }
      .page #pageContainer #content .formTable .fieldData > font {
        color: #4D4D4D;
        display: inline-block;
        font-size: 14px;
        margin-top: 1%;
        width: 100%; }
    .page #pageContainer #content .formTable td {
      vertical-align: top;
      line-height: 1; }
      .page #pageContainer #content .formTable td.fieldLabel {
        text-align: left;
        font-size: 16px; }
        .page #pageContainer #content .formTable td.fieldLabel span {
          margin: 0;
          width: auto; }

.myaccount-right.full-width {
  width: 100%; }
  .myaccount-right.full-width .myinvoice-form {
    width: 100%; }

.account__content__main .formTable .fieldLabel {
  display: inline-block;
  font-size: 15px;
  width: 150px; }

.account__content__main .formTable .fieldData > input, .account__content__main .formTable .fieldData > select {
  font-size: 15px;
  max-width: 100% !important; }
  @media screen and (max-width: 579px) {
    .account__content__main .formTable .fieldData > input, .account__content__main .formTable .fieldData > select {
      width: 100% !important; } }

.account__content__main .formFooter {
  margin-bottom: 30px !important; }

/* ====== REGISTRATION ====== */
/* ======
REGISTRATION
	- General
	- Heading
	- EMAIL SECTION
	- PASSWORD SECTION
	- Messages
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.registers select {
  background-color: transparent !important;
  border-radius: 0;
  min-height: 32px; }

.registers .cbSnglCtrlLbl {
  margin: 0 !important; }

.registers #cbtf_11 {
  margin-bottom: 0; }

.registers #cbtf_23 {
  margin-top: 0; }

.registers h3, .registers .text-center > a {
  display: none; }

.registers .cb_form .cbFieldsContentsTab {
  margin: 35px auto;
  max-width: 960px;
  width: 100%; }
  @media screen and (max-width: 1009px) {
    .registers .cb_form .cbFieldsContentsTab {
      padding: 0 25px; } }
  @media screen and (max-width: 599px) {
    .registers .cb_form .cbFieldsContentsTab {
      padding: 0 10px; } }

.registers .cb_form .cbFieldIcons, .registers .cb_form #cblabcb_passwordtext, .registers .cb_form #cblabcb_emailpreftext, .registers .cb_form #cbfv_113 {
  display: none; }

.registers .cb_form h1 {
  text-align: left; }

.registers .cb_form .h1 {
  color: #666666;
  text-align: left; }

.registers .cb_form p {
  margin-bottom: 20px;
  text-align: left; }

@media screen and (max-width: 377px) {
  .registers .cb_form .registration_verification_text {
    padding-top: 40px; } }

.registers .cb_form .required.form-control {
  width: 100%; }

.registers .cb_form .col-sm-offset-3.col-sm-9 {
  margin: 0 auto;
  max-width: 960px;
  text-align: center; }

.registers #cbfr_76, .registers #cbfr_62, .registers #cbfr_63 {
  padding-bottom: 0 !important;
  background: none !important; }

.registers .cb_field.col-sm-9.col-sm-offset-3 {
  width: 100% !important; }

.registers #cb_country, .registers #cb_stateprovince {
  max-width: 200px; }

.registers #registrationTable label {
  float: left;
  font-size: 15px;
  width: 20%;
  padding-top: 8px;
  font-weight: 300; }
  @media screen and (max-width: 699px) {
    .registers #registrationTable label {
      font-size: 15px;
      width: 30%; } }
  @media screen and (max-width: 499px) {
    .registers #registrationTable label {
      width: 100%; } }

.registers #registrationTable #cbfv_124 h1 {
  margin: 10px 0; }

.registers #registrationTable #cbfv_124 p {
  margin: 15px 0 20px 0; }

.registers #registrationTable #cbfr_124 {
  width: 70%; }
  @media screen and (max-width: 499px) {
    .registers #registrationTable #cbfr_124 {
      width: 100%; } }

.registers #registrationTable #cbfr_139 .col-sm-9 {
  width: 70%; }

.registers #registrationTable .cb_field.col-sm-9 {
  float: left;
  margin: 0;
  width: 45%; }
  .registers #registrationTable .cb_field.col-sm-9 .text-danger {
    color: #c81618;
    font-weight: normal; }
  @media screen and (max-width: 499px) {
    .registers #registrationTable .cb_field.col-sm-9 {
      width: 100%; } }

.registers #registrationTable .form-group {
  margin-top: 10px; }
  .registers #registrationTable .form-group .cbRegistrationSubmit {
    margin-top: 0;
    float: left; }
    @media screen and (max-width: 959px) {
      .registers #registrationTable .form-group .cbRegistrationSubmit {
        margin-left: 25px; } }
    @media screen and (max-width: 599px) {
      .registers #registrationTable .form-group .cbRegistrationSubmit {
        margin-left: 10px; } }
    @media screen and (max-width: 399px) {
      .registers #registrationTable .form-group .cbRegistrationSubmit {
        margin: 40px 0 0 10px; } }

.registers #registrationTable #cbfr_127.sectiontableentry1.cbft_delimiter.form-group {
  margin-top: 0; }

.registers #cbfv_60 {
  margin-left: 20%;
  width: 45%; }
  @media screen and (max-width: 599px) {
    .registers #cbfv_60 {
      margin-left: 30%; } }
  @media screen and (max-width: 499px) {
    .registers #cbfv_60 {
      margin-left: 0;
      width: 100%; } }

.registers #cbfv_62 {
  float: left;
  margin-left: 20%;
  width: 45%; }

.registers #cbfr_139 label {
  display: none; }

.registers #cbfr_139 .cb_field {
  max-width: 675px;
  padding-top: 20px;
  width: 100%; }
  .registers #cbfr_139 .cb_field p {
    margin-bottom: 0; }

.registers #cbfv_115 .cb_form_line {
  margin-top: 8px; }
  .registers #cbfv_115 .cb_form_line .help-block {
    padding: 10px 0 0 0; }
    .registers #cbfv_115 .cb_form_line .help-block p {
      margin-bottom: 10px; }
  .registers #cbfv_115 .cb_form_line input {
    border: none;
    padding: 10px 0; }

.registers #cbfv_116 .cb_form_line {
  margin-top: 8px; }
  .registers #cbfv_116 .cb_form_line .help-block {
    padding: 10px 0 0 0; }
    .registers #cbfv_116 .cb_form_line .help-block p {
      margin-bottom: 10px; }
  .registers #cbfv_116 .cb_form_line input {
    border: none;
    padding: 10px 0; }

.registers #cblabcb_title::after, .registers #cblabusername::after, .registers #cblabcb_firstname::after, .registers #cblabcb_surname::after, .registers #cblabcb_country::after, .registers #cblabcb_zip::after, .registers #cblabcb_city::after, .registers #cblabcb_telephone::after, .registers #cblabcb_passport::after, .registers #cblabcb_utility::after {
  content: "*";
  color: #c81618;
  font-weight: bold;
  padding: 0 5px; }

.registers #cbfile_upload_cb_passport .help-block, .registers #cbfile_upload_cb_utility .help-block {
  font-size: 13px;
  padding: 10px 0; }

.registers #cbfile_upload_cb_passport div, .registers #cbfile_upload_cb_utility div {
  display: inline-block;
  font-size: 13px;
  width: auto; }

.registers #cbfile_upload_cb_passport input, .registers #cbfile_upload_cb_utility input {
  border: none;
  padding-left: 10px;
  width: auto; }

/*================================================================================
$ HEADING
================================================================================*/
.task-registers .componentheading {
  margin: 20px 0;
  width: 100%;
  text-align: center;
  text-transform: capitalize; }

/*================================================================================
$ EMAIL SECTION
================================================================================*/
#registrationTable .cbSingleCntrl {
  margin: 0 !important; }

#registrationTable #cbtf_26 {
  background: #F0F0F0;
  padding: 30px 0;
  margin: 40px 0;
  text-align: center;
  max-width: 100%; }
  @media screen and (max-width: 959px) {
    #registrationTable #cbtf_26 {
      padding: 30px 25px; } }
  @media screen and (max-width: 599px) {
    #registrationTable #cbtf_26 {
      padding: 30px 10px; } }
  #registrationTable #cbtf_26 label {
    text-transform: none !important; }
  #registrationTable #cbtf_26 #cbfr_127 {
    max-width: 960px;
    margin: 0 auto; }
    #registrationTable #cbtf_26 #cbfr_127 .cb_field.col-sm-9 {
      text-align: left;
      width: 75%; }
  #registrationTable #cbtf_26 .cbft_checkbox, #registrationTable #cbtf_26 .cbft_multicheckbox {
    display: block;
    margin: 0 auto;
    max-width: 960px;
    padding-bottom: 5px;
    position: relative;
    width: auto; }
    #registrationTable #cbtf_26 .cbft_checkbox > div, #registrationTable #cbtf_26 .cbft_multicheckbox > div {
      float: left;
      width: auto; }
    #registrationTable #cbtf_26 .cbft_checkbox label, #registrationTable #cbtf_26 .cbft_multicheckbox label {
      float: right;
      text-align: left;
      width: 97%; }
      @media screen and (max-width: 599px) {
        #registrationTable #cbtf_26 .cbft_checkbox label, #registrationTable #cbtf_26 .cbft_multicheckbox label {
          width: 90%; } }
  #registrationTable #cbtf_26 #cbfr_130 input, #registrationTable #cbtf_26 #cbfr_131 input, #registrationTable #cbtf_26 #cbfr_132 input {
    margin-right: 12px;
    margin-top: 10px;
    float: left; }
  #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 label input, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 label input, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 label input {
    margin-top: 3px; }
  #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_131 span label:first-child, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_131 span label:first-child, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_131 span label:first-child {
    width: 45%;
    float: left;
    margin-left: 5%; }
    @media screen and (max-width: 599px) {
      #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_131 span label:first-child, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_131 span label:first-child, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_130 span label:first-child, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_131 span label:first-child {
        width: 100%; } }
  #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_131 .uncheck-all, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_131 .uncheck-all, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_130 .uncheck-all, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_131 .uncheck-all {
    float: left;
    padding-top: 5px;
    text-align: left;
    width: 100%; }
  #registrationTable #cbtf_26 #cbfr_130 .cb_field.col-sm-9 #cbfv_132 .uncheck-all, #registrationTable #cbtf_26 #cbfr_131 .cb_field.col-sm-9 #cbfv_132 .uncheck-all, #registrationTable #cbtf_26 #cbfr_132 .cb_field.col-sm-9 #cbfv_132 .uncheck-all {
    float: left;
    padding-top: 5px;
    text-align: left;
    width: 100%; }

/*================================================================================
$ PASSWORD SECTION
================================================================================*/
#registrationTable #cbtf_24 #cbfr_112 .cb_field.col-sm-9 {
  text-align: center;
  width: 70%; }
  @media screen and (max-width: 499px) {
    #registrationTable #cbtf_24 #cbfr_112 .cb_field.col-sm-9 {
      width: 100%; } }

#registrationTable #cbtf_24 #cbfr_44 {
  margin-top: 10px 0 0 0;
  position: relative; }
  @media screen and (max-width: 499px) {
    #registrationTable #cbtf_24 #cbfr_44 {
      top: 20px; } }
  @media screen and (max-width: 399px) {
    #registrationTable #cbtf_24 #cbfr_44 {
      top: 55px; } }
  #registrationTable #cbtf_24 #cbfr_44 .control-label {
    position: absolute;
    left: 30px;
    top: 5px;
    width: auto; }
  #registrationTable #cbtf_24 #cbfr_44 label {
    float: left;
    text-align: left; }
    @media screen and (max-width: 411px) {
      #registrationTable #cbtf_24 #cbfr_44 label {
        padding-bottom: 30px; } }
  #registrationTable #cbtf_24 #cbfr_44 .cb_field {
    margin-top: 5px;
    width: auto; }

@-moz-document url-prefix() {
  #registrationTable #cbtf_24 #cbfr_44 .cb_field {
    margin-top: 2px; } }
  #registrationTable #cbtf_24 #cbfr_44 #acceptedterms-error {
    float: left;
    width: 100%; }

#registrationTable #cbtf_24 #cbfr_137 {
  position: relative; }
  #registrationTable #cbtf_24 #cbfr_137 .control-label {
    max-width: 600px;
    position: absolute;
    left: 30px;
    top: 5px;
    width: auto; }
    @media screen and (max-width: 399px) {
      #registrationTable #cbtf_24 #cbfr_137 .control-label {
        max-width: 250px; } }
  #registrationTable #cbtf_24 #cbfr_137 label {
    float: left;
    text-align: left; }
  #registrationTable #cbtf_24 #cbfr_137 .cb_field {
    margin-top: 5px;
    width: auto; }

@-moz-document url-prefix() {
  #registrationTable #cbtf_24 #cbfr_137 .cb_field {
    margin-top: 2px; } }

/*================================================================================
$ Messages
================================================================================*/
body.create-an-account .main-cms-content-holder .error {
  font-size: 20px;
  font-weight: normal;
  padding: 3%;
  text-align: center; }

body.create-an-account .main-cms-content-holder .register-completed-title {
  font-size: 20px;
  font-weight: normal;
  padding: 3% 3% 2%;
  text-align: center; }

body.create-an-account .main-cms-content-holder .register-completed-text {
  text-align: center; }

.saveregisters .cb_template_default {
  margin: 0 auto;
  max-width: 960px; }

/* ====== REGISTERED INTERESTS ====== */
/* ======
REGISTERED INTERESTS
	- GENERAL
====== */
/*================================================================================
$ REGISTERED INTERESTS
================================================================================*/
.view-lot_alert .page-right-col, .view-lotalert_confirm .page-right-col, .view-lotalert_edit .page-right-col {
  padding-left: 20px !important; }
  @media screen and (max-width: 899px) {
    .view-lot_alert .page-right-col, .view-lotalert_confirm .page-right-col, .view-lotalert_edit .page-right-col {
      padding-left: 0 !important; } }

.personalised-lot-alerts {
  max-width: 650px; }
  .personalised-lot-alerts h3, .personalised-lot-alerts p {
    font-size: 15px !important; }

.registered__interests__content {
  max-width: 800px;
  margin: 0 auto 25px; }
  .registered__interests__content h3 {
    font-size: 18px;
    text-align: left;
    margin: 15px 0; }
  .registered__interests__content p {
    text-align: left; }
  .registered__interests__content .interest-edit-lots_holder {
    margin: 25px 0; }
    .registered__interests__content .interest-edit-lots_holder a {
      margin-bottom: 0; }
  .registered__interests__content .submit-results {
    float: left;
    margin-top: 15px;
    width: 100%; }
    .registered__interests__content .submit-results .input .interest-input {
      float: left;
      line-height: 22px;
      max-width: 350px;
      width: 100%;
      margin-right: 5px; }
    .registered__interests__content .submit-results .input .primary-btn, .registered__interests__content .submit-results .input .pay-online-btn, .registered__interests__content .submit-results .input .proceed-invoice-btn, .registered__interests__content .submit-results .input .place-bid-btn, .registered__interests__content .submit-results .input .login-btn, .registered__interests__content .submit-results .input .change-bid-btn, .registered__interests__content .submit-results .input .added-to-wishlist, .registered__interests__content .submit-results .input .hammer-login-btn {
      float: right;
      position: absolute;
      padding: 8px; }
    .registered__interests__content .submit-results .input #update {
      margin-top: 0;
      padding-top: 4px;
      padding-bottom: 6px; }
      @media screen and (max-width: 534px) {
        .registered__interests__content .submit-results .input #update {
          margin-top: 10px; } }
    .registered__interests__content .submit-results .button {
      min-width: 200px; }
  .registered__interests__content .keyword-phrases {
    float: left;
    width: 100%; }
    .registered__interests__content .keyword-phrases textarea {
      font-size: 13px;
      float: left;
      max-width: 550px;
      min-height: 200px;
      width: 100%; }
  .registered__interests__content #update {
    margin-top: 10px; }
  .registered__interests__content .results-submit-btn-holder {
    text-align: center; }
  .registered__interests__content .current-interest h3 {
    margin-bottom: 0 !important; }
  .registered__interests__content .current-interest .current-interest-sub-title {
    font-size: 12px !important;
    padding-top: 5px; }
  .registered__interests__content .current-interest-list {
    font-size: 13px; }
    .registered__interests__content .current-interest-list table {
      width: 40%; }
      .registered__interests__content .current-interest-list table tr td {
        padding: 0 0 5px 0; }
        .registered__interests__content .current-interest-list table tr td:last-child {
          text-align: right; }
  .registered__interests__content #remove-keywords-js {
    color: #c81618;
    float: left; }

/* ====== RESET PASSWORD ====== */
/* ======
RESET PASSWORD
	- RESET POPUP
	- LOGIN PAGE
	- RESET PASSWORD JOURNEY
====== */
/*================================================================================
$ RESET POPUP
================================================================================*/
#user-registration .control-label {
  text-align: left; }

.lostpassword .cbLostPassForm {
  margin: 25px auto;
  max-width: 600px; }
  .lostpassword .cbLostPassForm h3 {
    margin-bottom: 10px; }

.lostpassword .cb_field.col-sm-9 {
  margin: 10px 0; }

.lostpassword .content-spacer {
  display: none; }

.reset-confirm, .reset-complete {
  max-width: 960px;
  margin: 40px auto 0; }
  .reset-confirm fieldset, .reset-complete fieldset {
    border: none !important; }
  .reset-confirm .control-group, .reset-complete .control-group {
    padding-bottom: 10px; }

/*================================================================================
$ RESET PASSWORD JOURNEY
================================================================================*/
.com_users .remind {
  max-width: 600px;
  margin: 50px auto 0 auto; }
  .com_users .remind #user-registration {
    float: left;
    width: 100%; }
    .com_users .remind #user-registration fieldset {
      border: none; }

/* ====== WISHLIST ====== */
/* ======
WISHLIST
	- GENERAL
====== */
.mywishlist .filters-3 {
  display: none; }

/*================================================================================
$ WISHLIST
================================================================================*/
.auction-wishlist-holder .bidded-auctions__title {
  border-top: 1px solid #cccccc;
  margin: 30px 0 20px 0; }

@media screen and (max-width: 699px) {
  .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__left {
    float: none;
    margin: 0 auto;
    max-width: 300px;
    padding: 0;
    width: 100%; } }

.auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right {
  width: 40%; }
  @media screen and (max-width: 699px) {
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right {
      width: 100%;
      margin-left: 0; } }
  .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right p {
    text-align: left; }
    @media screen and (max-width: 699px) {
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right p {
        text-align: center; } }
  .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price {
    font-weight: normal;
    margin: 5px 0 0 0;
    zoom: 1;
    font-size: 15px;
    font-size: 1rem; }
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:before, .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:after {
      content: "";
      display: table; }
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price:after {
      clear: both; }
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__title {
      color: #c81618;
      float: left;
      width: 40%; }
      @media screen and (max-width: 699px) {
        .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__title {
          width: 50%;
          float: none;
          margin-right: 10px; } }
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__value {
      color: #c81618;
      float: left;
      width: 60%; }
      @media screen and (max-width: 699px) {
        .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .bidded-auctions__hammer-price .hammer-price__value {
          width: 50%;
          float: none; } }
  .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount {
    margin-top: 5px;
    max-width: 400px;
    position: relative; }
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p {
      color: #c81618;
      cursor: pointer;
      margin-bottom: 0;
      padding: 0;
      zoom: 1;
      font-size: 15px;
      font-size: 1rem; }
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p:before, .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p:after {
        content: "";
        display: table; }
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p:after {
        clear: both; }
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p > span {
        float: left;
        width: 50%; }
        @media screen and (max-width: 549px) {
          .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p > span {
            width: 60%; } }
        .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p > span .small {
          color: #4D4D4D;
          font-size: 9px;
          font-size: 0.6rem; }
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p .bid-total-num {
        font-weight: normal;
        text-align: left; }
        @media screen and (max-width: 549px) {
          .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__content__right .wishlit__bid__amount p .bid-total-num {
            width: 40%; } }

.auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons {
  float: right;
  max-width: 150px;
  width: 28%; }
  @media screen and (max-width: 699px) {
    .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons {
      padding-top: 20px;
      width: 100%;
      max-width: none; } }
  .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons a {
    display: block;
    float: right;
    font-size: 15px !important;
    margin: 0 0 5px 0;
    max-width: 150px;
    min-width: 0 !important;
    width: 100%; }
    @media screen and (max-width: 699px) {
      .auction-wishlist-holder .bidded-auctions .bidded-auctions__content .bidded-auctions__buttons a {
        float: none;
        margin: 10px auto;
        max-width: 175px; } }

.auction-wishlist-holder .empty-wishlist-text {
  margin-top: 30px;
  padding: 0 20px; }

/*================================================================================
$ AUCTION
================================================================================*/
/* ====== ARCHIVE ====== */
/* ======
ARCHIVE
	- General
	- Filters
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.past-sales-filter {
  border-bottom: 1px solid #cccccc !important;
  border-top: none !important;
  padding: 10px 0 10px 0 !important; }
  @media screen and (max-width: 959px) {
    .past-sales-filter > .full-width__filters-holder {
      padding: 0 10px; } }

.past-sales-gs .ul-list {
  margin-top: 0 !important; }

.catalogue-calendar {
  padding-top: 1px solid #cccccc; }

@media screen and (max-width: 449px) {
  body.archives .full-width__filters-holder {
    display: block; } }

body.archives .myaccount-wrapper {
  background: none;
  float: none;
  margin: 0 auto;
  width: 100%; }
  body.archives .myaccount-wrapper > h1 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 31px;
    font-weight: 100;
    color: #4D4D4D;
    margin-bottom: 40px;
    margin-top: 40px; }
    @media screen and (max-width: 599px) {
      body.archives .myaccount-wrapper > h1 {
        font-size: 21px; } }

body.archives .catalogue {
  margin-top: 30px; }

body.archives .myaccount-right {
  margin-top: 20px;
  padding: 0;
  width: 100%; }
  body.archives .myaccount-right > h1 {
    display: none; }
  body.archives .myaccount-right .calender_header {
    display: none; }

.ul-list .archive-auction-gs.archive-auction-gs {
  border-bottom: 1px solid #cccccc;
  padding: 30px 0; }

.ul-list .archive-auction-gs .catalogue-view__img {
  float: right;
  text-align: right !important;
  width: 20%; }
  @media screen and (max-width: 749px) {
    .ul-list .archive-auction-gs .catalogue-view__img {
      display: none; } }
  .ul-list .archive-auction-gs .catalogue-view__img img {
    border-bottom: 2px solid #c81618;
    height: 100%; }

.ul-list .archive-auction-gs .archive-view__details__left {
  margin: 0 !important; }

.ul-list .archive-auction-gs .archive__details__right a {
  width: 100%; }

.ul-list .archive-auction-gs .auction-arc__date {
  float: left;
  width: 15%; }
  @media screen and (max-width: 599px) {
    .ul-list .archive-auction-gs .auction-arc__date {
      width: 20%; } }
  .ul-list .archive-auction-gs .auction-arc__date h4 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    margin-bottom: 0; }
  .ul-list .archive-auction-gs .auction-arc__date .auction-month {
    color: #c81618;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2; }
    @media screen and (max-width: 322px) {
      .ul-list .archive-auction-gs .auction-arc__date .auction-month {
        font-size: 15px; } }
  .ul-list .archive-auction-gs .auction-arc__date .auction-day-number {
    color: #c81618;
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    float: left;
    padding-right: 7px; }
  .ul-list .archive-auction-gs .auction-arc__date .auction-year-number {
    color: #c81618;
    margin-top: 10px; }
  .ul-list .archive-auction-gs .auction-arc__date .auction-day-string {
    color: #4D4D4D;
    font-size: 18px;
    line-height: 1.2;
    margin-right: 37px;
    padding-bottom: 5px; }
    @media screen and (max-width: 377px) {
      .ul-list .archive-auction-gs .auction-arc__date .auction-day-string {
        font-size: 14px; } }
  .ul-list .archive-auction-gs .auction-arc__date .auction-location {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2; }

.ul-list .archive-auction-gs .auction-arc__text {
  margin-top: 10px; }

.ul-list .archive-auction-gs .auction-arc__button {
  margin-top: 40px; }
  .ul-list .archive-auction-gs .auction-arc__button a {
    min-width: 200px; }

.ul-list .archive-auction-gs .auction-hammerpdf__button a {
  max-width: 200px;
  min-width: 200px;
  padding: 5px; }

.ul-list .archive-auction-gs .catalogue-view__details.right-col {
  width: 50% !important; }

@media screen and (max-width: 899px) {
  .ul-list .archive-auction-gs .catalogue-view__details {
    width: 50% !important;
    padding: 0 10px; } }

@media screen and (max-width: 599px) {
  .ul-list .archive-auction-gs .catalogue-view__details {
    margin-left: 10%;
    width: 70% !important; } }

.ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left {
  margin-left: 0;
  width: 100%; }
  @media screen and (max-width: 899px) {
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left {
      width: 100%;
      text-align: left; } }
  .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-name {
    line-height: 1.25;
    max-width: 350px; }
    @media screen and (max-width: 599px) {
      .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-name {
        max-width: none; } }
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-name h2 {
      margin-bottom: 0; }
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-name a {
      color: #c81618;
      font-weight: 400;
      margin-bottom: 0; }
  .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-date-center {
    font-weight: 400;
    margin-top: 20px; }
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-date-center p {
      line-height: 1; }
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-date-center .auction-date-strong {
      font-weight: 600;
      margin-bottom: 0; }
  .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__left .auction-date {
    color: #d7d7d7;
    line-height: 1.25; }

.ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__right {
  width: 30%; }
  @media screen and (max-width: 899px) {
    .ul-list .archive-auction-gs .catalogue-view__details .catalogue-view__details__right {
      width: 100%; } }

.ul-list .archive-auction-gs .archive-view__img {
  margin-top: 0 !important;
  float: right !important; }

/*================================================================================
$ FILTERS
================================================================================*/
.full-width__filters-holder .filter-left {
  float: left;
  width: 45%; }
  @media screen and (max-width: 959px) {
    .full-width__filters-holder .filter-left {
      width: auto; } }
  @media screen and (max-width: 449px) {
    .full-width__filters-holder .filter-left {
      width: 60%; } }

.full-width__filters-holder .filter-right {
  float: right;
  width: 55%; }
  @media screen and (max-width: 449px) {
    .full-width__filters-holder .filter-right {
      width: 40%; } }

.full-width__filters-holder .filter-border-bottom {
  float: left;
  margin-right: 1%;
  width: 100%; }
  .full-width__filters-holder .filter-border-bottom .search-wrapper {
    float: left;
    width: 100%; }
    .full-width__filters-holder .filter-border-bottom .search-wrapper p {
      float: left;
      margin: 7px 0 0 0;
      width: 33%; }
    .full-width__filters-holder .filter-border-bottom .search-wrapper input {
      background-color: #e4e4e4;
      background-image: url(/images/red-right-arrow.png);
      background-repeat: no-repeat;
      background-position: 95% center;
      background-size: 10px;
      color: #4D4D4D;
      float: left;
      margin: 5px 0;
      max-height: 25px;
      max-width: 260px;
      padding-left: 5px;
      width: 100%; }
      @media screen and (max-width: 959px) {
        .full-width__filters-holder .filter-border-bottom .search-wrapper input {
          min-width: 260px; } }
      @media screen and (max-width: 449px) {
        .full-width__filters-holder .filter-border-bottom .search-wrapper input {
          min-width: initial; } }
      .full-width__filters-holder .filter-border-bottom .search-wrapper input::-webkit-input-placeholder {
        color: #4D4D4D;
        font-weight: light; }
      .full-width__filters-holder .filter-border-bottom .search-wrapper input:-moz-placeholder {
        color: #4D4D4D;
        font-weight: light; }
      .full-width__filters-holder .filter-border-bottom .search-wrapper input::-moz-placeholder {
        color: #4D4D4D;
        font-weight: light; }
      .full-width__filters-holder .filter-border-bottom .search-wrapper input:-ms-input-placeholder {
        color: #4D4D4D;
        font-weight: light; }

.full-width__filters-holder .year-filter {
  float: right;
  margin-right: 1%;
  min-width: 160px;
  width: auto; }
  @media screen and (max-width: 899px) {
    .full-width__filters-holder .year-filter {
      margin-right: 3%;
      width: auto; } }
  @media screen and (max-width: 799px) {
    .full-width__filters-holder .year-filter {
      clear: right; } }
  @media screen and (max-width: 614px) {
    .full-width__filters-holder .year-filter {
      clear: none;
      margin-right: 0;
      width: 33%; } }
  @media screen and (max-width: 514px) {
    .full-width__filters-holder .year-filter {
      width: 50%; } }
  .full-width__filters-holder .year-filter p, .full-width__filters-holder .year-filter select {
    float: left;
    margin-bottom: 0; }
  .full-width__filters-holder .year-filter p {
    margin-top: 7px;
    padding-right: 5px;
    width: auto; }
  .full-width__filters-holder .year-filter select {
    margin: 5px 0;
    max-height: 25px;
    width: auto;
    padding: 2px 20px 2px 10px; }

.full-width__filters-holder .reset-archive-filter {
  float: right;
  margin-right: 3%;
  width: auto; }
  @media screen and (max-width: 614px) {
    .full-width__filters-holder .reset-archive-filter {
      margin-right: 0;
      text-align: center;
      width: 33%; } }
  @media screen and (max-width: 514px) {
    .full-width__filters-holder .reset-archive-filter {
      width: 50%; } }
  .full-width__filters-holder .reset-archive-filter p {
    font-size: 14px;
    line-height: 1;
    min-width: 136px;
    margin-top: 5px;
    max-width: 136px;
    padding: 3px 15px;
    width: 100%; }

.full-width__filters-holder .pag-filter {
  float: right;
  width: auto; }
  @media screen and (max-width: 614px) {
    .full-width__filters-holder .pag-filter {
      width: 33%; } }
  @media screen and (max-width: 514px) {
    .full-width__filters-holder .pag-filter {
      width: 100%; } }
  .full-width__filters-holder .pag-filter .archive-paginaton {
    margin-bottom: 0;
    min-height: 37px;
    padding: 5px 0;
    text-align: right; }
    @media screen and (max-width: 449px) {
      .full-width__filters-holder .pag-filter .archive-paginaton {
        padding: 8px 0; } }
    .full-width__filters-holder .pag-filter .archive-paginaton li {
      display: inline-block;
      margin: 0 5px; }
      .full-width__filters-holder .pag-filter .archive-paginaton li.active a {
        color: #c81618;
        font-weight: 500; }

body.landing {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
  body.landing div.page div.landing-page {
    width: 960px;
    margin: 0 auto;
    float: none; }
  body.landing div.page div.right-column {
    padding-left: 5%;
    padding-top: 20px;
    width: 65%; }
    body.landing div.page div.right-column div.row {
      width: 100%; }
      body.landing div.page div.right-column div.row .add-share-print {
        display: inherit;
        float: none;
        margin: 0;
        width: 100%; }
        body.landing div.page div.right-column div.row .add-share-print li.add-calendar {
          background: url("../images/add-to-calendar.gif") no-repeat scroll right 3px rgba(0, 0, 0, 0);
          margin-bottom: 10px; }
          body.landing div.page div.right-column div.row .add-share-print li.add-calendar a {
            color: #c81618;
            font-size: 12px;
            padding: 10px 0; }
      body.landing div.page div.right-column div.row div.inner-left {
        padding: 0; }
        body.landing div.page div.right-column div.row div.inner-left h1 {
          font-size: 20px;
          font-style: italic;
          font-weight: 300;
          padding: 0;
          margin: 0;
          color: #c81618; }
        body.landing div.page div.right-column div.row div.inner-left h3 {
          font-size: 20px;
          margin-bottom: 4%;
          padding: 0;
          font-weight: 300;
          color: #c81618; }
        body.landing div.page div.right-column div.row div.inner-left .share-now-text {
          font-size: 15px; }
          body.landing div.page div.right-column div.row div.inner-left .share-now-text span {
            width: auto !important; }
            body.landing div.page div.right-column div.row div.inner-left .share-now-text span span.facebook {
              background: url("../images/facebook-logo-dark.svg");
              padding-bottom: 26px; }
            body.landing div.page div.right-column div.row div.inner-left .share-now-text span span.twitter {
              background: url("../images/twitter-logo-dark.svg");
              padding-bottom: 26px; }
            body.landing div.page div.right-column div.row div.inner-left .share-now-text span.st_facebook {
              display: inline-block;
              vertical-align: middle; }
              body.landing div.page div.right-column div.row div.inner-left .share-now-text span.st_facebook span.stButton {
                margin: 0; }
            body.landing div.page div.right-column div.row div.inner-left .share-now-text span.st_twitter {
              display: inline-block;
              vertical-align: middle; }
              body.landing div.page div.right-column div.row div.inner-left .share-now-text span.st_twitter span.stButton {
                margin: 0; }
      body.landing div.page div.right-column div.row.contact-us {
        padding: 20px 0;
        border-bottom: 1px solid #c81618; }
      body.landing div.page div.right-column div.row.bordered {
        border-top: 1px solid #c81618;
        border-bottom: 1px solid #c81618;
        padding: 20px 0;
        margin: 0;
        margin-top: 5%; }
        body.landing div.page div.right-column div.row.bordered div.info h4 {
          color: #4D4D4D;
          float: left;
          font-weight: 300;
          line-height: 1;
          padding: 0;
          width: 30%;
          margin: 0; }
        body.landing div.page div.right-column div.row.bordered div.info p {
          float: left;
          width: 70%;
          margin: 0;
          font-size: 14px;
          font-weight: 300; }
        body.landing div.page div.right-column div.row.bordered div.info ul {
          float: left;
          width: 70%;
          margin: 0; }
          body.landing div.page div.right-column div.row.bordered div.info ul li {
            font-size: 14px;
            list-style: none outside none;
            margin: 0;
            padding: 2px; }
        body.landing div.page div.right-column div.row.bordered div.info address {
          float: left;
          width: 70%;
          margin: 0;
          font-size: 14px;
          font-style: normal;
          font-weight: 300;
          line-height: 1.3; }
        body.landing div.page div.right-column div.row.bordered div.info.viewing-times h4 {
          line-height: 1.5; }
      body.landing div.page div.right-column div.row .open-close-hold {
        cursor: pointer;
        float: left;
        width: 50%;
        margin: 0; }
        body.landing div.page div.right-column div.row .open-close-hold .open-close-button {
          background: url("/images/filter_sprite.png") no-repeat scroll left top;
          cursor: pointer;
          float: right;
          margin: 0 auto;
          padding-left: 40px;
          padding-top: 2px;
          display: none;
          width: 100px; }
          body.landing div.page div.right-column div.row .open-close-hold .open-close-button.show {
            background: url("/images/filter_sprite.png") no-repeat scroll 0 -36px; }
            body.landing div.page div.right-column div.row .open-close-hold .open-close-button.show .estimate-open {
              display: none;
              margin: 0; }
            body.landing div.page div.right-column div.row .open-close-hold .open-close-button.show .estimate-close {
              display: inherit;
              margin: 0; }
          body.landing div.page div.right-column div.row .open-close-hold .open-close-button .estimate-close {
            display: none;
            margin: 0; }
          body.landing div.page div.right-column div.row .open-close-hold .open-close-button .estimate-open {
            margin: 0; }
      body.landing div.page div.right-column div.row .sub-title {
        display: none;
        font-weight: 300;
        font-style: italic;
        float: left;
        line-height: 1;
        padding: 0;
        width: 50%;
        text-align: left;
        margin: 0; }
      body.landing div.page div.right-column div.row div.info {
        padding-right: 0;
        width: 100%;
        float: left; }
        body.landing div.page div.right-column div.row div.info h4 {
          color: #4D4D4D;
          float: left;
          font-weight: 300;
          padding: 0;
          width: 100%;
          margin: 0; }
        body.landing div.page div.right-column div.row div.info ul {
          margin: 0; }
          body.landing div.page div.right-column div.row div.info ul li {
            font-size: 14px;
            list-style: none outside none;
            margin: 0;
            padding: 2px; }
      body.landing div.page div.right-column div.row .contact-us .contact-us-address {
        float: left;
        margin: 0 30px 0 0; }
        @media screen and (max-width: 599px) {
          body.landing div.page div.right-column div.row .contact-us .contact-us-address {
            margin: 0;
            width: 100%; } }
        body.landing div.page div.right-column div.row .contact-us .contact-us-address li {
          line-height: 1; }
      body.landing div.page div.right-column div.row .contact-us .contact-us-details {
        float: left; }
        @media screen and (max-width: 599px) {
          body.landing div.page div.right-column div.row .contact-us .contact-us-details {
            margin-top: 30px;
            width: 100%; } }
  body.landing div.page .left-column {
    width: 35%;
    padding: 0; }
    body.landing div.page .left-column div.images {
      width: 100%; }
      body.landing div.page .left-column div.images div.image-list {
        width: 100%; }
        body.landing div.page .left-column div.images div.image-list .pika-stage {
          width: 100%;
          background: none repeat scroll 0 0;
          border: medium none;
          height: 250px;
          padding: 0;
          margin-bottom: 30%; }
          body.landing div.page .left-column div.images div.image-list .pika-stage .pika-textnav {
            width: 100%;
            position: static;
            margin: 0;
            display: inline-block;
            margin-bottom: 5%; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-textnav:before {
              content: "";
              display: table;
              clear: both; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-textnav:after {
              content: ".";
              display: block;
              clear: both;
              visibility: hidden;
              line-height: 0;
              height: 0; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-textnav a {
              background: none repeat scroll 0 0 !important;
              border: 1px solid #4D4D4D !important;
              border-radius: 0 !important;
              color: #4D4D4D !important;
              font-size: 13px !important;
              height: auto !important;
              line-height: inherit !important;
              padding: 2% 5% 1.5% !important;
              text-decoration: none !important;
              text-transform: uppercase !important;
              width: auto !important;
              cursor: pointer; }
          body.landing div.page .left-column div.images div.image-list .pika-stage .pika-imgnav {
            display: none !important; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-imgnav .pika-counter {
              display: none; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-imgnav a.next {
              background: url("/images/next.png") no-repeat scroll right 45%/108%; }
            body.landing div.page .left-column div.images div.image-list .pika-stage .pika-imgnav a.previous {
              background: url("/images/prev.png") no-repeat scroll left 45%/108% auto; }
        body.landing div.page .left-column div.images div.image-list #pikame {
          width: 100%;
          margin-left: 0; }
          body.landing div.page .left-column div.images div.image-list #pikame li {
            background: none repeat scroll 0 0;
            border: medium none;
            height: auto;
            margin: 0;
            padding: 2%;
            width: 33.33%;
            max-height: 85px;
            opacity: 0.4; }
            body.landing div.page .left-column div.images div.image-list #pikame li .clip img {
              opacity: 1 !important; }
            body.landing div.page .left-column div.images div.image-list #pikame li.active {
              opacity: 1; }

/* ====== LOT PAGES ====== */
/* ======
LOT PAGES
	- General
	- Images
		- Overrides
	- Lot Details
	- Lot Bid
	- Bottom Links
	- Lot Search
	- Similair Lots

====== */
/*================================================================================
$ GENERAL
================================================================================*/
.lot_detail .footer-hold {
  display: block !important; }

.lot_detail .page .buyers-remorse-notification {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 10px;
  display: none; }
  .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner {
    padding: 20px;
    position: relative;
    border-bottom: 3px solid #c81618;
    background-color: #f4f4f4;
    margin: 0 auto;
    width: 100%;
    max-width: 960px; }
    .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner p {
      float: left;
      width: 90%;
      max-width: 700px;
      font-size: 16px;
      margin-bottom: 0; }
      @media screen and (max-width: 599px) {
        .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner p {
          width: 85%; } }
    .lot_detail .page .buyers-remorse-notification .buyers-remorse-inner a.close-remorse-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 16px; }

.lot_detail .page .item-navigation-top, .lot_detail .page .item-navigation-bottom {
  margin: 10px auto;
  max-width: 960px;
  width: 100%;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 0 20px; }

.lot_detail .page .item-nav-prev {
  float: right;
  text-align: left;
  width: 33.333%; }
  .lot_detail .page .item-nav-prev a {
    background-image: url("/images/lot-page_arrows-left.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: 15px;
    color: #4D4D4D;
    display: block;
    font-size: 13px;
    padding: 5px 15px;
    text-decoration: none; }

.lot_detail .page .back-to-catalogues {
  float: right;
  text-align: center;
  width: 33%; }
  .lot_detail .page .back-to-catalogues a {
    color: #4D4D4D;
    display: block;
    font-size: 13px;
    padding: 7px 20px;
    text-decoration: none; }

.lot_detail .page .next_previous {
  float: right;
  text-align: right;
  width: 33%; }
  .lot_detail .page .next_previous a {
    background-image: url("/images/lot-page_arrows-right.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 15px;
    color: #4D4D4D;
    display: block;
    font-size: 13px;
    padding: 7px 15px;
    text-decoration: none; }

/*================================================================================
$ IMAGES
================================================================================*/
.lot_details {
  margin: 0 auto;
  max-width: 960px;
  padding: 20px;
  width: 100%; }
  .lot_details .lot_detail_left {
    float: left;
    width: 30%;
    text-align: center;
    margin: 0 10px; }
    @media screen and (max-width: 899px) {
      .lot_details .lot_detail_left {
        width: 25%; } }
    @media screen and (max-width: 749px) {
      .lot_details .lot_detail_left {
        width: 100%; } }
    @media screen and (max-width: 499px) {
      .lot_details .lot_detail_left {
        max-width: 350px;
        float: none;
        margin: 0 auto;
        padding: 10px; } }
    @media screen and (max-width: 399px) {
      .lot_details .lot_detail_left {
        max-width: 290px; } }
    .lot_details .lot_detail_left a.lot_detail_img_enlarge_atop {
      text-align: center; }
    .lot_details .lot_detail_left .lot_detail_img_enlarge {
      margin-top: 2%; }
      @media screen and (max-width: 599px) {
        .lot_details .lot_detail_left .lot_detail_img_enlarge .hover-text {
          display: none; } }
      .lot_details .lot_detail_left .lot_detail_img_enlarge p {
        margin-bottom: 0; }
      .lot_details .lot_detail_left .lot_detail_img_enlarge .lot_detail_img_enlarge_a {
        display: inline-block;
        font-size: 15px;
        padding: 5px 40px;
        text-align: center;
        width: auto; }
    .lot_details .lot_detail_left > img {
      width: 100%; }
    .lot_details .lot_detail_left .lot-desc {
      margin-top: 20px; }
    .lot_details .lot_detail_left .lot-images #loading img {
      left: 60%;
      position: absolute;
      top: 30%;
      max-width: 300px;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -moz-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      -o-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%); }
    .lot_details .lot_detail_left .lot-images .lot-images-wrapper img {
      border: 1px solid #efefef; }
    .lot_details .lot_detail_left .lot-images .hover-text p {
      color: #c81618; }
  .lot_details .multiple_images_ul {
    margin: 15px auto;
    max-width: 225px;
    zoom: 1; }
    .lot_details .multiple_images_ul:before, .lot_details .multiple_images_ul:after {
      content: "";
      display: table; }
    .lot_details .multiple_images_ul:after {
      clear: both; }
    .lot_details .multiple_images_ul > li {
      float: left;
      list-style: outside none none;
      margin-right: 0;
      width: 33%; }
      .lot_details .multiple_images_ul > li:nth-child(3n-5) {
        clear: left; }
      @media screen and (max-width: 959px) {
        .lot_details .multiple_images_ul > li {
          width: 33.3%; } }
      @media screen and (max-width: 599px) {
        .lot_details .multiple_images_ul > li {
          width: 33.3%; } }
      .lot_details .multiple_images_ul > li img {
        border: 1px solid #e3e3e3;
        max-width: 50px;
        padding: 5px; }
  .lot_details .hover-to-zoom {
    color: #c81618;
    display: block;
    font-size: 15px;
    line-height: 1.25;
    margin-top: 5px; }
  .lot_details .related-lots .lot-item {
    padding: 5px; }
  .lot_details .related-lots .lot-num a {
    font-size: 14px; }
  .lot_details .related-lots .lot-name p {
    font-size: 21px; }
  .lot_details .related-lots .price-label span {
    color: #89C33F;
    font-size: 21px; }
  .lot_details .related-lots .lot-actions a {
    font-size: 11px;
    padding: 9px 0 7px;
    margin: 5px 0; }
  .lot_details .module-recently-view-items {
    margin-top: 20px;
    padding-top: 20px; }
    .lot_details .module-recently-view-items .recent-lot-box {
      float: left;
      margin-left: 2.4%;
      width: 18%; }
      .lot_details .module-recently-view-items .recent-lot-box img {
        border: 1px solid #cecdcd;
        padding: 5px; }
      .lot_details .module-recently-view-items .recent-lot-box:first-child {
        margin-left: 0; }
      .lot_details .module-recently-view-items .recent-lot-box:nth-child(5n+6) {
        clear: left;
        margin-left: 0; }
      .lot_details .module-recently-view-items .recent-lot-box a {
        width: 100%; }

/*================================================================================
	$ OVERRIDES
	================================================================================*/
.lot-desc {
  display: none; }

.related-lots {
  display: none; }

/*================================================================================
$ LOT DETAILS
================================================================================*/
.lot_detail_right {
  float: right;
  width: 100%;
  max-width: 570px;
  margin-left: 10px; }
  @media screen and (max-width: 959px) {
    .lot_detail_right {
      float: left;
      max-width: 550px; } }
  @media screen and (max-width: 899px) {
    .lot_detail_right {
      max-width: 475px; } }
  @media screen and (max-width: 749px) {
    .lot_detail_right {
      padding: 0 10px 10px 10px;
      width: 100%;
      max-width: none;
      margin: 0; } }
  .lot_detail_right .lot-details-inner-left, .lot_detail_right .lot-details-inner-right {
    float: left;
    width: 50%;
    position: relative; }
    @media screen and (max-width: 599px) {
      .lot_detail_right .lot-details-inner-left, .lot_detail_right .lot-details-inner-right {
        width: 100%;
        float: left !important; } }
    .lot_detail_right .lot-details-inner-left span, .lot_detail_right .lot-details-inner-right span {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important; }
    .lot_detail_right .lot-details-inner-left .import-duty, .lot_detail_right .lot-details-inner-right .import-duty {
      position: absolute;
      top: 4px;
      right: 45px; }
      .lot_detail_right .lot-details-inner-left .import-duty .tooltip-hover, .lot_detail_right .lot-details-inner-right .import-duty .tooltip-hover {
        border: 1px solid #4d4d4d;
        border-radius: 3px;
        color: #4d4d4d;
        display: none;
        float: right;
        font-size: 12px;
        font-weight: 500;
        padding: 2px 5px;
        width: 85%;
        box-shadow: 0 0 20px 0 #929292;
        background: white;
        position: absolute;
        width: 150px;
        z-index: 99999; }
  .lot_detail_right .lot-information {
    border-top: 1px solid #efefef; }
  .lot_detail_right .lot_detail-inclusive-preimium_button {
    float: left;
    font-size: 11px;
    background: #c81618;
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-weight: bold;
    width: auto;
    clear: right;
    margin-bottom: 10px; }
  .lot_detail_right .lot_detail-inclusive-preimium_text {
    float: right;
    color: #c81618;
    font-weight: bold;
    font-size: 14px;
    padding-top: 0px;
    width: 80%;
    text-align: right; }
    @media screen and (max-width: 499px) {
      .lot_detail_right .lot_detail-inclusive-preimium_text {
        width: 100%;
        text-align: left;
        padding: 10px 0; } }
  .lot_detail_right .lot-num {
    margin-bottom: 0;
    width: 100%;
    float: left; }
    @media screen and (max-width: 599px) {
      .lot_detail_right .lot-num {
        width: 100%;
        text-align: center;
        margin: 10px 0; } }
    .lot_detail_right .lot-num p {
      color: #4D4D4D;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-weight: 400; }
  .lot_detail_right .lot-author-info {
    float: left;
    width: 100%; }
    .lot_detail_right .lot-author-info .attr-interest {
      font-weight: 600; }
    .lot_detail_right .lot-author-info br {
      display: none; }
    .lot_detail_right .lot-author-info span {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
      font-size: 15px !important;
      padding-right: 2px; }
  .lot_detail_right .no-buyers-label {
    float: right; }
  .lot_detail_right .lot-author {
    margin-bottom: 0;
    float: right; }
    @media screen and (max-width: 599px) {
      .lot_detail_right .lot-author {
        width: 100%;
        text-align: center;
        margin: 10px 0; } }
    .lot_detail_right .lot-author p {
      color: #4D4D4D;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-weight: 400; }
  .lot_detail_right .lot-name {
    clear: left;
    float: left;
    width: 100%;
    margin-top: 15px;
    max-width: 300px; }
    @media screen and (max-width: 899px) {
      .lot_detail_right .lot-name {
        max-width: 300px; } }
    @media screen and (max-width: 599px) {
      .lot_detail_right .lot-name {
        max-width: none;
        width: 100%;
        text-align: center; } }
    .lot_detail_right .lot-name h2 {
      color: #4D4D4D;
      font-size: 15px;
      font-weight: 500;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
    .lot_detail_right .lot-name .attr-interest {
      font-weight: bold; }
  .lot_detail_right .currency-converter {
    clear: right;
    float: right;
    margin: 10px 0;
    max-width: 210px;
    width: 100%; }
    @media screen and (max-width: 749px) {
      .lot_detail_right .currency-converter {
        max-width: 175px; } }
    @media screen and (max-width: 599px) {
      .lot_detail_right .currency-converter {
        max-width: none; } }
    .lot_detail_right .currency-converter select {
      border: none;
      font-size: 15px;
      color: #4D4D4D;
      background-image: url("/images/lot-page_arrows-down.svg");
      background-position: right center;
      background-repeat: no-repeat;
      background-color: transparent;
      background-size: auto 8px;
      float: right;
      font-weight: 300; }
      @media screen and (max-width: 599px) {
        .lot_detail_right .currency-converter select {
          background-position: 95% center;
          width: 70%;
          border: 2px solid #4D4D4D;
          margin: 10px 0; } }
    .lot_detail_right .currency-converter p {
      float: left;
      margin-top: 6px;
      padding-left: 55px; }
      @media screen and (max-width: 749px) {
        .lot_detail_right .currency-converter p {
          padding-left: 0; } }
      @media screen and (max-width: 599px) {
        .lot_detail_right .currency-converter p {
          margin-top: 17px; } }
  .lot_detail_right .lot-estimate, .lot_detail_right .lot-hammer {
    color: #c81618;
    float: right;
    font-size: 15px;
    font-weight: 400;
    text-align: right;
    width: 85%;
    margin-bottom: 10px; }
    @media screen and (max-width: 599px) {
      .lot_detail_right .lot-estimate, .lot_detail_right .lot-hammer {
        width: 100%;
        text-align: center; } }
    .lot_detail_right .lot-estimate .price-label, .lot_detail_right .lot-hammer .price-label {
      font-weight: 600;
      margin-bottom: 0; }
    .lot_detail_right .lot-estimate .price-label-selected-currency, .lot_detail_right .lot-hammer .price-label-selected-currency {
      color: #3c3c3b; }
  .lot_detail_right .lot-hammer {
    clear: right; }
  .lot_detail_right .lot-bid-amount p {
    color: #c81618;
    font-size: 17px;
    font-weight: 600; }
  .lot_detail_right .lot-bid-amount {
    clear: both;
    float: left; }
  .lot_detail_right .lot-actions {
    margin-bottom: 5px;
    margin-top: 20px; }
    .lot_detail_right .lot-actions > div {
      float: right;
      clear: right; }
      @media screen and (max-width: 599px) {
        .lot_detail_right .lot-actions > div {
          width: 100%; } }
      .lot_detail_right .lot-actions > div a {
        padding: 3px 20px 5px !important;
        font-size: 16px !important;
        text-align: center;
        margin: 5px 0;
        min-width: 175px;
        text-transform: none; }
  @media screen and (max-width: 599px) {
    .lot_detail_right .lot-information {
      display: none; } }
  .lot_detail_right .lot-information .lot-description {
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    padding: 5px 0; }
    .lot_detail_right .lot-information .lot-description h3 {
      background-image: url("/images/lot-page_arrows-right.svg");
      background-repeat: no-repeat;
      background-position: left;
      background-size: 15px;
      color: #4D4D4D;
      font-size: 15px;
      font-weight: 300;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      margin: 2px 0;
      padding: 0 25px; }
    .lot_detail_right .lot-information .lot-description.active h3 {
      background-image: url("/images/lot-page_arrows-down.svg");
      background-size: 8px; }
    .lot_detail_right .lot-information .lot-description .lot-description__inner {
      max-height: 0;
      overflow: hidden;
      max-width: 520px;
      margin: 0 auto;
      -webkit-transition: max-height 0.5s ease-in-out 0s;
      -moz-transition: max-height 0.5s ease-in-out 0s;
      -ms-transition: max-height 0.5s ease-in-out 0s;
      -o-transition: max-height 0.5s ease-in-out 0s;
      transition: max-height 0.5s ease-in-out 0s; }
      .lot_detail_right .lot-information .lot-description .lot-description__inner.active {
        max-height: 99999px;
        max-width: 520px;
        margin: 0 auto;
        -webkit-transition: max-height 0.5s ease-in-out 0s;
        -moz-transition: max-height 0.5s ease-in-out 0s;
        -ms-transition: max-height 0.5s ease-in-out 0s;
        -o-transition: max-height 0.5s ease-in-out 0s;
        transition: max-height 0.5s ease-in-out 0s; }
      .lot_detail_right .lot-information .lot-description .lot-description__inner p {
        font-size: 13px;
        margin-top: 10px; }
        .lot_detail_right .lot-information .lot-description .lot-description__inner p span {
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
          font-size: 15px !important;
          font-weight: inherit;
          line-height: 1.4 !important; }
          .lot_detail_right .lot-information .lot-description .lot-description__inner p span b {
            font-weight: 600 !important; }
        .lot_detail_right .lot-information .lot-description .lot-description__inner p i {
          font-style: italic; }
        .lot_detail_right .lot-information .lot-description .lot-description__inner p b {
          font-weight: 600; }
  .lot_detail_right .lot-information .lot-condition-report {
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    padding: 5px 0; }
    .lot_detail_right .lot-information .lot-condition-report h3 {
      background-image: url("/images/lot-page_arrows-right.svg");
      background-repeat: no-repeat;
      background-position: left;
      background-size: 15px;
      color: #4D4D4D;
      font-size: 15px;
      font-weight: 300;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      margin: 2px 0;
      padding: 0 25px; }
    .lot_detail_right .lot-information .lot-condition-report.active h3 {
      background-image: url("/images/lot-page_arrows-down.svg");
      background-size: 8px; }
    .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner {
      max-height: 0;
      max-width: 520px;
      margin: 0 auto;
      overflow: hidden;
      -webkit-transition: max-height 0.5s ease-in-out 0s;
      -moz-transition: max-height 0.5s ease-in-out 0s;
      -ms-transition: max-height 0.5s ease-in-out 0s;
      -o-transition: max-height 0.5s ease-in-out 0s;
      transition: max-height 0.5s ease-in-out 0s; }
      .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner.active {
        max-height: none;
        height: auto;
        max-width: 520px;
        margin: 0 auto;
        overflow: visible;
        -webkit-transition: max-height 0.5s ease-in-out 0s;
        -moz-transition: max-height 0.5s ease-in-out 0s;
        -ms-transition: max-height 0.5s ease-in-out 0s;
        -o-transition: max-height 0.5s ease-in-out 0s;
        transition: max-height 0.5s ease-in-out 0s; }
      .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner span {
        font-size: 15px !important;
        font-weight: 300 !important;
        line-height: 1.4 !important;
        color: #c81618; }
      .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner .lot-login {
        margin-top: 20px; }
        .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner .lot-login .hammer-login-btn {
          float: none !important; }
        .lot_detail_right .lot-information .lot-condition-report .lot-condition-report__inner .lot-login .login-widget {
          background: none;
          padding: 0;
          margin: 0;
          border: none;
          color: #c81618;
          min-width: 0;
          text-transform: lowercase;
          vertical-align: top; }
    .lot_detail_right .lot-information .lot-condition-report iframe {
      height: 78px; }
  .lot_detail_right .mobile-info p {
    font-size: 13px;
    margin-top: 10px; }
    .lot_detail_right .mobile-info p span {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
      font-size: 15px !important;
      font-weight: 300 !important;
      line-height: 1.4 !important; }
    .lot_detail_right .mobile-info p i {
      font-style: italic; }
    .lot_detail_right .mobile-info p b {
      font-weight: 600; }
  .lot_detail_right .lot-extra-details-hold {
    margin-top: 5%; }
  .lot_detail_right .biding-form-lot-page #box {
    border: 1px solid #CCCCCC;
    padding: 2%; }
  .lot_detail_right .lot_no {
    font-size: 20px;
    font-style: italic;
    font-weight: 300; }
  .lot_detail_right > h1 {
    font-size: 28px;
    font-style: normal;
    padding: 0; }
  .lot_detail_right .estimate {
    font-size: 20px;
    margin-bottom: 2%; }
  .lot_detail_right .share-now-text {
    font-size: 15px;
    margin-top: 7%; }
    .lot_detail_right .share-now-text .st_facebook {
      display: inline-block;
      vertical-align: middle; }
    .lot_detail_right .share-now-text .st_twitter {
      display: inline-block;
      vertical-align: middle; }
    .lot_detail_right .share-now-text span {
      width: auto !important; }
      .lot_detail_right .share-now-text span span.facebook {
        background: url("../images/facebook-logo-dark.svg");
        padding-bottom: 26px; }
      .lot_detail_right .share-now-text span span.twitter {
        background: url("../images/twitter-logo-dark.svg");
        padding-bottom: 26px; }
      .lot_detail_right .share-now-text span.st_facebook span.stButton {
        margin: 0; }
      .lot_detail_right .share-now-text span.st_twitter span.stButton {
        margin: 0; }
  .lot_detail_right .wishlist {
    margin-top: 10px; }
  .lot_detail_right .hammer-login-btn {
    float: right;
    margin: 20px 0; }
    @media screen and (max-width: 599px) {
      .lot_detail_right .hammer-login-btn {
        width: 100%;
        font-size: 15px !important; } }

/*================================================================================
$ LOGGED IN BUTTONS
================================================================================*/
body.logged-in .lot_detail_right .lot-actions > div {
  clear: both !important;
  float: right; }

body.logged-in .lot_detail_right .lot-bid-amount {
  float: right;
  clear: right; }
  @media screen and (max-width: 599px) {
    body.logged-in .lot_detail_right .lot-bid-amount {
      text-align: center;
      float: none; } }

/*================================================================================
$ LOT BID
================================================================================*/
.lot_detail_right .change-bid {
  float: left;
  width: 49%;
  display: inline-block;
  text-align: center; }
  .lot_detail_right .change-bid .light-button {
    float: none;
    padding: 8px 20px 7px !important; }
  .lot_detail_right .change-bid:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }

.lot_detail_right .cancel-bid {
  float: left;
  width: 50%;
  display: inline-block;
  text-align: center; }
  .lot_detail_right .cancel-bid .light-button {
    float: none;
    padding: 8px 20px 7px !important;
    display: inherit; }
  .lot_detail_right .cancel-bid:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }

.lot_detail_right .auction-date {
  font-size: 20px;
  margin-bottom: 4%; }
  .lot_detail_right .auction-date > strong {
    font-weight: 600; }

.lot_detail_right .auction-dates-hold {
  border-top: 1px solid #c81618;
  padding: 2%; }
  .lot_detail_right .auction-dates-hold h4 {
    color: #4D4D4D;
    float: left;
    font-weight: 300;
    padding: 0;
    width: 30%; }
  .lot_detail_right .auction-dates-hold p {
    float: left;
    margin-top: 2px;
    text-transform: capitalize;
    width: 70%; }

@media screen and (max-width: 599px) {
  .lot_detail_right .viewing-times-hold {
    display: none; } }

.lot_detail_right #bidding-box-full {
  border: medium none;
  float: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  width: 100%;
  font-size: 18px; }
  .lot_detail_right #bidding-box-full > p {
    font-size: 14px; }
  .lot_detail_right #bidding-box-full .bidding-form .bid-amount {
    display: inline-block;
    float: none;
    vertical-align: middle; }
    .lot_detail_right #bidding-box-full .bidding-form .bid-amount label {
      display: inline;
      font-size: 18px;
      font-weight: 300; }
    .lot_detail_right #bidding-box-full .bidding-form .bid-amount input {
      width: 100px; }
  .lot_detail_right #bidding-box-full .bidding-form .place_submit {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px; }
    .lot_detail_right #bidding-box-full .bidding-form .place_submit input {
      padding: 8px 20px 7px !important; }
  .lot_detail_right #bidding-box-full .bidding-form .remove_bid {
    display: inline-block;
    vertical-align: middle; }
    .lot_detail_right #bidding-box-full .bidding-form .remove_bid input {
      padding: 8px 20px 7px !important; }

.lot_detail_right #cancelbid h2 {
  font-size: 18px;
  font-weight: 300;
  padding: 0; }

.lot_detail_right #cancelbid .cancel_button {
  margin-right: 10px; }

.lot_detail_right .get-more-info .place-bid span {
  font-size: 18px; }
  .lot_detail_right .get-more-info .place-bid span a.light-button {
    width: 120px !important;
    padding: 8px 20px 7px !important;
    text-align: center; }

.lot_detail_right .get-more-info p span.bid-amount-lot-veiw {
  font-size: 20px; }

.lot_detail_right .get-more-info > strong {
  font-size: 16px;
  font-weight: 300; }

.lot_detail_right .get-more-info .lot_changebid, .lot_detail_right .get-more-info .lot_cancel_bid {
  display: block;
  text-align: left; }
  @media screen and (max-width: 599px) {
    .lot_detail_right .get-more-info .lot_changebid, .lot_detail_right .get-more-info .lot_cancel_bid {
      text-align: center; } }
  .lot_detail_right .get-more-info .lot_changebid a, .lot_detail_right .get-more-info .lot_cancel_bid a {
    display: inline-block;
    margin: 0; }

.lot_detail_right .lot_description {
  margin-bottom: 7%; }

/*================================================================================
$ BOTTOM LINKS
================================================================================*/
.lot_detail #lightbox-container-image-box {
  background-color: #FFFFFF;
  margin: 0 auto;
  max-height: 800px;
  max-width: 620px;
  position: relative;
  width: 85% !important;
  margin-top: 75px; }
  @media screen and (max-width: 599px) {
    .lot_detail #lightbox-container-image-box {
      height: auto !important; } }
  .lot_detail #lightbox-container-image-box #lightbox-container-image {
    height: 100% !important;
    width: 100% !important; }
    @media screen and (max-width: 599px) {
      .lot_detail #lightbox-container-image-box #lightbox-container-image {
        height: auto !important; } }
    .lot_detail #lightbox-container-image-box #lightbox-container-image img {
      height: 100% !important;
      max-height: 800px;
      width: auto !important; }
      @media screen and (max-width: 599px) {
        .lot_detail #lightbox-container-image-box #lightbox-container-image img {
          height: auto !important; } }
    .lot_detail #lightbox-container-image-box #lightbox-container-image #lightbox-loading img {
      height: auto !important;
      max-height: 100% !important;
      max-width: 100% !important;
      width: auto !important; }
      @media screen and (max-width: 599px) {
        .lot_detail #lightbox-container-image-box #lightbox-container-image #lightbox-loading img {
          max-height: auto !important; } }

.lot_detail #lightbox-container-image-data-box {
  max-width: 620px;
  width: 85% !important; }

/*================================================================================
$ TOP TITLE AND DATE ABOVE PREV-NEXT BAR
================================================================================*/
.lot-auction-info {
  line-height: 1;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 15px;
  padding: 20px 0 1px 30px; }
  .lot-auction-info .lot-auction-name {
    float: left;
    line-height: 1; }
    .lot-auction-info .lot-auction-name h2 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 16px;
      line-height: 1;
      margin-bottom: 0;
      margin-right: 15px; }
  @media screen and (max-width: 599px) {
    .lot-auction-info .lot-auction-date {
      clear: both;
      padding: 10px 0; } }
  .lot-auction-info .lot-auction-date h2 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 16px;
    color: #c81618; }

/*================================================================================
$ CONDITION REPORT STYLES
================================================================================*/
.condition-report {
  max-width: 300px; }
  .condition-report .condition-report-title-text {
    margin-top: 15px; }
  .condition-report input, .condition-report textarea, .condition-report .secondary-btn {
    margin: 5px 0; }

.send-response {
  color: #c81618;
  padding-top: 10px; }

/*================================================================================
$ LOT DESCRIPTION AND CONDITION REPORT BLOCK MOBILE VIEW
================================================================================*/
@media screen and (min-width: 600px) {
  .lot-information.mobile-info {
    display: none; } }

@media screen and (max-width: 599px) {
  .lot-information.mobile-info {
    display: block; } }

.lot-information.mobile-info h3 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  margin: 10px 0 !important; }

.lot-information.mobile-info .hammer-login-btn.login-widget {
  width: 100%;
  font-size: 15px !important;
  float: right;
  margin: 10px 0;
  background: #c81618;
  color: #ffffff;
  cursor: pointer;
  font-weight: 300;
  display: inline-block;
  text-align: center;
  border-radius: 0;
  text-decoration: none;
  text-transform: capitalize;
  padding: 3px 20px 5px;
  transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
  vertical-align: middle;
  border: 1px solid #c81618; }
  .lot-information.mobile-info .hammer-login-btn.login-widget:hover {
    background-color: #ffffff;
    color: #c81618;
    border: 1px solid #c81618; }

.lot-information.mobile-info .emailContact span {
  color: #c81618; }

/*================================================================================
$ LOT SEARCH
================================================================================*/
.lot-details .search-container {
  border: 1px solid #efefef;
  padding: 10px 12px; }

.lot-details .search-this-sale h2 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #c81618; }

.lot-details .search-results {
  max-height: 250px;
  overflow-y: auto;
  min-height: 22px;
  padding-top: 5px; }
  @media screen and (min-width: 750px) and (max-width: 899px) {
    .lot-details .search-results {
      min-height: 40px; } }
  .lot-details .search-results p:last-child {
    font-size: 13px; }
  .lot-details .search-results .lot {
    zoom: 1;
    padding-bottom: 5px; }
    .lot-details .search-results .lot:before, .lot-details .search-results .lot:after {
      content: "";
      display: table; }
    .lot-details .search-results .lot:after {
      clear: both; }
  .lot-details .search-results .lot-image {
    float: left;
    padding-right: 5%;
    width: 25%; }
    @media screen and (max-width: 599px) {
      .lot-details .search-results .lot-image {
        padding-right: 15px;
        width: 19%; } }
    @media screen and (max-width: 449px) {
      .lot-details .search-results .lot-image {
        width: 22%; } }
  .lot-details .search-results .lot-name {
    clear: none;
    float: left;
    margin-top: 0;
    max-width: 300px;
    width: 75%;
    text-align: left; }
    @media screen and (max-width: 599px) {
      .lot-details .search-results .lot-name {
        width: 81%; } }
    @media screen and (max-width: 449px) {
      .lot-details .search-results .lot-name {
        width: 78%; } }

/*================================================================================
$ SIMILAIR LOTS
================================================================================*/
.similar-lots.barnebys-lot-detail-similar {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 15px 10px 0 10px; }
  .similar-lots.barnebys-lot-detail-similar .similar-lots-title h3 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 23px;
    font-weight: 300;
    color: black; }
  .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow, .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 54px;
    min-width: 0;
    margin: 0;
    background: transparent;
    border: none;
    margin-top: -25px;
    padding: 7px 15px; }
    @media screen and (max-width: 1009px) {
      .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow, .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow {
        padding: 7px 6px;
        height: 78px; } }
    .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow img, .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow img {
      height: 50px; }
      @media screen and (max-width: 1009px) {
        .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow img, .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow img {
          height: 65px; } }
  .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow {
    left: -25px; }
    @media screen and (max-width: 1009px) {
      .similar-lots.barnebys-lot-detail-similar .slick-prev.slick-arrow {
        left: 0; } }
  .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow {
    right: -25px; }
    @media screen and (max-width: 1009px) {
      .similar-lots.barnebys-lot-detail-similar .slick-next.slick-arrow {
        right: 0; } }
  .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-image {
    width: 100%;
    padding: 0 10px;
    text-align: center; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-image a {
      line-height: 250px; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-image img {
      display: inline-block;
      max-height: 200px;
      vertical-align: middle; }
  .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info {
    padding: 15px 10px 0px; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .lot-number {
      margin-bottom: 5px; }
      .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .lot-number a {
        font-size: 16px;
        color: black; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .lot-icons {
      margin-bottom: 5px;
      margin-top: 0;
      float: none; }
      .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .lot-icons .lot-icons--list__link p {
        top: -120px; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .similar-lots-description a {
      font-size: 16px;
      color: black;
      min-height: 25px;
      display: block;
      line-height: 1.4; }
      .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .similar-lots-description a span {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: 600;
        background: none; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .similar-lots-description p {
      margin-bottom: 0; }
    .similar-lots.barnebys-lot-detail-similar .slick-slide .lot-info .lot-estimate a {
      color: #c81618;
      font-weight: 600; }

.barnebys_lot_detail_right .lot-details-inner-left .lot-author-info {
  font-weight: 600; }

.barnebys_lot_detail_right .lot-details-inner-left .lot-icons {
  margin-top: 7px;
  margin-bottom: 0; }

.barnebys_lot_detail_right .lot-details-inner-left .lot-estimate, .barnebys_lot_detail_right .lot-details-inner-left .lot-hammer {
  float: left;
  text-align: left;
  margin-bottom: 0px;
  margin-top: 15px; }
  .barnebys_lot_detail_right .lot-details-inner-left .lot-estimate p, .barnebys_lot_detail_right .lot-details-inner-left .lot-hammer p {
    margin-bottom: 0; }

.barnebys_lot_detail_right .lot-details-inner-left .bid-amount-wrapper.lot-bid-amount {
  float: left;
  padding: 8px 0 5px; }

.barnebys_lot_detail_right .lot-details-inner-left .currency-converter {
  float: left;
  margin: 0px 0; }
  .barnebys_lot_detail_right .lot-details-inner-left .currency-converter p {
    padding-left: 0;
    margin-top: 5px;
    font-weight: 400; }
    @media screen and (max-width: 599px) {
      .barnebys_lot_detail_right .lot-details-inner-left .currency-converter p {
        width: 30%;
        margin-top: 16px; } }
  .barnebys_lot_detail_right .lot-details-inner-left .currency-converter select {
    float: left; }

.barnebys_lot_detail_right .lot-details-inner-left .lot-actions {
  float: left;
  width: 100%;
  text-align: left;
  background: #efefef;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 50px; }
  .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot-placebid, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .changed_bid, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot-deletebid, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .btn-holder, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot_changebid {
    width: 100%; }
    .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot-placebid a, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .changed_bid a, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot-deletebid a, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .btn-holder a, .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .lot_changebid a {
      width: 100%;
      max-width: none; }
  .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .bookmarkBtn a {
    width: 100%;
    max-width: none;
    background-color: #c81618;
    color: #ffffff;
    padding: 8px 20px 5px !important;
    display: none; }
    .barnebys_lot_detail_right .lot-details-inner-left .lot-actions .bookmarkBtn a:hover {
      background-color: #ffffff;
      color: #c81618;
      border: 1px solid #c81618;
      text-decoration: none; }

/*================================================================================
$ AUCTION / CATALOGUE
================================================================================*/
/* ====== CATALOGUE - BID BASKET ====== */
/* ======
CATALOGUE - BID BASKET
	- BID BASKET
====== */
/*================================================================================
$ BID BASKET
================================================================================*/
.bid-basket-holder {
  float: left;
  width: 100%; }
  .bid-basket-holder .bid_basket {
    padding: 7px 20px; }
    @media screen and (max-width: 419px) {
      .bid-basket-holder .bid_basket {
        padding: 7px 10px; } }
    .bid-basket-holder .bid_basket > div {
      float: left; }
      .bid-basket-holder .bid_basket > div p {
        line-height: 2.1; }
        @media screen and (max-width: 799px) {
          .bid-basket-holder .bid_basket > div p {
            line-height: 2.4; } }
        @media screen and (max-width: 699px) {
          .bid-basket-holder .bid_basket > div p {
            line-height: 2.8; } }
  .bid-basket-holder p, .bid-basket-holder span {
    color: #9c9b9b;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-align: left; }
    @media screen and (max-width: 799px) {
      .bid-basket-holder p, .bid-basket-holder span {
        font-size: 15px; } }
    @media screen and (max-width: 699px) {
      .bid-basket-holder p, .bid-basket-holder span {
        font-size: 12px; } }
  .bid-basket-holder .bid-basket-holder__label {
    width: 15%; }
    @media screen and (max-width: 699px) {
      .bid-basket-holder .bid-basket-holder__label {
        width: 25%; } }
    @media screen and (max-width: 399px) {
      .bid-basket-holder .bid-basket-holder__label {
        width: 22%; } }
    .bid-basket-holder .bid-basket-holder__label .bid_basket_title {
      background: rgba(0, 0, 0, 0) url("../images/basket-icon.png") no-repeat scroll left center/25px auto;
      color: #41a940;
      padding-left: 30px; }
      @media screen and (max-width: 799px) {
        .bid-basket-holder .bid-basket-holder__label .bid_basket_title {
          background-size: 20px auto;
          padding-left: 21px; } }
      @media screen and (max-width: 399px) {
        .bid-basket-holder .bid-basket-holder__label .bid_basket_title {
          background: none;
          padding-left: 0; } }
  .bid-basket-holder .bid-basket-holder__total-bids {
    width: 15%; }
    @media screen and (max-width: 699px) {
      .bid-basket-holder .bid-basket-holder__total-bids {
        width: 25%; } }
    @media screen and (max-width: 399px) {
      .bid-basket-holder .bid-basket-holder__total-bids {
        width: 28%; } }
  .bid-basket-holder .bid-basket-holder__total-amount {
    width: 30%; }
    @media screen and (max-width: 699px) {
      .bid-basket-holder .bid-basket-holder__total-amount {
        width: 50%; } }
  .bid-basket-holder .submit-bids {
    padding-left: 2.5px; }
  .bid-basket-holder .breakdown, .bid-basket-holder .submit-bids {
    width: 20%; }
    @media screen and (max-width: 699px) {
      .bid-basket-holder .breakdown, .bid-basket-holder .submit-bids {
        width: 50%; } }
    .bid-basket-holder .breakdown a, .bid-basket-holder .submit-bids a {
      min-width: 0;
      font-size: 12px;
      padding: 8px 0;
      text-transform: uppercase;
      width: 100%; }
  .bid-basket-holder .breakdown {
    padding-right: 2.5px; }

/* ====== CATALOGUE - GENERAL ====== */
/* ======
CATALOGUE - GENERAL
	- General Layout
	- Buttons
	- Lot Views
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
#catalogue-lots {
  margin: 0 auto;
  max-width: 960px; }
  @media screen and (max-width: 979px) {
    #catalogue-lots {
      padding: 0 10px; } }
  @media screen and (max-width: 599px) {
    #catalogue-lots {
      padding-top: 0 !important; } }
  #catalogue-lots > .catalogue-view {
    width: 100%; }
    @media screen and (max-width: 959px) {
      #catalogue-lots > .catalogue-view {
        padding: 10px; } }
    #catalogue-lots > .catalogue-view .catalogue-view {
      margin: 0 auto;
      max-width: 960px;
      width: 100%; }
    #catalogue-lots > .catalogue-view .catalogue-grid-view {
      margin: 0 auto;
      max-width: 960px;
      padding: 0 10px;
      width: 100%; }

/*================================================================================
$ BUTTONS
================================================================================*/
.filter-btn {
  min-width: 150px;
  padding: 5px; }

.breakdown-btn {
  min-width: 150px;
  padding: 5px; }

.submit-bids-btn {
  min-width: 150px;
  padding: 5px; }

.clear-filters-btn {
  padding: 4px 7px; }

.lot-actions a {
  display: inline-block;
  font-size: 15px;
  margin: 0;
  max-width: 175px;
  width: 100%; }
  @media screen and (max-width: 599px) {
    .lot-actions a {
      font-size: 15px;
      max-width: none; } }
  .lot-actions a .pulse-btn {
    width: 100%; }

.lot-actions .registerBtn {
  display: inline-block;
  font-size: 15px;
  margin: 0;
  width: 100%;
  text-align: center;
  background-color: #41a940;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #ffffff;
  border: 1px solid #41a940;
  font-size: 16px;
  max-width: none; }
  .lot-actions .registerBtn:hover {
    background-color: #ffffff;
    color: #41a940;
    border: 1px solid #41a940;
    text-decoration: none; }

/*================================================================================
$ LOT VIEWS
================================================================================*/
.lot-item .lot-num {
  margin-bottom: 10px; }
  .lot-item .lot-num h2 {
    font-size: 15px;
    line-height: 1;
    margin: 0; }
    @media screen and (max-width: 599px) {
      .lot-item .lot-num h2 {
        margin-bottom: 5px; } }
  .lot-item .lot-num a {
    color: #808080;
    font-size: 15px;
    font-weight: 300;
    line-height: 1; }
    @media screen and (max-width: 599px) {
      .lot-item .lot-num a {
        font-size: 12px; } }

.lot-item .lot-name {
  margin-bottom: 10px; }
  @media screen and (max-width: 479px) {
    .lot-item .lot-name {
      min-height: 60px; } }
  .lot-item .lot-name p, .lot-item .lot-name a {
    line-height: 1.25; }
  .lot-item .lot-name .attr-interest {
    font-weight: bold; }

.lot-item .lot-hammer {
  padding-bottom: 10px; }
  .lot-item .lot-hammer > p {
    color: #c81618;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 5px;
    text-align: center; }
  .lot-item .lot-hammer .price-label {
    font-weight: 600 !important; }
    .lot-item .lot-hammer .price-label span {
      display: inline; }
  .lot-item .lot-hammer .price-label-selected-currency {
    color: #3c3c3b;
    font-weight: 400 !important; }

.lot-item .lot-estimate {
  margin-bottom: 7px; }
  .lot-item .lot-estimate > p {
    color: #c81618;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 5px; }
  .lot-item .lot-estimate .price-label {
    font-weight: 600 !important; }
    .lot-item .lot-estimate .price-label span {
      display: inline; }
  .lot-item .lot-estimate .price-label-selected-currency {
    color: #3c3c3b;
    font-weight: 400 !important; }

.lot-item .lot-bid-amount {
  margin-bottom: 12px; }
  .lot-item .lot-bid-amount > p {
    color: #c81618;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left; }
    @media screen and (max-width: 599px) {
      .lot-item .lot-bid-amount > p {
        font-size: 14px; } }

@media screen and (max-width: 749px) {
  .lot-item .lot-num h2, .lot-item .lot-num p, .lot-item .lot-name h2, .lot-item .lot-name p {
    font-size: 12px; } }

@media screen and (max-width: 749px) {
  .lot-item .lot-estimate h2, .lot-item .lot-estimate p, .lot-item .lot-amount h2, .lot-item .lot-amount p, .lot-item .lot-bid-amount h2, .lot-item .lot-bid-amount p, .lot-item .lot-hammer h2, .lot-item .lot-hammer p {
    font-size: 15px; } }

.lot-item .lot-actions {
  min-height: 165px; }
  .lot-item .lot-actions.lot-actions-archive {
    min-height: 75px !important; }
  .lot-item .lot-actions > div {
    display: block;
    float: left;
    margin: 0 0 7px;
    text-align: center;
    width: 100%; }

/* ====== CATALOGUE - FILTERS ====== */
/* ======
CATALOGUE - FILTERS
	- LAYOUT
	- TOP FILTERS
	- HIDE/SHOW TOGGLE
	- CUSTOM BUTTONS
----------------------
EDITS TO FILTERS
	- VIEW BY
	- ESTIMATE
	- SORT BY
	- LOTS PER
	- SEARCH
	- JUMP TO LOT
	- CATEGORIES
	- SORT BY
	- CURRENCY CONVERTER


====== */
/*================================================================================
$ TIMES AUCTION
================================================================================*/
.com_timed_auction .full-width__filters-holder {
  background: transparent;
  width: 100%;
  z-index: 100;
  display: none;
  padding-bottom: 10px; }
  @media screen and (max-width: 753px) {
    .com_timed_auction .full-width__filters-holder {
      display: none; } }

.com_timed_auction .top-filters-toggle {
  background: #f2f2f2;
  float: left;
  width: 100%; }

.com_timed_auction .mobile-filter-toggle {
  background: #c81618;
  display: none;
  float: left;
  width: 100%; }
  .com_timed_auction .mobile-filter-toggle a {
    color: #ffffff;
    float: left;
    font-weight: 500;
    padding: 5px 0 8px 15px;
    text-decoration: none;
    display: none;
    width: 50%; }
    @media screen and (max-width: 449px) {
      .com_timed_auction .mobile-filter-toggle a {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 16px; } }

/*================================================================================
$ LAYOUT
================================================================================*/
body.fixed-auction-controls-js .filter-section {
  left: 50%;
  margin: 0;
  position: fixed;
  z-index: 100;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%); }

.filter-section {
  background: #ffffff;
  border-top: 1px solid #cccccc;
  margin: 20px auto 0;
  max-width: 960px; }
  .filter-section .mobile-filter-toggle {
    background: #c81618;
    display: none;
    float: left;
    width: 100%; }
    .filter-section .mobile-filter-toggle a {
      color: #ffffff;
      float: left;
      font-weight: 500;
      padding: 5px 0 8px 15px;
      text-decoration: none;
      width: 50%; }
      @media screen and (max-width: 449px) {
        .filter-section .mobile-filter-toggle a {
          text-transform: uppercase;
          font-weight: 700;
          font-size: 16px; } }
  .filter-section > .filtersContainer {
    height: 29px; }
    .filter-section > .filtersContainer .filtersBtn {
      background-color: #c81618;
      color: #ffffff;
      z-index: 200;
      margin-top: -1px; }
      @media screen and (max-width: 952px) {
        .filter-section > .filtersContainer .filtersBtn {
          margin-left: 20px; } }
      .filter-section > .filtersContainer .filtersBtn:hover {
        background-color: #ffffff;
        color: #c81618;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
      .filter-section > .filtersContainer .filtersBtn:active {
        background-color: #c81618;
        color: #ffffff;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
      .filter-section > .filtersContainer .filtersBtn:focus {
        background-color: #c81618;
        color: #ffffff;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
  .filter-section > .filtersTimedContainer {
    float: left;
    width: 100%;
    margin-top: 10px;
    height: 29px; }
    .filter-section > .filtersTimedContainer .filtersBtn {
      background-color: #c81618;
      color: #ffffff;
      z-index: 200;
      margin-top: -1px; }
      @media screen and (max-width: 952px) {
        .filter-section > .filtersTimedContainer .filtersBtn {
          margin-left: 20px; } }
      .filter-section > .filtersTimedContainer .filtersBtn:hover {
        background-color: #ffffff;
        color: #c81618;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
      .filter-section > .filtersTimedContainer .filtersBtn:active {
        background-color: #c81618;
        color: #ffffff;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
      .filter-section > .filtersTimedContainer .filtersBtn:focus {
        background-color: #c81618;
        color: #ffffff;
        text-decoration: none;
        -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
        transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }

.full-width__filters-holder {
  background: transparent;
  width: 100%;
  z-index: 100;
  display: none;
  padding-bottom: 10px; }
  @media screen and (max-width: 753px) {
    .full-width__filters-holder {
      display: none; } }
  .full-width__filters-holder .full-width__top-filters, .full-width__filters-holder .full-width__bottom-filters-inside {
    margin: 0 auto;
    max-width: 960px;
    width: 100%; }
  .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page {
    width: 21%;
    display: inline-block; }
    @media screen and (max-width: 814px) {
      .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page {
        width: 33%;
        padding: 10px 15px; } }
    @media screen and (max-width: 649px) {
      .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page {
        width: 50%; } }
    @media screen and (max-width: 449px) {
      .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page {
        width: 100%; } }
    .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page .lot_header_category_sort_by_new {
      padding: 7px 0px;
      width: 50%;
      float: left; }
      @media screen and (max-width: 649px) {
        .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page .lot_header_category_sort_by_new {
          width: 35%; } }
      @media screen and (max-width: 449px) {
        .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page .lot_header_category_sort_by_new {
          width: 25%; } }
    .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page form {
      width: 50%;
      float: left; }
    .full-width__filters-holder .full-width__bottom-filters-inside #lots-per-page #limit {
      padding: 7px 0;
      background-position-x: 30px; }
  .full-width__filters-holder .full-width__bottom-filters {
    background-color: #f2f2f2;
    max-height: 0px;
    max-width: 960px;
    padding-bottom: 5px;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out 0s;
    -moz-transition: max-height 0.5s ease-in-out 0s;
    -ms-transition: max-height 0.5s ease-in-out 0s;
    -o-transition: max-height 0.5s ease-in-out 0s;
    transition: max-height 0.5s ease-in-out 0s; }
    .full-width__filters-holder .full-width__bottom-filters.triggered {
      max-height: 300px; }

.archives {
  display: block; }

.no_results {
  padding-top: 20px; }

/*================================================================================
$ TOP FILTERS
================================================================================*/
.full-width__top-filters, .full-width__bottom-filters {
  padding: 10px 20px; }
  @media screen and (max-width: 419px) {
    .full-width__top-filters, .full-width__bottom-filters {
      padding: 10px; } }
  .full-width__top-filters h2, .full-width__bottom-filters h2 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
    text-align: center;
    text-transform: capitalize; }

@-moz-document url-prefix() {
  .full-width__top-filters h2, .full-width__bottom-filters h2 {
    margin-bottom: 5px; }
    @media screen and (max-width: 699px) {
      .full-width__top-filters h2, .full-width__bottom-filters h2 {
        margin-bottom: 0px; } } }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .full-width__top-filters h2, .full-width__bottom-filters h2 {
      margin-bottom: 12px; } }
  @media screen and (-ms-high-contrast: active) and (max-width: 699px), screen and (-ms-high-contrast: none) and (max-width: 699px) {
    .full-width__top-filters h2, .full-width__bottom-filters h2 {
      margin-bottom: 5px; } }
  .full-width__top-filters .filter, .full-width__bottom-filters .filter {
    float: left;
    min-height: 40px;
    padding: 5px 0; }
    @media screen and (max-width: 699px) {
      .full-width__top-filters .filter, .full-width__bottom-filters .filter {
        min-height: 54px; } }
    @media screen and (max-width: 599px) {
      .full-width__top-filters .filter, .full-width__bottom-filters .filter {
        min-height: 40px; } }
  .full-width__top-filters select, .full-width__bottom-filters select {
    background-color: transparent;
    background-image: url(../images/filter-down-arrow.png) !important;
    background-size: 9px;
    border: medium none;
    box-shadow: none;
    color: #4D4D4D;
    display: inline-block;
    font-size: 14px;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-weight: 300;
    margin: 0 auto;
    padding: 4px 20px 4px 0;
    text-align: center;
    text-transform: capitalize;
    width: 70%; }
    @media screen and (max-width: 959px) {
      .full-width__top-filters select, .full-width__bottom-filters select {
        width: 60%; } }
    @media screen and (max-width: 449px) {
      .full-width__top-filters select, .full-width__bottom-filters select {
        width: 70%; } }
    .full-width__top-filters select option, .full-width__bottom-filters select option {
      padding: 0; }
  .full-width__top-filters input[type="text"], .full-width__bottom-filters input[type="text"] {
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 0; }
    @media screen and (max-width: 959px) {
      .full-width__top-filters input[type="text"], .full-width__bottom-filters input[type="text"] {
        font-size: 11px; } }
  .full-width__top-filters .clear-filters-btn, .full-width__bottom-filters .clear-filters-btn {
    float: right; }

/*================================================================================
$ HIDE/SHOW TOGGLE
================================================================================*/
.full-width__top-filters .top-filters-toggle {
  background: #f2f2f2;
  float: left;
  width: 100%; }
  .full-width__top-filters .top-filters-toggle a {
    float: left;
    font-weight: 500;
    padding: 5px 0 5px 15px;
    text-decoration: none;
    width: 50%; }
    @media screen and (max-width: 699px) {
      .full-width__top-filters .top-filters-toggle a {
        width: 40%; } }
    @media screen and (max-width: 599px) {
      .full-width__top-filters .top-filters-toggle a {
        width: auto; } }

/*================================================================================
$ SUBMIT BUTTONS
================================================================================*/
.full-width__filters-holder .filters-buttons {
  float: right;
  min-height: 0;
  padding: 4px 15px 2px;
  text-align: right;
  width: 50%; }
  @media screen and (max-width: 699px) {
    .full-width__filters-holder .filters-buttons {
      width: auto; } }
  .full-width__filters-holder .filters-buttons input, .full-width__filters-holder .filters-buttons a {
    color: #c81618;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 3px;
    width: auto; }
    @media screen and (max-width: 959px) {
      .full-width__filters-holder .filters-buttons input, .full-width__filters-holder .filters-buttons a {
        font-size: 14px; } }
  .full-width__filters-holder .filters-buttons a {
    float: none;
    margin-left: 10px; }
    @media screen and (max-width: 599px) {
      .full-width__filters-holder .filters-buttons a {
        float: right; } }

/*================================================================================
$ VIEW BY
================================================================================*/
.full-width__top-filters .view-type {
  float: left;
  padding-left: 15px;
  text-align: left;
  width: 18%; }
  @media screen and (max-width: 959px) {
    .full-width__top-filters .view-type {
      padding-top: 15px; } }
  @media screen and (max-width: 749px) {
    .full-width__top-filters .view-type {
      text-align: left;
      width: 22%; } }
  .full-width__top-filters .view-type h2 {
    display: inline-block; }
  .full-width__top-filters .view-type ul {
    display: inline-block;
    margin-bottom: 0; }
    .full-width__top-filters .view-type ul .grid img {
      width: 19px !important; }
  .full-width__top-filters .view-type li {
    display: inline-block;
    line-height: 1; }
  .full-width__top-filters .view-type a {
    display: inline-block;
    margin: 0;
    padding: 3px;
    position: relative;
    top: 3px; }
  .full-width__top-filters .view-type img {
    width: 20px; }

/*================================================================================
$ ESTIMATE
================================================================================*/
.full-width__top-filters .estimate-filter {
  float: left;
  position: relative;
  width: 38%; }
  @media screen and (max-width: 959px) {
    .full-width__top-filters .estimate-filter {
      width: 27%; } }
  @media screen and (max-width: 749px) {
    .full-width__top-filters .estimate-filter {
      padding-left: 20px;
      width: 35%; } }
  @media screen and (max-width: 599px) {
    .full-width__top-filters .estimate-filter {
      padding-left: 50px;
      width: 75%; } }
  @media screen and (max-width: 574px) {
    .full-width__top-filters .estimate-filter {
      padding-top: 15px; } }
  @media screen and (max-width: 339px) {
    .full-width__top-filters .estimate-filter {
      padding-left: 15px;
      width: 100%; } }
  .full-width__top-filters .estimate-filter h2 {
    display: inline-block; }
    @media screen and (max-width: 959px) {
      .full-width__top-filters .estimate-filter h2 {
        text-align: left;
        width: 100%; } }
  .full-width__top-filters .estimate-filter input {
    color: #4D4D4D; }
  .full-width__top-filters .estimate-filter .slider-wrapper {
    display: inline-block;
    max-width: 225px;
    position: relative;
    top: 5px;
    width: 225px; }
    .full-width__top-filters .estimate-filter .slider-wrapper .slider-low-estimate {
      float: left;
      width: 50%; }
      .full-width__top-filters .estimate-filter .slider-wrapper .slider-low-estimate input {
        font-size: 12px;
        text-align: left; }
    .full-width__top-filters .estimate-filter .slider-wrapper #slider-range {
      background-image: none !important;
      background-color: #c81618;
      height: 2px !important;
      left: 26%;
      margin: 0 10px;
      position: absolute;
      width: 29%;
      top: 50%;
      z-index: 1; }
      .full-width__top-filters .estimate-filter .slider-wrapper #slider-range .ui-slider-range {
        display: none !important; }
      .full-width__top-filters .estimate-filter .slider-wrapper #slider-range .ui-state-default {
        background-image: url(/images/estimate-arrow.png) !important;
        background-repeat: no-repeat;
        background-size: 50%;
        background-color: transparent !important;
        background-position: 50% 15% !important;
        border: none !important;
        z-index: 2; }
  .full-width__top-filters .estimate-filter .slider-high-estimate {
    float: right;
    text-align: right;
    width: auto; }
    .full-width__top-filters .estimate-filter .slider-high-estimate input {
      text-align: right; }
  .full-width__top-filters .estimate-filter .slider-high-estimate #low-estimate-symbol, .full-width__top-filters .estimate-filter .slider-high-estimate #high-estimate-symbol, .full-width__top-filters .estimate-filter .slider-low-estimate #low-estimate-symbol, .full-width__top-filters .estimate-filter .slider-low-estimate #high-estimate-symbol {
    font-size: 12px;
    float: none;
    line-height: 1.5;
    width: auto; }
  .full-width__top-filters .estimate-filter .slider-high-estimate input, .full-width__top-filters .estimate-filter .slider-low-estimate input {
    border: none;
    font-size: 12px;
    padding: 0 !important;
    margin-left: -4px;
    max-width: 60px;
    text-align: left;
    width: auto; }

.full-width__top-filters .min-ammount, .full-width__top-filters .max-ammount {
  float: left; }
  .full-width__top-filters .min-ammount p, .full-width__top-filters .max-ammount p {
    float: left;
    font-size: 12px;
    margin: 4px 0 0;
    text-transform: capitalize; }
    @media screen and (max-width: 859px) {
      .full-width__top-filters .min-ammount p, .full-width__top-filters .max-ammount p {
        font-size: 11px;
        margin: 7px 0 0; } }
  .full-width__top-filters .min-ammount input, .full-width__top-filters .max-ammount input {
    float: left;
    font-size: 12px;
    line-height: 1;
    margin-left: 5%;
    padding: 5px 5px 2px;
    width: 100%; }

.full-width__top-filters .min-ammount {
  width: 45%; }
  .full-width__top-filters .min-ammount p {
    width: 15%; }
  .full-width__top-filters .min-ammount input {
    max-width: 80%; }

.full-width__top-filters .max-ammount {
  padding-left: 10px;
  width: 55%; }
  .full-width__top-filters .max-ammount p {
    width: 25%; }
  .full-width__top-filters .max-ammount input {
    max-width: 70%; }

.full-width__top-filters .top-controls {
  border-bottom: 1px solid #cccccc;
  float: left;
  width: 100%; }

.full-width__top-filters h2 {
  font-size: 14px !important;
  font-weight: 400; }

/*================================================================================
$ SORT BY
================================================================================*/
.full-width__top-filters .sort-by {
  float: left;
  width: 18.5%; }
  @media screen and (max-width: 699px) {
    .full-width__top-filters .sort-by {
      clear: left;
      width: 30%; } }
  @media screen and (max-width: 649px) {
    .full-width__top-filters .sort-by {
      padding-left: 15px;
      width: 50%; } }

/*================================================================================
$ LOTS PER PAGE
================================================================================*/
.full-width__top-filters .lots-per-page {
  float: left;
  width: 25%; }
  @media screen and (max-width: 699px) {
    .full-width__top-filters .lots-per-page {
      width: 30%; } }
  @media screen and (max-width: 499px) {
    .full-width__top-filters .lots-per-page {
      width: 50%; } }

/*================================================================================
$ SEARCH
================================================================================*/
.full-width__top-filters .search-holder {
  float: right;
  min-width: 185px;
  max-width: 185px;
  padding-right: 15px;
  width: 19%; }
  @media screen and (max-width: 959px) {
    .full-width__top-filters .search-holder {
      padding-top: 15px; } }
  @media screen and (max-width: 599px) {
    .full-width__top-filters .search-holder {
      padding-top: 0px; } }
  @media screen and (max-width: 699px) {
    .full-width__top-filters .search-holder {
      width: 40%; } }
  @media screen and (max-width: 499px) {
    .full-width__top-filters .search-holder {
      width: 100%; } }
  .full-width__top-filters .search-holder form {
    border: 1px solid #e6e6e6;
    margin-top: 5px !important;
    padding: 0 5px; }
  .full-width__top-filters .search-holder input {
    background-image: url(../images/red-right-arrow.png);
    background-position: 95% center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    border: none;
    font-size: 14px;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    width: 100%; }

/*================================================================================
$ JUMP TO LOT
================================================================================*/
.full-width__filters-holder #jump-to-lot {
  padding-left: 15px;
  width: 225px; }
  @media screen and (max-width: 814px) {
    .full-width__filters-holder #jump-to-lot {
      width: 100%;
      padding: 0 15px;
      box-sizing: border-box; }
      .full-width__filters-holder #jump-to-lot input {
        width: 100% !important; } }
  .full-width__filters-holder #jump-to-lot input {
    background-image: url(../images/red-right-arrow.png);
    background-position: 95% center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    border: 1px solid #e6e6e6;
    font-size: 14px;
    line-height: 2.5;
    margin: 0;
    padding: 0 0 0 15px;
    text-transform: capitalize;
    width: 200px; }
    @media screen and (max-width: 499px) {
      .full-width__filters-holder #jump-to-lot input {
        width: 170px; } }

/*================================================================================
$ CURRENCY CONVERTER
================================================================================*/
.full-width__filters-holder #currency-converter {
  line-height: 32px;
  width: 135px; }
  @media screen and (max-width: 959px) {
    .full-width__filters-holder #currency-converter {
      width: 15%; } }
  @media screen and (max-width: 814px) {
    .full-width__filters-holder #currency-converter {
      width: 33%;
      padding: 10px 15px; } }
  @media screen and (max-width: 649px) {
    .full-width__filters-holder #currency-converter {
      width: 50%; } }
  @media screen and (max-width: 499px) {
    .full-width__filters-holder #currency-converter {
      width: 100%; } }
  .full-width__filters-holder #currency-converter h2 {
    display: inline-block;
    font-weight: 500;
    padding-right: 5px; }
  .full-width__filters-holder #currency-converter select {
    display: inline-block;
    width: auto; }
  @media screen and (max-width: 599px) {
    .full-width__filters-holder #currency-converter {
      width: 50%; } }
  @media screen and (max-width: 449px) {
    .full-width__filters-holder #currency-converter {
      width: 100%; } }

/*================================================================================
$ CATEGORIES
================================================================================*/
.full-width__filters-holder .categories-filter {
  width: 23%; }
  @media screen and (max-width: 959px) {
    .full-width__filters-holder .categories-filter {
      padding-left: 5%;
      width: 30%; } }
  @media screen and (max-width: 749px) {
    .full-width__filters-holder .categories-filter {
      padding-left: 50px;
      width: 43%; } }
  @media screen and (max-width: 599px) {
    .full-width__filters-holder .categories-filter {
      clear: left;
      padding-left: 15px; } }
  .full-width__filters-holder .categories-filter select {
    padding-left: 5px;
    width: 57%; }
    @media screen and (max-width: 449px) {
      .full-width__filters-holder .categories-filter select {
        padding-left: 0; } }
  .full-width__filters-holder .categories-filter h2 {
    display: inline-block;
    padding-top: 5px; }
  @media screen and (max-width: 599px) {
    .full-width__filters-holder .categories-filter {
      width: 100%; } }

/*================================================================================
$ SORT BY
================================================================================*/
.full-width__filters-holder #sort-by {
  line-height: 32px;
  width: 28%; }
  @media screen and (max-width: 959px) {
    .full-width__filters-holder #sort-by {
      width: 25%;
      padding: 10px 15px; } }
  @media screen and (max-width: 814px) {
    .full-width__filters-holder #sort-by {
      width: 33%; } }
  @media screen and (max-width: 499px) {
    .full-width__filters-holder #sort-by {
      width: 100%; } }
  .full-width__filters-holder #sort-by h2 {
    display: inline-block;
    font-weight: 500;
    padding-right: 5px; }
  @media screen and (max-width: 649px) {
    .full-width__filters-holder #sort-by {
      padding-left: 15px;
      width: 50%; } }
  @media screen and (max-width: 449px) {
    .full-width__filters-holder #sort-by {
      width: 100%; } }

/*================================================================================
$ ADVANCED SEARCH
================================================================================*/
.full-width__filters-holder .advance-search-link {
  float: left;
  line-height: 43px;
  padding-right: 10px;
  text-align: left;
  width: auto; }
  @media screen and (max-width: 814px) {
    .full-width__filters-holder .advance-search-link {
      text-align: center;
      width: 100%; } }
  @media screen and (max-width: 649px) {
    .full-width__filters-holder .advance-search-link {
      width: 50%;
      padding-left: 15px;
      text-align: left;
      padding-top: 5px; } }
  @media screen and (max-width: 449px) {
    .full-width__filters-holder .advance-search-link {
      width: 100%; } }
  .full-width__filters-holder .advance-search-link a {
    color: #c81618;
    text-decoration: none; }
  @media screen and (max-width: 599px) {
    .full-width__filters-holder .advance-search-link {
      width: 50%; } }

body.site.com_auction.search .filter-section .full-width__filters-holder #sort-by {
  width: 25%; }
  @media screen and (max-width: 449px) {
    body.site.com_auction.search .filter-section .full-width__filters-holder #sort-by {
      width: 100%; } }

body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page {
  width: 18%; }
  @media screen and (max-width: 954px) {
    body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page {
      width: 25%; } }
  @media screen and (max-width: 449px) {
    body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page {
      width: 100%; } }
  body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page .lot_header_category_sort_by_new {
    width: 65%;
    font-weight: 500; }
    @media screen and (max-width: 449px) {
      body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page .lot_header_category_sort_by_new {
        width: 25%; } }
  body.site.com_auction.search .filter-section .full-width__filters-holder #lots-per-page > form {
    width: 35%; }

body.site.com_auction.search .filter-section .full-width__filters-holder .advance-search-link {
  width: 19%;
  padding-top: 9px; }
  @media screen and (max-width: 954px) {
    body.site.com_auction.search .filter-section .full-width__filters-holder .advance-search-link {
      padding-top: 9px;
      width: 100%;
      top: 0;
      left: 0;
      padding: 0 10px; } }
  body.site.com_auction.search .filter-section .full-width__filters-holder .advance-search-link > a {
    height: auto;
    background-color: #c81618;
    float: left;
    width: 100%;
    z-index: 9999;
    top: 9px;
    left: -13px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    background-color: #c81618 !important;
    border: 1px solid #c81618 !important;
    color: white;
    box-shadow: 0 0 0 0 rgba(200, 22, 24, 0.7);
    background-color: #c81618;
    cursor: pointer; }
  body.site.com_auction.search .filter-section .full-width__filters-holder .advance-search-link.pulse > a {
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -o-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1); }

/* ====== CATALOGUE - GRID VIEW ====== */
/* ======
CATALOGUE - GRID VIEW
	- General Layout
	- Grid Lot Images
	- Grid Lot Description
	- Grid Lot Buttons
	- Grid Lot Pricing
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.gridview .footer-hold {
  display: none; }

.ul-grid {
  margin: 60px 0 0 0;
  width: 100%; }
  .ul-grid .lot-item {
    display: inline-block;
    float: left;
    padding: 10px 15px 0 15px;
    text-align: center;
    vertical-align: top;
    width: 20%; }
    @media screen and (min-width: 0) and (max-width: 899px) {
      .ul-grid .lot-item {
        padding: 10px 10px;
        width: 50%;
        min-height: 415px; } }

/*================================================================================
$ GRID LOT IMAGES
================================================================================*/
.ul-grid .catalogue-view__img {
  display: inline-block;
  height: 210px;
  margin-bottom: 12px;
  max-width: 210px;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 2; }
  .ul-grid .catalogue-view__img .auction-won {
    background-color: #41a940;
    display: block;
    left: 0;
    min-width: 80px;
    padding: 2px 20px;
    position: absolute;
    text-align: center;
    top: 0; }
  .ul-grid .catalogue-view__img .auction-lost {
    background-color: #C1272D;
    display: block;
    left: 0;
    min-width: 80px;
    position: absolute;
    text-align: center;
    top: 0; }
  .ul-grid .catalogue-view__img span {
    color: #ffffff;
    text-transform: uppercase; }
  @media screen and (max-width: 549px) {
    .ul-grid .catalogue-view__img {
      height: 170px;
      max-width: 170px; } }
  @media screen and (max-width: 479px) {
    .ul-grid .catalogue-view__img {
      height: 150px;
      max-width: 150px; } }
  .ul-grid .catalogue-view__img .lot-bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%; }
    .ul-grid .catalogue-view__img .lot-bg-img a {
      display: block;
      height: 100%;
      text-decoration: none;
      width: 100%; }

/*================================================================================
$ GRID LOT DESCRIPTION
================================================================================*/
.ul-grid .catalogue-view__details {
  min-height: 150px;
  text-align: left;
  width: 100%;
  position: relative; }
  .ul-grid .catalogue-view__details .lot-num {
    display: inline-block; }
    .ul-grid .catalogue-view__details .lot-num h2 {
      text-align: left; }
      .ul-grid .catalogue-view__details .lot-num h2 a {
        color: #4D4D4D;
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
  .ul-grid .catalogue-view__details .lot-name {
    min-height: 94px;
    max-height: 94px; }
    .ul-grid .catalogue-view__details .lot-name p {
      text-align: center; }
    .ul-grid .catalogue-view__details .lot-name span, .ul-grid .catalogue-view__details .lot-name p {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
      line-height: 1.4 !important;
      font-size: 14px !important;
      font-weight: 400; }
    .ul-grid .catalogue-view__details .lot-name i {
      font-style: italic; }
    .ul-grid .catalogue-view__details .lot-name b {
      font-weight: 600; }
    .ul-grid .catalogue-view__details .lot-name .attr-interest {
      font-weight: bold; }
  .ul-grid .catalogue-view__details .lot-estimate p {
    font-size: 13px;
    font-weight: 400;
    text-align: center; }
  .ul-grid .catalogue-view__details .lot-bid-amount p {
    font-size: 13px !important; }
  .ul-grid .catalogue-view__details h3, .ul-grid .catalogue-view__details h3 a {
    color: #4D4D4D;
    display: block;
    font-size: 15px;
    margin-bottom: 5px; }
    @media screen and (max-width: 599px) {
      .ul-grid .catalogue-view__details h3, .ul-grid .catalogue-view__details h3 a {
        display: inherit;
        min-height: 0; } }
  .ul-grid .catalogue-view__details h4, .ul-grid .catalogue-view__details h4 a {
    display: block;
    font-size: 12px;
    margin-bottom: 5px; }
    @media screen and (max-width: 599px) {
      .ul-grid .catalogue-view__details h4, .ul-grid .catalogue-view__details h4 a {
        display: inherit;
        min-height: 0; } }
  .ul-grid .catalogue-view__details h2 {
    font-size: 15px; }

@media screen and (max-width: 899px) {
  .ul-grid .lot-actions a, .ul-grid .lot-actions p {
    max-width: none !important;
    min-width: 0; } }

.ul-grid .lot-actions .add-wishlist-btn {
  background-color: transparent;
  border: none;
  color: #4D4D4D; }

/*================================================================================
$ GRID LOT BUTTONS
================================================================================*/
.ul-grid .catalogue-view__details .import-duty {
  position: absolute;
  top: 3px;
  right: 45px; }

.ul-grid .catalogue-view__details .lot-actions .cancel-bid-btn {
  padding: 3px 5px; }

.ul-grid .catalogue-view__details .lot-actions .bidding-closed-charges {
  display: block; }
  @media screen and (min-width: 600px) and (max-width: 119999px) {
    .ul-grid .catalogue-view__details .lot-actions .bidding-closed-charges {
      color: #ffffff; } }

@media screen and (max-width: 599px) {
  .ul-grid .catalogue-view__details .lot-actions p {
    margin: 0; } }

/*================================================================================
$ GRID / LIST / LOT DETAIL VIEWS :: IMPORTY DUTY HOVER
================================================================================*/
.catalogue-view__details .import-duty .tooltip-hover {
  border: 1px solid #4d4d4d;
  border-radius: 3px;
  color: #4d4d4d;
  display: none;
  float: right;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 5px;
  width: 85%;
  box-shadow: 0 0 20px 0 #929292;
  background: white;
  position: absolute;
  width: 150px;
  z-index: 99999; }

/* ====== CATALOGUE - LIST VIEW // ARCHIVE ====== */
/* ======
CATALOGUE - LIST VIEW
	- General Layout
	- List Lot Images
	- List Lot Description
	- List Lot Buttons
====== */
.listview .full-article-image {
  margin-bottom: 0; }
  @media screen and (max-width: 599px) {
    .listview .full-article-image {
      display: none; } }

.listview .catalogue-list-view {
  max-width: 300px; }
  .listview .catalogue-list-view .catalogue-view__img img {
    max-height: 200px;
    max-width: 200px; }

/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.ul-list {
  margin-top: 60px;
  text-align: center; }
  .ul-list .lot-item {
    border: none;
    float: left;
    list-style: none;
    padding: 30px 0 0 0;
    text-align: left;
    width: 100%; }
    .ul-list .lot-item:first-child {
      border-top: none; }
    .ul-list .lot-item .lot-item__inner {
      margin: 0 auto;
      max-width: 960px;
      min-height: 200px;
      border-bottom: 1px solid #3c3c3b;
      padding-bottom: 15px; }
    .ul-list .lot-item .catalogue-view__img {
      float: left;
      width: 30%;
      position: relative; }
      .ul-list .lot-item .catalogue-view__img .auction-won {
        background-color: #41a940;
        display: block;
        left: 0;
        min-width: 80px;
        padding: 2px 20px;
        position: absolute;
        text-align: center;
        top: 0; }
      .ul-list .lot-item .catalogue-view__img .auction-lost {
        background-color: #C1272D;
        display: block;
        left: 0;
        min-width: 80px;
        position: absolute;
        text-align: center;
        top: 0; }
      .ul-list .lot-item .catalogue-view__img span {
        color: #ffffff;
        text-transform: uppercase; }
      @media screen and (max-width: 749px) {
        .ul-list .lot-item .catalogue-view__img {
          float: none;
          width: 100%; } }
    .ul-list .lot-item .catalogue-view__details {
      float: left;
      padding-left: 10px;
      width: 70%;
      text-align: left; }
      @media screen and (max-width: 749px) {
        .ul-list .lot-item .catalogue-view__details {
          float: left;
          padding-left: 0;
          width: 100%; } }
      .ul-list .lot-item .catalogue-view__details.no-images {
        width: 100%; }

/*================================================================================
$ LIST LOT IMAGES
================================================================================*/
.ul-list .lot-item .catalogue-view__img {
  background-color: #ffffff;
  min-height: 10px;
  position: relative;
  text-align: center; }
  .ul-list .lot-item .catalogue-view__img a {
    display: block;
    width: 100%; }

/*================================================================================
$ LIST LOT DESCRIPTION
================================================================================*/
.ul-list .lot-item .catalogue-view__details__left {
  float: left;
  margin-left: 10px;
  margin-top: 0;
  padding-right: 10px;
  width: 60%;
  position: relative; }
  .ul-list .lot-item .catalogue-view__details__left .import-duty {
    position: absolute;
    top: 3px;
    right: 45px; }
  @media screen and (max-width: 959px) {
    .ul-list .lot-item .catalogue-view__details__left {
      float: left;
      margin-left: 0;
      padding-top: 0;
      text-align: left;
      width: 100%; } }
  @media screen and (max-width: 749px) {
    .ul-list .lot-item .catalogue-view__details__left {
      text-align: center; } }
  .ul-list .lot-item .catalogue-view__details__left .lot-num h2 a {
    color: #4D4D4D;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px; }

@media screen and (max-width: 749px) {
  .ul-list .lot-item .lot-name, .ul-list .lot-item .lot-estimate {
    min-height: 0;
    margin: 0 auto 10px;
    max-width: 250px; } }

.ul-list .lot-item .lot-name h2 {
  font-size: 15px; }

.ul-list .lot-item .lot-name .attr-interest {
  font-weight: bold; }

.ul-list .lot-item .lot-name span {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important; }

.ul-list .lot-item .lot-name i {
  font-style: italic; }

.ul-list .lot-item .lot-name b {
  font-weight: 600; }

/*================================================================================
$ LIST LOT BUTTONS
================================================================================*/
.ul-list .bid-live-js {
  min-width: 175px; }

.ul-list li.lot-item .catalogue-view__details__right {
  float: right;
  width: 35%; }
  @media screen and (max-width: 959px) {
    .ul-list li.lot-item .catalogue-view__details__right {
      float: left;
      width: 100%; } }
  .ul-list li.lot-item .catalogue-view__details__right .bid-amount .amount {
    font-weight: 300; }
  .ul-list li.lot-item .catalogue-view__details__right p {
    margin: 0;
    width: 100%; }
  .ul-list li.lot-item .catalogue-view__details__right .remind-me-btn {
    margin-top: 10px; }

.ul-list li.lot-item .lot-actions {
  min-height: 0; }
  .ul-list li.lot-item .lot-actions > div {
    float: left;
    text-align: left;
    width: 100% !important; }
    @media screen and (max-width: 749px) {
      .ul-list li.lot-item .lot-actions > div {
        text-align: center; } }
    .ul-list li.lot-item .lot-actions > div a {
      float: right;
      max-width: 175px; }
      @media screen and (max-width: 959px) {
        .ul-list li.lot-item .lot-actions > div a {
          float: left; } }
      @media screen and (max-width: 749px) {
        .ul-list li.lot-item .lot-actions > div a {
          float: none; } }
  .ul-list li.lot-item .lot-actions .add-wishlist-btn {
    background-color: transparent;
    border: none;
    color: #4D4D4D; }
    .ul-list li.lot-item .lot-actions .add-wishlist-btn:hover {
      text-decoration: underline; }

/* ====== CATALOGUE - PAGINATION ====== */
/* ======
CATALOGUE - PAGINATION
	- General Layout
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.catalogue-pagination-holder {
  display: inline-block;
  padding: 25px 10px;
  width: 100%; }
  @media screen and (max-width: 769px) {
    .catalogue-pagination-holder {
      padding: 25px 0;
      margin-top: 15px; } }
  @media screen and (max-width: 599px) {
    .catalogue-pagination-holder {
      padding: 10px;
      padding-top: 40px; } }

.full-width__filters__pagination__wrapper {
  margin: 0;
  padding: 0; }
  .full-width__filters__pagination__wrapper > ul.pagination {
    list-style: none;
    margin: 0;
    text-align: center; }
  .full-width__filters__pagination__wrapper .next_text .paginate {
    display: none; }
  .full-width__filters__pagination__wrapper li {
    display: inline-block;
    line-height: 1.2;
    min-width: 35px;
    text-align: center;
    vertical-align: middle; }
    @media screen and (max-width: 699px) {
      .full-width__filters__pagination__wrapper li {
        min-width: 25px; } }
    .full-width__filters__pagination__wrapper li.previous, .full-width__filters__pagination__wrapper li.next {
      min-width: 70px; }
      .full-width__filters__pagination__wrapper li.previous:hover a, .full-width__filters__pagination__wrapper li.previous:hover span, .full-width__filters__pagination__wrapper li.previous:active a, .full-width__filters__pagination__wrapper li.previous:active span, .full-width__filters__pagination__wrapper li.previous:focus a, .full-width__filters__pagination__wrapper li.previous:focus span, .full-width__filters__pagination__wrapper li.next:hover a, .full-width__filters__pagination__wrapper li.next:hover span, .full-width__filters__pagination__wrapper li.next:active a, .full-width__filters__pagination__wrapper li.next:active span, .full-width__filters__pagination__wrapper li.next:focus a, .full-width__filters__pagination__wrapper li.next:focus span {
        text-decoration: none;
        font-weight: bold; }
    .full-width__filters__pagination__wrapper li a, .full-width__filters__pagination__wrapper li span {
      color: #4D4D4D;
      display: inline-block;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 15px;
      line-height: 1.2;
      text-align: center;
      text-decoration: none;
      padding: 5px 0;
      width: 100%; }
      @media screen and (max-width: 799px) {
        .full-width__filters__pagination__wrapper li a, .full-width__filters__pagination__wrapper li span {
          font-size: 15px; } }
      .full-width__filters__pagination__wrapper li a:hover, .full-width__filters__pagination__wrapper li a:active, .full-width__filters__pagination__wrapper li a:focus, .full-width__filters__pagination__wrapper li span:hover, .full-width__filters__pagination__wrapper li span:active, .full-width__filters__pagination__wrapper li span:focus {
        font-weight: bold; }
    .full-width__filters__pagination__wrapper li .pagination-arrows, .full-width__filters__pagination__wrapper li .pagination-arrows-text {
      padding: 0;
      vertical-align: middle;
      width: auto; }
    .full-width__filters__pagination__wrapper li .pagination-arrows {
      padding: 0 3px; }
    .full-width__filters__pagination__wrapper li .current {
      font-weight: bold; }

/* ====== CATALOGUE - TOP SECTION ====== */
/* ======
CATALOGUE - TOP SECTION
	- General Layout
	- Viewing Times Overlay
	- Back To Top
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.catalogue-details .buyers-remorse-notification {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  margin-top: 10px;
  display: none; }
  .catalogue-details .buyers-remorse-notification .buyers-remorse-inner {
    padding: 20px;
    position: relative;
    border-bottom: 3px solid #c81618;
    background-color: #f4f4f4;
    margin: 0 auto;
    width: 100%;
    max-width: 960px; }
    .catalogue-details .buyers-remorse-notification .buyers-remorse-inner p {
      float: left;
      width: 90%;
      max-width: 700px;
      font-size: 16px;
      margin-bottom: 0; }
      @media screen and (max-width: 599px) {
        .catalogue-details .buyers-remorse-notification .buyers-remorse-inner p {
          width: 85%; } }
    .catalogue-details .buyers-remorse-notification .buyers-remorse-inner a.close-remorse-overlay {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 16px; }

.catalogue-details .catalogue-details-holder {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
  width: 100%;
  clear: both; }
  @media screen and (max-width: 999px) {
    .catalogue-details .catalogue-details-holder {
      padding-left: 20px;
      padding-right: 20px; } }
  .catalogue-details .catalogue-details-holder .catalogue-details__inner {
    float: left;
    width: 100%;
    text-align: left;
    position: relative; }
    .catalogue-details .catalogue-details-holder .catalogue-details__inner p {
      color: #4D4D4D;
      font-size: 16px;
      font-weight: 300;
      margin-bottom: 5px;
      clear: both; }
    .catalogue-details .catalogue-details-holder .catalogue-details__inner h3 {
      color: #c81618;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
    .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter {
      cursor: pointer;
      margin: 0; }
      .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter h6 {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-size: 15px; }
        .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter h6 span {
          color: #c81618; }
      .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter p {
        display: none; }
        .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter p span {
          color: #4D4D4D; }
        .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter p.active {
          display: block;
          width: 70%; }
          @media screen and (max-width: 949px) {
            .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter p.active {
              width: 100%;
              padding-bottom: 10px; } }
          @media screen and (max-width: 799px) {
            .catalogue-details .catalogue-details-holder .catalogue-details__inner .viewing-times-canter p.active {
              padding-bottom: 0px; } }
  .catalogue-details .catalogue-details-holder .catalogue-details__title {
    float: left;
    color: #666666;
    margin-bottom: 0;
    max-width: 750px;
    padding-top: 10px; }
  .catalogue-details .catalogue-details-holder .catalogue-details__vtimes {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase; }
    .catalogue-details .catalogue-details-holder .catalogue-details__vtimes a {
      display: inline-block;
      font-weight: normal;
      text-decoration: none;
      text-transform: capitalize !important; }
      .catalogue-details .catalogue-details-holder .catalogue-details__vtimes a span {
        color: #c81618; }
  .catalogue-details .catalogue-details-holder .catalogue-details__buttons {
    bottom: 10px;
    position: absolute;
    right: 0; }
    @media screen and (max-width: 959px) {
      .catalogue-details .catalogue-details-holder .catalogue-details__buttons {
        position: relative;
        width: 100%;
        margin-top: 15px; } }
    .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div {
      display: inline-block;
      vertical-align: middle;
      text-align: right;
      float: right;
      width: 100%; }
      @media screen and (max-width: 959px) {
        .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div {
          float: left;
          width: auto;
          margin-right: 10px; } }
      @media screen and (max-width: 599px) {
        .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div {
          width: 100%;
          margin-right: 0; } }
      .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div.register-youtube_video-holder > a {
        text-align: center;
        margin-bottom: 10px;
        padding: 1px 10px 2px; }
        .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div.register-youtube_video-holder > a:hover span svg .st0 {
          fill: #c81618; }
        .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div.register-youtube_video-holder > a span {
          display: inline-block;
          vertical-align: middle; }
          .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div.register-youtube_video-holder > a span svg {
            width: 20px;
            position: relative;
            top: 1px; }
            .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div.register-youtube_video-holder > a span svg .st0 {
              fill: #ffffff;
              -webkit-transition: all 0.3s ease-in-out;
              -moz-transition: all 0.3s ease-in-out;
              -ms-transition: all 0.3s ease-in-out;
              -o-transition: all 0.3s ease-in-out;
              transition: all 0.3s ease-in-out; }
      .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div > a {
        display: inline-block;
        margin-bottom: 0;
        width: 200px; }
        @media screen and (max-width: 799px) {
          .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div > a {
            margin-bottom: 10px;
            margin-top: 20px; } }
        @media screen and (max-width: 599px) {
          .catalogue-details .catalogue-details-holder .catalogue-details__buttons > div > a {
            width: 100%; } }

.overlay-trigger-holder.show-overlay .overlay-container__wrapper.youtube-overlay {
  width: 100%;
  max-width: 960px; }

/*================================================================================
$ VIEWING TIMES OVERLAY
================================================================================*/
.vtimes-overlay__content {
  text-align: left; }
  .vtimes-overlay__content .vtimes__title {
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif !important;
    padding-left: 10px;
    width: 100% !important; }
  .vtimes-overlay__content .vtimes__list {
    margin: 0;
    padding-top: 0 !important; }
    .vtimes-overlay__content .vtimes__list > li {
      font-weight: 400;
      padding-bottom: 0 !important;
      width: 100% !important; }
  .vtimes-overlay__content .vtimes-overlay__buttons {
    float: left;
    margin-top: 20px;
    width: 100%; }
    .vtimes-overlay__content .vtimes-overlay__buttons button {
      margin-bottom: 0; }
    .vtimes-overlay__content .vtimes-overlay__buttons a {
      margin-bottom: 0; }

/*================================================================================
$ BACK TO TOP
================================================================================*/
#auction-holder .back-to-top {
  cursor: pointer;
  display: block;
  float: right;
  font-size: 15px;
  margin-right: 70px;
  margin-top: 8px;
  vertical-align: bottom; }

.lot-icons {
  position: relative;
  float: left;
  width: 100%; }
  .lot-icons .lot-icons--list {
    display: block;
    text-align: center;
    width: 100%; }
  .lot-icons .lot-icons--list__link {
    display: inline-block;
    float: none;
    margin: 0;
    margin-bottom: 3px;
    vertical-align: middle; }
    .lot-icons .lot-icons--list__link.fees > a {
      border-color: #4D4D4D;
      color: #4D4D4D; }
    .lot-icons .lot-icons--list__link > a {
      background-color: #ffffff;
      border: 1px solid #B2B2B2;
      border-radius: 3px;
      color: #B2B2B2;
      display: block;
      font-size: 12px;
      font-weight: bold;
      padding: 1px 6px;
      position: relative;
      text-decoration: none;
      text-transform: uppercase; }
      .lot-icons .lot-icons--list__link > a:hover, .lot-icons .lot-icons--list__link > a:active, .lot-icons .lot-icons--list__link > a:focus {
        border-color: #4D4D4D;
        color: #4D4D4D; }
        .lot-icons .lot-icons--list__link > a:hover > p, .lot-icons .lot-icons--list__link > a:active > p, .lot-icons .lot-icons--list__link > a:focus > p {
          display: block; }
    .lot-icons .lot-icons--list__link img {
      display: block;
      height: 22px; }
    .lot-icons .lot-icons--list__link p {
      background-color: #ffffff;
      border: 1px solid #4D4D4D;
      box-shadow: 0 0 15px rgba(77, 77, 77, 0.5);
      color: #4D4D4D;
      display: none;
      font-size: 13px;
      font-weight: normal;
      left: 50%;
      position: absolute;
      padding: 10px;
      text-transform: none;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      top: 25px;
      width: 225px;
      z-index: 10; }
      .lot-icons .lot-icons--list__link p.open {
        display: block; }
      @media screen and (max-width: 416px) {
        .lot-icons .lot-icons--list__link p {
          left: 70%; } }
      .lot-icons .lot-icons--list__link p span {
        font-style: italic; }

ul.ul-grid .lot-icons {
  min-height: 60px; }
  ul.ul-grid .lot-icons span {
    margin-top: 0; }

ul.ul-list .lot-icons {
  margin-top: 10px; }
  @media screen and (max-width: 959px) {
    ul.ul-list .lot-icons {
      margin: 15px 0; } }
  ul.ul-list .lot-icons .lot-icons--list {
    text-align: left; }
    @media screen and (max-width: 749px) {
      ul.ul-list .lot-icons .lot-icons--list {
        text-align: center; } }
    @media screen and (max-width: 416px) {
      ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a {
        background-color: #ffffff;
        border: 1px solid #B2B2B2;
        border-radius: 3px;
        color: #B2B2B2;
        display: block;
        font-size: 12px;
        font-weight: bold;
        padding: 1px 6px;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:hover, ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:active, ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:focus {
          border-color: #4D4D4D;
          color: #4D4D4D; }
          ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:hover > p, ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:active > p, ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link > a:focus > p {
            display: block; } }
    ul.ul-list .lot-icons .lot-icons--list .lot-icons--list__link.import-duty {
      position: static; }

body.lot_detail .lot-icons {
  margin-bottom: 10px;
  margin-top: 80px; }
  @media screen and (max-width: 599px) {
    body.lot_detail .lot-icons {
      margin: 15px 0; } }
  body.lot_detail .lot-icons .lot-icons--list {
    text-align: left; }
    @media screen and (max-width: 599px) {
      body.lot_detail .lot-icons .lot-icons--list {
        text-align: center; } }
    @media screen and (max-width: 416px) {
      body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a {
        background-color: #ffffff;
        border: 1px solid #B2B2B2;
        border-radius: 3px;
        color: #B2B2B2;
        display: block;
        font-size: 12px;
        font-weight: bold;
        padding: 1px 6px;
        position: relative;
        text-decoration: none;
        text-transform: uppercase; }
        body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:hover, body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:active, body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:focus {
          border-color: #4D4D4D;
          color: #4D4D4D; }
          body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:hover > p, body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:active > p, body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link > a:focus > p {
            display: block; } }
    body.lot_detail .lot-icons .lot-icons--list .lot-icons--list__link.import-duty {
      position: static; }

/*================================================================================
$ AUCTION / CALENDAR
================================================================================*/
/* ====== SALES CALENDAR ====== */
/* ======
SALES CALENDAR
	- General Calendar Styles
	- Date Filter
	- Calendar Filters
	- Calendar Auction Box
	- Sales Calendar Filter
	- GAP WIDGETS
	- Overlay Styling
====== */
/*================================================================================
$ GENERAL CALENDAR STYLES
================================================================================*/
.calendar-page-title {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 10px;
  text-align: left; }
  @media screen and (max-width: 959px) {
    .calendar-page-title {
      padding: 10px; } }
  .calendar-page-title > h1 {
    color: #666666;
    margin-bottom: 0; }
  .calendar-page-title .sales-calendar-download {
    float: right;
    margin-bottom: 20px; }
    @media screen and (max-width: 499px) {
      .calendar-page-title .sales-calendar-download {
        float: left;
        margin-top: 20px; } }

.auction-calendar {
  margin-top: 20px !important; }
  @media screen and (max-width: 899px) {
    .auction-calendar {
      margin-top: 15px; } }

.cal_auction_box {
  border-bottom: 1px solid #cccccc;
  padding: 30px 0; }
  @media screen and (max-width: 899px) {
    .cal_auction_box {
      padding: 20px 0; } }
  @media screen and (min-width: 750px) {
    .cal_auction_box .mobile-download-pdf {
      display: none; } }
  @media screen and (max-width: 749px) {
    .cal_auction_box .mobile-download-pdf {
      display: block; } }
  .cal_auction_box .mobile-download-pdf .primary-btn, .cal_auction_box .mobile-download-pdf .pay-online-btn, .cal_auction_box .mobile-download-pdf .proceed-invoice-btn, .cal_auction_box .mobile-download-pdf .place-bid-btn, .cal_auction_box .mobile-download-pdf .login-btn, .cal_auction_box .mobile-download-pdf .change-bid-btn, .cal_auction_box .mobile-download-pdf .added-to-wishlist, .cal_auction_box .mobile-download-pdf .hammer-login-btn {
    min-width: 200px; }

.download-calendar-pdf {
  float: right; }
  @media screen and (max-width: 649px) {
    .download-calendar-pdf {
      float: left;
      margin-top: 15px; } }

/*================================================================================
$ DATE FILTER
================================================================================*/
#display_container .full-article-image {
  min-height: 230px; }
  #display_container .full-article-image .image-text {
    max-width: 600px;
    text-align: center; }
    #display_container .full-article-image .image-text table {
      display: inline-block; }
  #display_container .full-article-image .calendar-container .calendar-left {
    float: left;
    width: 45%;
    border-right: 1px solid #4D4D4D; }
    @media screen and (max-width: 449px) {
      #display_container .full-article-image .calendar-container .calendar-left {
        width: 100%;
        border-right: none;
        float: none; } }
    #display_container .full-article-image .calendar-container .calendar-left .calendar-months {
      padding-top: 5px 0; }
      #display_container .full-article-image .calendar-container .calendar-left .calendar-months td {
        padding: 5px 10px; }
  #display_container .full-article-image .calendar-container .calendar-right {
    float: left;
    width: 50%;
    font-size: 31px;
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif; }
    @media screen and (max-width: 449px) {
      #display_container .full-article-image .calendar-container .calendar-right {
        width: 100%; } }
    #display_container .full-article-image .calendar-container .calendar-right .calendar-month-year {
      font-size: 31px;
      font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
      padding: 15px 0;
      margin: 25px 0;
      text-transform: uppercase; }
      @media screen and (max-width: 449px) {
        #display_container .full-article-image .calendar-container .calendar-right .calendar-month-year {
          font-size: 21px;
          width: 100%;
          margin: 5px 0;
          padding: 10px 0; } }
  @media screen and (max-width: 809px) {
    #display_container .full-article-image img {
      max-width: none;
      min-height: 230px;
      width: auto; } }

/*================================================================================
$ CALENDAR FILTERS
================================================================================*/
.calendar-filters-container {
  max-width: 960px;
  margin: 0 auto;
  text-transform: uppercase;
  padding: 10px 0; }
  @media screen and (max-width: 959px) {
    .calendar-filters-container {
      padding: 10px; } }
  .calendar-filters-container .calendar-department-filter {
    float: left;
    width: 35%;
    margin-right: 5px; }
    @media screen and (max-width: 899px) {
      .calendar-filters-container .calendar-department-filter {
        margin-bottom: 10px;
        margin-right: 0;
        width: 48%; } }
    @media screen and (max-width: 479px) {
      .calendar-filters-container .calendar-department-filter {
        margin-right: 0;
        width: 100%; } }
    .calendar-filters-container .calendar-department-filter select {
      padding: 7px 5px;
      background-color: #cecdcd;
      width: 100%; }
  .calendar-filters-container .calendar-view-by-month {
    float: left;
    margin-right: 5px;
    position: relative;
    width: 23%; }
    @media screen and (max-width: 899px) {
      .calendar-filters-container .calendar-view-by-month {
        float: right;
        margin-bottom: 10px;
        margin-left: 4%;
        margin-right: 0;
        width: 48%; } }
    @media screen and (max-width: 479px) {
      .calendar-filters-container .calendar-view-by-month {
        width: 100%; } }
    .calendar-filters-container .calendar-view-by-month select {
      padding: 7px 5px;
      background-color: #cecdcd;
      width: 100%; }
  .calendar-filters-container .calendar-department-filter select, .calendar-filters-container .calendar-view-by-month select {
    background-image: url(/images/arrow-dropdown.png) !important;
    background-position: 98% 50%;
    background-repeat: none;
    background-size: 11px;
    border-radius: 0;
    color: #4D4D4D;
    text-transform: uppercase; }
  .calendar-filters-container .calendar-reset-filters {
    float: right;
    width: 20%; }
    @media screen and (max-width: 899px) {
      .calendar-filters-container .calendar-reset-filters {
        float: right;
        margin-left: 4%;
        width: 48%; } }
    @media screen and (max-width: 479px) {
      .calendar-filters-container .calendar-reset-filters {
        width: 100%; } }
    .calendar-filters-container .calendar-reset-filters #reset-filters {
      margin: 0;
      width: 100%; }
  .calendar-filters-container .calendar-archived-sales {
    float: right;
    margin-left: 7px;
    width: 20%; }
    @media screen and (max-width: 899px) {
      .calendar-filters-container .calendar-archived-sales {
        float: left;
        margin-left: 0;
        width: 48%; } }
    @media screen and (max-width: 479px) {
      .calendar-filters-container .calendar-archived-sales {
        margin-bottom: 10px;
        width: 100%; } }
    .calendar-filters-container .calendar-archived-sales a {
      width: 100%; }
    .calendar-filters-container .calendar-archived-sales .secondary-btn {
      margin: 0;
      width: 100%; }

/*================================================================================
$ CALENDAR AUCTION BOX
================================================================================*/
.auction-cal__detail {
  float: left;
  width: 100%; }
  .auction-cal__detail .auction-cal__date {
    float: left;
    width: 15%; }
    @media screen and (max-width: 899px) {
      .auction-cal__detail .auction-cal__date {
        text-align: center;
        margin-top: 10px; } }
    @media screen and (max-width: 499px) {
      .auction-cal__detail .auction-cal__date {
        width: 20%; } }
    .auction-cal__detail .auction-cal__date .auction_date_location_container h4 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      margin-bottom: 0; }
    .auction-cal__detail .auction-cal__date .auction_date_location_container .auction-month {
      color: #c81618;
      font-size: 16px;
      font-weight: 300; }
    .auction-cal__detail .auction-cal__date .auction_date_location_container .auction-day-number {
      color: #c81618;
      font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
      font-size: 32px;
      font-weight: 500; }
    .auction-cal__detail .auction-cal__date .auction_date_location_container .auction-day-string {
      color: #4D4D4D;
      font-size: 16px; }
    .auction-cal__detail .auction-cal__date .auction_date_location_container .auction-location {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 14px;
      font-weight: bold; }
    .auction-cal__detail .auction-cal__date .auction_unbolted_container {
      width: 100%;
      float: left; }
      .auction-cal__detail .auction-cal__date .auction_unbolted_container .unbolted_inner-container {
        max-width: 110px;
        padding-top: 20px; }
  .auction-cal__detail .auction-cal__image {
    float: right;
    position: relative;
    width: 17%; }
    @media screen and (max-width: 749px) {
      .auction-cal__detail .auction-cal__image {
        float: left;
        text-align: center;
        width: 100%; }
        .auction-cal__detail .auction-cal__image img {
          margin: 0 auto;
          width: 35% !important; } }
    @media screen and (max-width: 749px) and (max-width: 649px) {
      .auction-cal__detail .auction-cal__image img {
        display: none !important; } }
    .auction-cal__detail .auction-cal__image .button {
      bottom: 0;
      margin-bottom: 0;
      max-width: 211px;
      position: absolute;
      width: 100%; }
      .auction-cal__detail .auction-cal__image .button:hover, .auction-cal__detail .auction-cal__image .button:focus, .auction-cal__detail .auction-cal__image .button:active {
        background-color: #ffffff !important; }
      @media screen and (max-width: 749px) {
        .auction-cal__detail .auction-cal__image .button {
          display: none; } }
      @media screen and (max-width: 899px) {
        .auction-cal__detail .auction-cal__image .button {
          left: 50%;
          -webkit-transform: translateX(-50%);
          -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          -o-transform: translateX(-50%);
          transform: translateX(-50%);
          min-width: 0;
          max-width: 100%;
          padding-left: 5px;
          padding-right: 5px; } }
    .auction-cal__detail .auction-cal__image .biddable-icon {
      position: absolute;
      top: 0;
      right: 0; }
  @media screen and (max-width: 599px) {
    .auction-cal__detail .auction-cal__image {
      width: 100%;
      text-align: center; } }
  .auction-cal__detail .auction-cal__image > a {
    display: block;
    text-align: center; }
    .auction-cal__detail .auction-cal__image > a > img {
      border-bottom: 2px solid #c81618;
      display: block;
      max-width: 200px;
      height: 100%;
      width: 100%; }
      @media screen and (max-width: 749px) {
        .auction-cal__detail .auction-cal__image > a > img {
          display: none;
          margin-bottom: 20px; } }
  .auction-cal__detail .auction-cal__info {
    float: left;
    padding: 0 25px;
    width: 60%; }
    @media screen and (max-width: 899px) {
      .auction-cal__detail .auction-cal__info {
        margin-left: 5%;
        width: 63%; } }
    @media screen and (max-width: 749px) {
      .auction-cal__detail .auction-cal__info {
        margin-left: 5%;
        margin-top: 10px;
        padding: 0;
        width: 80%; } }
    @media screen and (max-width: 499px) {
      .auction-cal__detail .auction-cal__info {
        margin-left: 15%;
        width: 65%; } }
    .auction-cal__detail .auction-cal__info > h2 {
      color: #c81618;
      font-weight: 400;
      margin-bottom: 0; }
      .auction-cal__detail .auction-cal__info > h2 > a {
        color: #c81618;
        display: block;
        font-weight: 400; }
    .auction-cal__detail .auction-cal__info > h4 {
      color: #808080; }
    .auction-cal__detail .auction-cal__info p {
      font-weight: 500;
      margin: 0;
      max-width: 550px; }
      .auction-cal__detail .auction-cal__info p:nth-child(5) {
        display: none; }
    .auction-cal__detail .auction-cal__info .auction-date-center {
      padding-top: 15px; }
      .auction-cal__detail .auction-cal__info .auction-date-center p {
        line-height: 1.5; }
      .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter {
        cursor: pointer;
        margin: 0; }
        .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter h6 {
          font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
          font-size: 15px; }
          .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter h6 span {
            color: #c81618; }
        .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter p {
          display: none; }
          .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter p span {
            color: #4D4D4D; }
          .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter p.active {
            display: block; }
      .auction-cal__detail .auction-cal__info .auction-date-center .auction-date-strong {
        font-weight: 700;
        margin: 0; }
      .auction-cal__detail .auction-cal__info .auction-date-center .auction-location-center {
        display: none;
        margin: 0; }
      .auction-cal__detail .auction-cal__info .auction-date-center .viewing-times-canter {
        padding-top: 20px; }
      .auction-cal__detail .auction-cal__info .auction-date-center .catalogue-details__vtimes span {
        color: #c81618; }
  .auction-cal__detail .auction-cal__buttons {
    margin-top: 20px;
    width: 100%; }
    @media screen and (max-width: 899px) {
      .auction-cal__detail .auction-cal__buttons {
        width: 50%;
        margin: 20px 0; } }
    @media screen and (max-width: 599px) {
      .auction-cal__detail .auction-cal__buttons {
        margin-top: 10px;
        width: 100%; } }
    .auction-cal__detail .auction-cal__buttons .gap-reg button {
      min-width: 200px; }
    .auction-cal__detail .auction-cal__buttons .gap-reg .bid-live-coming-soon-js {
      min-width: 200px; }
    .auction-cal__detail .auction-cal__buttons > a {
      display: block;
      max-width: 200px;
      width: 100%; }
      .auction-cal__detail .auction-cal__buttons > a:first-child {
        margin-right: 10px; }
  .auction-cal__detail .add-to-calendar {
    font-size: 15px;
    font-weight: 400; }

/*================================================================================
$ SALES CALENDAR FILTERS
================================================================================*/
.sales-calendar-wrapper {
  border-bottom: 1px solid #cccccc;
  margin: 0 auto;
  max-width: 960px;
  padding-bottom: 10px;
  width: 100%; }
  @media screen and (max-width: 959px) {
    .sales-calendar-wrapper {
      padding: 0 10px 10px 10px; } }
  .sales-calendar-wrapper .count-auction-result {
    float: left;
    line-height: 30px;
    width: 50%; }
    @media screen and (max-width: 959px) {
      .sales-calendar-wrapper .count-auction-result {
        width: auto; } }
  .sales-calendar-wrapper .calendar-view-by-month {
    float: left;
    text-align: right;
    width: 50%; }
    @media screen and (max-width: 959px) {
      .sales-calendar-wrapper .calendar-view-by-month {
        float: right;
        width: auto; } }
    .sales-calendar-wrapper .calendar-view-by-month span {
      padding-right: 10px; }

/*================================================================================
$ GAP WIDGETS
================================================================================*/
.com_calender .gap-reg .ng-scope span a, .com_calender .gap-reg .ng-scope span span {
  display: none; }

.com_calender .gap-reg .ng-scope span button {
  max-width: 200px;
  min-width: 200px; }

.com_calender .gap-reg .ng-scope .secondary {
  display: none; }

/*================================================================================
$ Overlay Styling
================================================================================*/
body.com_calender div#login-box .overlay_box-content, body.com_auction div#login-box .overlay_box-content {
  float: left;
  width: 100%;
  padding: 0 80px;
  margin-top: 10px; }
  body.com_calender div#login-box .overlay_box-content #err, body.com_calender div#login-box .overlay_box-content #error, body.com_auction div#login-box .overlay_box-content #err, body.com_auction div#login-box .overlay_box-content #error {
    color: #c81618;
    font-weight: 400;
    text-align: left; }
  body.com_calender div#login-box .overlay_box-content p:last-child, body.com_auction div#login-box .overlay_box-content p:last-child {
    margin-bottom: 10px; }

body.com_calender div#login-box #login-overlay-message, body.com_auction div#login-box #login-overlay-message {
  float: left;
  margin: 0 80px 20px 80px;
  max-width: none;
  color: #c81618;
  text-align: left; }

body.com_calender .bid-live-link__container, body.com_auction .bid-live-link__container {
  width: 100%;
  float: left; }
  body.com_calender .bid-live-link__container #bid_live_btn, body.com_auction .bid-live-link__container #bid_live_btn {
    display: block;
    margin: 0 auto;
    max-width: 180px; }

body.com_calender .bid-live-non-logged-in, body.com_auction .bid-live-non-logged-in {
  padding: 20px; }
  body.com_calender .bid-live-non-logged-in a, body.com_auction .bid-live-non-logged-in a {
    max-width: 140px;
    display: block;
    margin: 0 auto; }

/*================================================================================
$ AUCTION / TIMED AUCTION
================================================================================*/
/* ====== TIMED AUCTION ====== */
/* ======
TIMED AUCTION
	- General
	- Lot Detail
	- Overlay Content
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.timed-auction .lots-tabs {
  margin: 0 auto;
  max-width: 960px; }
  .timed-auction .lots-tabs ul {
    border-bottom: 1px solid #6f6f6e;
    float: left;
    margin: 10px 0 0 0;
    width: 100%; }
    .timed-auction .lots-tabs ul li {
      background-color: #ececec;
      color: #000000;
      cursor: pointer;
      float: left;
      padding: 5px;
      text-align: center;
      width: 49%; }
      .timed-auction .lots-tabs ul li a {
        font-weight: bold; }
      .timed-auction .lots-tabs ul li.close-lots-js {
        margin-left: 2%; }
      .timed-auction .lots-tabs ul li.active {
        background-color: transparent;
        border: 1px solid #6f6f6e; }

.timed-auction .ul-list {
  margin-top: 0 !important; }

.timed-auction .filter-section .full-width__top-filters .estimate-filter {
  margin-left: 10%; }

.timed-auction .filter-section .full-width__live-bidding {
  background-color: #c81618;
  float: left;
  padding: 10px 0;
  width: 100%; }
  .timed-auction .filter-section .full-width__live-bidding p {
    color: #ffffff;
    font-weight: 400;
    text-align: center; }
  .timed-auction .filter-section .full-width__live-bidding .manage-bids {
    text-align: center; }
    .timed-auction .filter-section .full-width__live-bidding .manage-bids a {
      color: #ffffff;
      font-weight: bold; }

.timed-auction .timed-auction .lot-item {
  margin-bottom: 30px; }
  @media screen and (max-width: 959px) {
    .timed-auction .timed-auction .lot-item {
      padding: 0 20px; } }
  @media screen and (max-width: 499px) {
    .timed-auction .timed-auction .lot-item {
      padding: 0 5px; } }

.timed-auction .timed-auction .catalogue-view__img img {
  max-height: 200px;
  max-width: 200px; }

@media screen and (max-width: 749px) {
  .timed-auction .timed-auction .catalogue-view__details {
    padding-bottom: 25px; } }

.timed-auction .timed-auction .catalogue-view__details .mobile-name-title {
  display: none; }
  @media screen and (max-width: 749px) {
    .timed-auction .timed-auction .catalogue-view__details .mobile-name-title {
      display: block;
      margin-bottom: 20px;
      width: 100%;
      text-align: center; }
      .timed-auction .timed-auction .catalogue-view__details .mobile-name-title .lot-num, .timed-auction .timed-auction .catalogue-view__details .mobile-name-title .lot-name, .timed-auction .timed-auction .catalogue-view__details .mobile-name-title .lot-estimate {
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        margin-bottom: 0;
        text-align: center; } }
  @media screen and (max-width: 499px) {
    .timed-auction .timed-auction .catalogue-view__details .mobile-name-title {
      margin-bottom: 0; } }

.timed-auction .timed-auction .catalogue-view__details .inclusive-preimium_button {
  top: 0px;
  font-size: 11px;
  background: #c81618;
  color: white;
  padding: 2px 5px;
  border-radius: 2px;
  font-weight: bold;
  display: inline; }

.timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left {
  margin-left: 0; }
  @media screen and (max-width: 959px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left {
      width: 50%; } }
  @media screen and (max-width: 949px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left {
      padding-bottom: 10px; } }
  @media screen and (max-width: 499px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left {
      float: left;
      padding: 0; } }
  @media screen and (max-width: 349px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left {
      width: 100%; } }
  @media screen and (max-width: 749px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-num, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-name, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-estimate {
      display: none; } }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .inclusive-preimium_text {
    float: left;
    width: 340px;
    color: #c81618;
    font-weight: bold;
    font-size: 14px;
    padding-top: 6px; }
    @media screen and (max-width: 749px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .inclusive-preimium_text {
        bottom: -38px;
        width: 300px; } }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .inclusive-preimium_button {
    position: absolute;
    right: 0;
    top: 0px;
    font-size: 11px;
    background: #c81618;
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
    font-weight: bold; }
    @media screen and (max-width: 949px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .inclusive-preimium_button {
        right: -100px; } }
    @media screen and (max-width: 749px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .inclusive-preimium_button {
        display: none; } }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-name {
    min-height: 90px; }
    @media screen and (max-width: 499px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-name p {
        margin-bottom: 0; } }
    @media screen and (max-width: 499px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-name p span {
        font-size: 13px !important; } }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-estimate {
    margin-top: 30px;
    max-width: 250px;
    position: relative; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-estimate p {
      color: #c81618; }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info {
    float: left;
    width: 100%;
    position: relative; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid {
      float: left;
      max-width: 250px;
      width: 100%; }
      @media screen and (max-width: 959px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid {
          display: block;
          float: none; } }
      @media screen and (max-width: 499px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid {
          margin: 0 auto; } }
      @media screen and (max-width: 359px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid {
          min-width: 150px; } }
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid p, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid p, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid p {
        display: inline-block;
        float: left;
        font-size: 14px;
        margin-bottom: 0; }
        @media screen and (max-width: 749px) {
          .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid p, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid p, .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid p {
            font-size: 13px; } }
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid p:nth-child(2), .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid p:nth-child(2), .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .your-bid p:nth-child(2) {
          float: right;
          margin-left: 20px; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current-bid p {
      font-weight: 600; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current_price_box {
      float: left;
      margin-top: 10px;
      width: 100%; }
      @media screen and (max-width: 499px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current_price_box {
          margin-bottom: 20px; } }
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .current_price_box p {
        color: #c81618;
        font-weight: 400; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .timed-auction-extra-info .minimum-bid p {
      color: #c81618; }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions {
    float: left;
    margin-top: 20px;
    width: 100%; }
    @media screen and (max-width: 959px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions {
        max-width: 175px; } }
    @media screen and (max-width: 499px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions {
        float: none;
        margin: 0 auto; } }
    @media screen and (max-width: 399px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions {
        max-width: 150px; } }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions > div {
      max-width: 175px;
      width: 50%; }
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions > div a {
        float: left; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .lot-viewlot {
      display: none; }
      @media screen and (max-width: 959px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .lot-viewlot {
          display: block; } }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .current-bid {
      border: 1px solid #c81618;
      margin-bottom: 0;
      margin-left: 10px;
      padding: 0 20px;
      text-align: center; }
      @media screen and (max-width: 959px) {
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .current-bid {
          margin-left: 0;
          margin-bottom: 7px; } }
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .current-bid p {
        color: #c81618;
        display: inline-block;
        float: left;
        margin: 3px 0; }
        .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__left .lot-actions .current-bid p:nth-child(2) {
          float: right;
          font-weight: 600; }

@media screen and (max-width: 959px) {
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right {
    width: 50%; } }

@media screen and (max-width: 499px) {
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right {
    float: left;
    width: 50%; } }

@media screen and (max-width: 349px) {
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right {
    width: 100%; } }

.timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .lot-actions {
  display: block; }
  @media screen and (max-width: 959px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .lot-actions {
      display: none; } }

.timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes {
  float: right;
  max-width: 175px;
  width: 100%; }
  @media screen and (max-width: 959px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes {
      margin-top: 40px; } }
  @media screen and (max-width: 749px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes {
      margin-top: 0; } }
  @media screen and (max-width: 499px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes {
      float: none;
      margin: 0 auto;
      max-width: 175px;
      padding: 0; } }
  @media screen and (max-width: 399px) {
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes {
      max-width: 150px; } }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .bidders_placed_box {
    border: 1px solid #d7d7d7;
    margin-bottom: 7px;
    padding: 3px 15px !important; }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .bids_placed_box {
    border: 1px solid #d7d7d7;
    padding: 3px 15px !important; }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .timed-box {
    float: left;
    padding: 0 15px;
    text-align: center;
    width: 100%; }
    @media screen and (max-width: 499px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .timed-box {
        padding: 0; } }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .timed-box p {
      float: left;
      width: auto; }
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .timed-box p:nth-child(2) {
        float: right;
        font-weight: 600;
        margin-left: 20px; }
  .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .remaining-time-box {
    margin-top: 110px;
    text-align: right; }
    @media screen and (max-width: 749px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .remaining-time-box {
        margin-top: 50px; } }
    @media screen and (max-width: 499px) {
      .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .remaining-time-box {
        margin-top: 20px; } }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .remaining-time-box .new-bids-extend {
      cursor: default;
      margin-bottom: 10px; }
    .timed-auction .timed-auction .catalogue-view__details .catalogue-view__details__right .timed_boxes .remaining-time-box .timed-box-value {
      color: #c81618;
      font-size: 20px;
      font-weight: 600;
      float: right; }

.timed-auction .timed-auction .catalogue-view__details .timed-bid-message {
  float: left;
  margin-top: 20px;
  width: 100%; }
  .timed-auction .timed-auction .catalogue-view__details .timed-bid-message .timed-top-box {
    border: 1px solid #c81618;
    float: left;
    padding: 15px 20px;
    width: 100%; }
    .timed-auction .timed-auction .catalogue-view__details .timed-bid-message .timed-top-box .left-heading {
      float: left;
      font-weight: 600;
      width: 100%; }
    .timed-auction .timed-auction .catalogue-view__details .timed-bid-message .timed-top-box .timed-description {
      float: left;
      width: 100%; }
    .timed-auction .timed-auction .catalogue-view__details .timed-bid-message .timed-top-box.bid-low-box {
      background-color: #c81618; }
      .timed-auction .timed-auction .catalogue-view__details .timed-bid-message .timed-top-box.bid-low-box p {
        color: #ffffff; }

/*================================================================================
$ LOT DETAIL
================================================================================*/
.timed-auction .item-navigation-top {
  margin-top: 50px; }

/*================================================================================
$ OVERLAY CONTENT
================================================================================*/
.overlay-content .timed-bid-message {
  float: left;
  width: 100%; }
  .overlay-content .timed-bid-message .timed-top-box {
    border: 1px solid #c81618;
    float: left;
    margin: 20px 0;
    padding: 15px 20px;
    width: 100%; }
    .overlay-content .timed-bid-message .timed-top-box .left-heading {
      float: left;
      font-weight: 600;
      width: 100%; }
    .overlay-content .timed-bid-message .timed-top-box .timed-description {
      float: left;
      width: 100%; }
    .overlay-content .timed-bid-message .timed-top-box.bid-low-box {
      background-color: #c81618; }
      .overlay-content .timed-bid-message .timed-top-box.bid-low-box p {
        color: #ffffff; }

.overlay-content .increment-table {
  margin-top: 20px; }
  .overlay-content .increment-table .show-increment-table-js {
    cursor: pointer; }
    .overlay-content .increment-table .show-increment-table-js span {
      color: #c81618; }
  .overlay-content .increment-table .bid-increments li {
    float: left;
    font-size: 13px;
    font-weight: 600;
    margin-right: 2%;
    min-height: 50px;
    width: 48%; }

/*================================================================================
$ PAGES
================================================================================*/
body.advanced_search .footer-hold {
  display: block !important; }

body.advanced_search .auction_advance_search {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  border: medium none;
  box-shadow: none;
  color: #c81618;
  font-size: 14px;
  float: none;
  margin: 0 auto;
  padding: 0;
  width: inherit; }
  @media screen and (max-width: 799px) {
    body.advanced_search .auction_advance_search {
      padding: 0 20px; } }
  body.advanced_search .auction_advance_search form {
    max-width: 850px;
    margin: 2% auto;
    padding: 0 10px; }
  body.advanced_search .auction_advance_search h1 {
    color: #3c3c3b;
    margin: 30px 0;
    text-align: left;
    font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif; }
  body.advanced_search .auction_advance_search .search-right > * {
    float: none !important;
    font-size: 12px !important; }
  body.advanced_search .auction_advance_search .search-right .search-upcoming-auctions {
    display: inline-block;
    float: none;
    padding: 5px 0;
    width: 100% !important; }
    body.advanced_search .auction_advance_search .search-right .search-upcoming-auctions select {
      background-color: white;
      background-image: url("/images/select-toggle-arrow.png") !important;
      background-position: 98% 50%;
      background-size: 10px auto;
      border-radius: 0;
      border-color: #e3e3e3;
      font-size: 14px;
      line-height: 1.5;
      padding: 5px;
      width: 50% !important; }
      @media screen and (max-width: 599px) {
        body.advanced_search .auction_advance_search .search-right .search-upcoming-auctions select {
          width: 100% !important;
          margin: 5px 0; } }
  body.advanced_search .auction_advance_search .search-right .submit_enter_lot {
    padding-top: 30px;
    width: 100%;
    text-align: center; }
    body.advanced_search .auction_advance_search .search-right .submit_enter_lot input.primary-button {
      border: 1px solid #c81618; }
  body.advanced_search .auction_advance_search .lbl {
    color: #000000;
    font-size: 15px;
    font-weight: 300;
    float: left;
    margin-top: 10px;
    padding-right: 10px;
    width: 100% !important;
    max-width: 225px; }
    @media screen and (max-width: 599px) {
      body.advanced_search .auction_advance_search .lbl {
        clear: left;
        max-width: 180px; } }
  body.advanced_search .auction_advance_search input {
    border: 1px solid #e3e3e3;
    box-shadow: none !important;
    font-size: 15px;
    padding: 5px;
    margin-right: 15px;
    width: 24%;
    border-radius: 0 !important;
    float: left; }
    @media screen and (max-width: 599px) {
      body.advanced_search .auction_advance_search input {
        width: 100%;
        margin: 5px 0; } }
  body.advanced_search .auction_advance_search .primary-btn, body.advanced_search .auction_advance_search .pay-online-btn, body.advanced_search .auction_advance_search .proceed-invoice-btn, body.advanced_search .auction_advance_search .place-bid-btn, body.advanced_search .auction_advance_search .login-btn, body.advanced_search .auction_advance_search .change-bid-btn, body.advanced_search .auction_advance_search .added-to-wishlist, body.advanced_search .auction_advance_search .hammer-login-btn {
    max-width: 100px;
    width: 100%; }

body.advanced_search .search-upcoming-auctions {
  width: 100% !important; }

body.advanced_search .keyword-search {
  width: 100% !important; }
  body.advanced_search .keyword-search .value {
    width: 30% !important; }
  body.advanced_search .keyword-search input {
    font-size: 14px;
    margin: 5px 0;
    width: 50% !important; }
    @media screen and (max-width: 599px) {
      body.advanced_search .keyword-search input {
        width: 100% !important;
        margin: 5px 0; } }
  body.advanced_search .keyword-search #archive {
    float: left;
    width: 15px !important;
    margin-top: 10px; }
  body.advanced_search .keyword-search .value_low_estimate {
    margin-right: 10px; }

body.advanced_search .estimate {
  margin-top: 5px; }
  body.advanced_search .estimate .value_low_estimate {
    float: left;
    width: 17.5%; }
    @media screen and (max-width: 599px) {
      body.advanced_search .estimate .value_low_estimate {
        width: 50%; } }
    body.advanced_search .estimate .value_low_estimate input {
      font-size: 14px;
      width: 100% !important; }
  body.advanced_search .estimate .lbl_high_estimate {
    padding: 0 10px;
    width: 15% !important; }
    @media screen and (max-width: 599px) {
      body.advanced_search .estimate .lbl_high_estimate {
        margin-top: 15px;
        padding-left: 10%;
        width: 35% !important; } }
  body.advanced_search .estimate .value_high_estimate {
    float: left;
    width: 17.5%; }
    @media screen and (max-width: 599px) {
      body.advanced_search .estimate .value_high_estimate {
        width: 50%; } }
    body.advanced_search .estimate .value_high_estimate input {
      font-size: 14px;
      width: 100% !important; }
      @media screen and (max-width: 599px) {
        body.advanced_search .estimate .value_high_estimate input {
          margin-top: 10px; } }

body.advanced_search .sort-by-section {
  padding-top: 40px;
  width: 100%; }
  body.advanced_search .sort-by-section .sort-by {
    width: 100%;
    margin-right: 0 !important;
    height: auto;
    line-height: inherit;
    float: none;
    display: inline-block;
    vertical-align: middle; }
  body.advanced_search .sort-by-section .view-as {
    display: none !important;
    width: 100%;
    height: auto;
    line-height: normal;
    float: none;
    display: inline-block;
    vertical-align: middle; }
  body.advanced_search .sort-by-section select {
    background-color: white;
    background-image: url("/images/select-toggle-arrow.png") !important;
    background-position: 95% 50%;
    background-size: 10px auto;
    border-radius: 0;
    border-color: #e3e3e3;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
    padding: 5px;
    width: 40% !important; }
    @media screen and (max-width: 599px) {
      body.advanced_search .sort-by-section select {
        width: 100% !important; } }
  body.advanced_search .sort-by-section span.value {
    display: inline-block;
    width: 65%;
    vertical-align: middle; }
    @media screen and (max-width: 599px) {
      body.advanced_search .sort-by-section span.value {
        width: 100%; } }

/* ====== CMS PAGES ====== */
/* ======
CMS PAGES
	- GENERAL
	- BANNER
	- LIVE BIDDING/SELLING/BUYING HEADER OVERRIDE
	- CONTACT
	- HISTORY
	- STAFF
	- POPUP
	- CMS QUICK LINKS
	- VALUATION PAGES 1 AND 2
	- ERROR PAGE
	- REGISTER THANKYOU
	- WANTED BANSKY
	- RECENT SOLD HIGHLIGHTS
====== */
/*================================================================================
$ GENERAL + QUICK LINKS
================================================================================*/
.register {
  text-transform: none; }

.article p, .article table {
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }

.article table {
  display: inline-block;
  margin-top: 0;
  margin-left: 10%; }
  .article table td, .article table th {
    padding: 2px; }

.article .full-article-image {
  margin-bottom: 25px; }
  @media screen and (max-width: 599px) {
    .article .full-article-image {
      display: none; } }

.article .item-page {
  max-width: 960px; }
  .article .item-page h1 {
    border-bottom: 2px solid #c81618;
    padding: 15px 0 20px 0;
    margin-bottom: 20px;
    text-align: left; }
  @media screen and (max-width: 479px) {
    .article .item-page img {
      height: 100%;
      width: 100%;
      padding: 10px 0; } }
  .article .item-page img[align="left"] {
    margin-right: 20px; }
  .article .item-page img[align="right"] {
    margin-left: 20px; }
  .article .item-page img:first-child:nth-last-child(3),
  .article .item-page img:first-child:nth-last-child(3) ~ img {
    width: 33.3333%; }
  .article .item-page img:first-child:nth-last-child(4),
  .article .item-page img:first-child:nth-last-child(4) ~ img {
    float: left;
    margin-bottom: 2%;
    margin-left: 0;
    margin-right: 2%;
    width: 23.5%; }
    .article .item-page img:first-child:nth-last-child(4):nth-last-child(1),
    .article .item-page img:first-child:nth-last-child(4) ~ img:nth-last-child(1) {
      margin-right: 0; }
  .article .item-page .department-staff {
    margin: 50px 0; }
    .article .item-page .department-staff .left-col {
      width: 20%;
      float: left; }
      @media screen and (max-width: 899px) {
        .article .item-page .department-staff .left-col {
          width: 30%; } }
      @media screen and (max-width: 599px) {
        .article .item-page .department-staff .left-col {
          width: 40%; } }
      .article .item-page .department-staff .left-col img {
        padding-right: 15px; }
    .article .item-page .department-staff .right-col {
      width: 80%;
      float: right; }
      .article .item-page .department-staff .right-col p {
        max-width: 550px; }
      @media screen and (max-width: 899px) {
        .article .item-page .department-staff .right-col {
          width: 70%; } }
      @media screen and (max-width: 599px) {
        .article .item-page .department-staff .right-col {
          width: 60%; } }

/*================================================================================
$ BANNER
================================================================================*/
.full-article-image {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto; }
  @media screen and (max-width: 599px) {
    .full-article-image {
      display: none; } }
  .full-article-image .img_caption {
    width: 100% !important; }
  .full-article-image img {
    display: block;
    padding: 0;
    position: relative;
    margin: 0;
    width: 100%; }
  .full-article-image .image-text {
    background: rgba(255, 255, 255, 0.8);
    left: 50%;
    max-width: 960px;
    padding: 20px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%; }
    @media screen and (max-width: 959px) {
      .full-article-image .image-text {
        padding: 10px; } }
    .full-article-image .image-text h1 {
      margin: 0;
      padding: 0; }
    .full-article-image .image-text p {
      margin-top: 20px; }
      @media screen and (max-width: 599px) {
        .full-article-image .image-text p {
          display: none; } }

/*================================================================================
$ LIVE BIDDING
================================================================================*/
.live-bidding .pulse-btn {
  margin-top: 30px; }

.live-bidding .overlay-content #container_COLUMN2 {
  margin-bottom: 20px; }

/*================================================================================
$ SELLING
================================================================================*/
.selling .full-article-image {
  margin-bottom: 5px; }

.selling .btn-p {
  margin-bottom: 10px; }

.selling .request-valuation {
  border-bottom: 2px solid #c81618;
  margin-bottom: 20px;
  padding: 10px 0 15px; }

/*================================================================================
$ HISTORY
================================================================================*/
.history .item-page {
  width: 100% !important;
  padding: 0; }
  .history .item-page .left {
    width: 70%;
    display: inline-block;
    vertical-align: top; }
    @media screen and (max-width: 599px) {
      .history .item-page .left {
        width: 100%; } }
  .history .item-page .right {
    width: 24%;
    display: inline-block;
    vertical-align: top;
    float: right; }
    @media screen and (max-width: 599px) {
      .history .item-page .right {
        display: none; } }
    .history .item-page .right .history-image-hold {
      margin-bottom: 10%;
      float: left;
      padding: 0; }
      .history .item-page .right .history-image-hold img {
        width: 100%; }

.view-more-hold {
  padding-top: 0; }

.banner_data.cms-pages > p {
  margin-bottom: 5px; }

/*================================================================================
$ STAFF POPUP
================================================================================*/
#TB_title {
  height: 0 !important; }

#TB_closeAjaxWindow {
  color: transparent;
  font-size: 1px; }
  @media screen and (max-width: 769px) {
    #TB_closeAjaxWindow a {
      right: 5px !important;
      top: 2px !important; } }

#TB_ajaxContent {
  height: 450px !important;
  padding: 0px !important;
  width: 100% !important; }
  @media screen and (max-width: 769px) {
    #TB_ajaxContent {
      height: 330px !important; } }
  #TB_ajaxContent p {
    padding: 0 !important; }

#TB_window {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif !important;
  margin-top: -225px !important; }
  @media screen and (max-width: 769px) {
    #TB_window {
      left: 0 !important;
      margin-left: 0 !important;
      margin-top: 0 !important;
      width: 100% !important; } }

#staff-pop-up {
  padding: 20px; }
  #staff-pop-up .two-column-left_left {
    float: left;
    padding-bottom: 20px;
    padding-right: 20px;
    width: 30%; }
    @media screen and (max-width: 599px) {
      #staff-pop-up .two-column-left_left {
        width: 100%; } }
    @media screen and (max-width: 799px) {
      #staff-pop-up .two-column-left_left {
        width: 100%; } }
    @media screen and (max-width: 899px) {
      #staff-pop-up .two-column-left_left {
        width: 100%; } }
  #staff-pop-up .two-column-left_right {
    float: left;
    width: 70%; }
    @media screen and (max-width: 599px) {
      #staff-pop-up .two-column-left_right {
        width: 100%; } }
    @media screen and (max-width: 799px) {
      #staff-pop-up .two-column-left_right {
        width: 100%; } }
    @media screen and (max-width: 899px) {
      #staff-pop-up .two-column-left_right {
        width: 100%; } }
  #staff-pop-up .staff-image {
    border-bottom: 3px solid #c81618; }
  #staff-pop-up .staff-department-info p, #staff-pop-up .staff-department-info a, #staff-pop-up .staff-department-info span, #staff-pop-up .staff-name-title p, #staff-pop-up .staff-name-title a, #staff-pop-up .staff-name-title span {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 10px; }
  #staff-pop-up .staff-department-info .staff-department, #staff-pop-up .staff-name-title .staff-department {
    font-size: 20px;
    font-style: italic;
    font-weight: 400; }
  #staff-pop-up .staff-department-info .staff-name-title, #staff-pop-up .staff-name-title .staff-name-title {
    font-size: 19px; }
  #staff-pop-up .staff-department-info p, #staff-pop-up .staff-name-title p {
    font-size: 13px; }
  #staff-pop-up .staff-email-phone {
    font-size: 16px; }
    #staff-pop-up .staff-email-phone .staff-email {
      margin-bottom: 0px; }
      #staff-pop-up .staff-email-phone .staff-email a {
        font-weight: 400; }
    #staff-pop-up .staff-email-phone .staff-phone {
      font-weight: 400;
      margin-bottom: 10px;
      display: none; }
  #staff-pop-up .staff-name {
    font-size: 23px;
    font-weight: 300; }
    #staff-pop-up .staff-name p {
      margin-bottom: 5px; }
  #staff-pop-up h4.staff-info {
    font-size: 23px;
    font-weight: 300;
    margin-top: 20px; }
  #staff-pop-up p.staff-info {
    display: inline;
    font-size: 13px !important;
    line-height: 1.2 !important;
    margin-top: 20px; }

/*================================================================================
$ CMS QUICK LINKS
================================================================================*/
.moduletable cf.cms-quick-links {
  float: right;
  width: 25%;
  padding-top: 80px; }
  @media screen and (max-width: 959px) {
    .moduletable cf.cms-quick-links {
      width: 100%; } }
  .moduletable cf.cms-quick-links img {
    max-width: 100%;
    width: 240px; }
    @media screen and (max-width: 599px) {
      .moduletable cf.cms-quick-links img {
        display: none; } }
  @media screen and (max-width: 959px) {
    .moduletable cf.cms-quick-links p {
      float: left;
      width: 50%; } }
  @media screen and (max-width: 599px) {
    .moduletable cf.cms-quick-links p {
      width: 100%; } }
  @media screen and (max-width: 959px) {
    .moduletable cf.cms-quick-links h2 {
      float: right;
      padding-left: 20px;
      width: 50%; } }
  @media screen and (max-width: 599px) {
    .moduletable cf.cms-quick-links h2 {
      padding-left: 0;
      width: 100%; } }
  .moduletable cf.cms-quick-links a {
    display: block;
    font-size: 18px;
    width: 100%; }
    @media screen and (max-width: 959px) {
      .moduletable cf.cms-quick-links a {
        padding-left: 20px; } }
    @media screen and (max-width: 599px) {
      .moduletable cf.cms-quick-links a {
        padding-left: 0; } }

/*================================================================================
$ VALUATION PAGES 1 AND 2
================================================================================*/
body.large-text .item-page.large-text p {
  font-size: 18px; }

/*================================================================================
$ SIGNUP EMAIL PREFERENCES
================================================================================*/
iframe {
  height: 615px; }

.sign-up-title {
  margin-top: 20px;
  margin-bottom: 40px; }

.sign-up-content {
  margin-bottom: 30px; }

.sign-up-form {
  height: 400px; }
  .sign-up-form #container_EMAIL {
    background-color: #C0C0C0;
    float: left;
    margin-top: 20px;
    padding: 25px;
    width: 100%; }
    .sign-up-form #container_EMAIL #control_EMAIL {
      border: none;
      padding: 8px;
      width: 90%; }
    .sign-up-form #container_EMAIL .buttonStyle {
      margin-bottom: 0 !important;
      width: 10%;
      float: right;
      padding: 8px;
      font-size: 12px; }
  .sign-up-form h3 {
    font-size: 21px; }
  .sign-up-form .checkbox-style {
    float: left;
    margin: 15px 0;
    width: 50%; }
    @media screen and (max-width: 749px) {
      .sign-up-form .checkbox-style {
        float: none;
        width: 100%; } }

/*================================================================================
$ CHARGES PAGE
================================================================================*/
.charges tbody td {
  color: #4D4D4D; }

/*================================================================================
$ VALUATIONS PAGE
================================================================================*/
.valuations .full-article-image {
  margin-bottom: 5px; }

.valuations h2 {
  clear: left; }

.valuations .left-col {
  width: 53%; }
  @media screen and (max-width: 599px) {
    .valuations .left-col {
      width: 100%; } }

.valuations .right-col {
  float: right;
  width: 39%; }
  @media screen and (max-width: 599px) {
    .valuations .right-col {
      width: 100%; } }
  .valuations .right-col img {
    width: 100%; }
  .valuations .right-col .view-catalogue-btn {
    width: 100%; }

.valuations .moduletable {
  clear: left; }

.valuations .bottom-text {
  float: left; }

.valuations .valuations-menu {
  border-bottom: 2px solid #c81618;
  max-width: 960px;
  margin: 50px auto 25px;
  float: left;
  width: 100%; }
  .valuations .valuations-menu ul {
    border: 1px solid #c81618; }
    .valuations .valuations-menu ul li {
      float: left;
      text-align: center;
      width: 33.333333%; }
      .valuations .valuations-menu ul li:nth-child(2) {
        border-left: 1px solid #c81618;
        border-right: 1px solid #c81618; }
      .valuations .valuations-menu ul li a {
        color: #c81618;
        display: block;
        padding: 5px 0;
        text-transform: uppercase; }
        .valuations .valuations-menu ul li a:hover {
          background-color: #c81618;
          color: #ffffff;
          text-decoration: none;
          transition: all 0.25s ease 0s; }
    .valuations .valuations-menu ul .probate-valuations-list.ui-tabs-active {
      background-color: #c81618; }
      .valuations .valuations-menu ul .probate-valuations-list.ui-tabs-active a {
        color: #fff;
        text-decoration: none; }
    .valuations .valuations-menu ul .insurance-valuations-list.ui-tabs-active {
      background-color: #c81618; }
      .valuations .valuations-menu ul .insurance-valuations-list.ui-tabs-active a {
        color: #fff;
        text-decoration: none; }
    .valuations .valuations-menu ul .other-valuations-list.ui-tabs-active {
      background-color: #c81618; }
      .valuations .valuations-menu ul .other-valuations-list.ui-tabs-active a {
        color: #fff;
        text-decoration: none; }

.valuations .valuation-image {
  float: left;
  padding-right: 10px;
  width: 17%;
  clear: both; }
  @media screen and (max-width: 599px) {
    .valuations .valuation-image {
      width: 30%; } }
  @media screen and (max-width: 479px) {
    .valuations .valuation-image {
      width: 100%; } }
  .valuations .valuation-image img {
    max-width: 140px; }

.valuations .valuation-info {
  float: left;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  padding-right: 10px;
  width: 55%; }
  @media screen and (max-width: 599px) {
    .valuations .valuation-info {
      width: 40%; } }
  @media screen and (max-width: 479px) {
    .valuations .valuation-info {
      width: 100%; } }
  .valuations .valuation-info .valuation-name {
    color: #3c3c3b;
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 0; }
  .valuations .valuation-info .valuation-date, .valuations .valuation-info .valuation-time {
    color: #7F7F7F;
    font-size: 18px;
    margin-bottom: 10px; }
  .valuations .valuation-info .valuation-location, .valuations .valuation-info .valuation-postcode {
    font-size: 17px;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    margin-bottom: 0 !important; }

.valuations .valuation-button {
  float: left;
  width: 25%; }
  @media screen and (max-width: 599px) {
    .valuations .valuation-button {
      float: right;
      width: 30%;
      text-align: right; } }
  @media screen and (max-width: 479px) {
    .valuations .valuation-button {
      width: 100%;
      margin: 15px 0; } }

.valuations .tabs-content p {
  margin-top: 20px; }

.valuations .internal_valuation_days {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 40px; }
  .valuations .internal_valuation_days h1 {
    clear: both;
    padding-top: 10px; }
  .valuations .internal_valuation_days .valuation-button .secondary-btn {
    float: right; }

.valuations .external_valuation_days {
  padding: 40px 0; }
  .valuations .external_valuation_days .valuation-button .secondary-btn {
    float: right; }

.valuations .valuation-form-wrapper, .insurance-valuations .valuation-form-wrapper, .probate-valuations .valuation-form-wrapper {
  padding: 15px 0 0 0 !important; }

/*================================================================================
$ ABOUT MENU IN HISTORY PAGE
================================================================================*/
.about-us-menu {
  max-width: 960px;
  margin: 20px auto; }
  .about-us-menu ul {
    width: 100%;
    border: 1px solid #c81618;
    display: inline-block; }
    .about-us-menu ul li {
      border-left: 1px solid #c81618;
      width: 25%;
      float: left;
      text-align: center; }
      .about-us-menu ul li:first-child {
        border-left: none; }
    .about-us-menu ul a {
      color: #c81618;
      background: #ffffff;
      display: block;
      padding: 5px 0;
      text-transform: uppercase; }
      @media screen and (max-width: 479px) {
        .about-us-menu ul a {
          font-size: 11px; } }
      .about-us-menu ul a:hover, .about-us-menu ul a:active {
        background: #c81618;
        color: #ffffff;
        text-decoration: none; }

.about-us .about-us-list a {
  background: #c81618;
  color: #ffffff;
  text-decoration: none; }

.our-staff p {
  margin-bottom: 20px; }

.our-staff .our-staff-list a {
  background: #c81618;
  color: #ffffff;
  text-decoration: none; }

.services .services-list a {
  background: #c81618;
  color: #ffffff;
  text-decoration: none; }

.careers .careers-list a {
  background: #c81618;
  color: #ffffff;
  text-decoration: none; }

/*================================================================================
$ STAFF PAGE
================================================================================*/
.our-staff h1:first-child {
  display: none; }

.our-staff .overlay-container__wrapper.overlay-container__wrapper {
  max-width: 1000px; }
  @media screen and (min-width: 1200) {
    .our-staff .overlay-container__wrapper.overlay-container__wrapper {
      width: 90%; } }
  @media screen and (min-width: 10v00) {
    .our-staff .overlay-container__wrapper.overlay-container__wrapper {
      width: 90%; } }
  @media screen and (min-width: 700) {
    .our-staff .overlay-container__wrapper.overlay-container__wrapper {
      width: 90%; } }
  @media screen and (min-width: 600) {
    .our-staff .overlay-container__wrapper.overlay-container__wrapper {
      width: 100%; } }

.our-staff .staff-block {
  float: left;
  padding-top: 10px;
  width: 100%; }
  .our-staff .staff-block .single-block {
    float: left;
    margin-left: 5%;
    width: 30%; }
    @media screen and (min-width: 750px) {
      .our-staff .staff-block .single-block:first-child, .our-staff .staff-block .single-block:nth-child(3n+4) {
        clear: left;
        margin-left: 0; } }
    @media screen and (max-width: 749px) {
      .our-staff .staff-block .single-block {
        margin-left: 2%;
        width: 49%; }
        .our-staff .staff-block .single-block:first-child, .our-staff .staff-block .single-block:nth-child(odd) {
          clear: left;
          margin-left: 0; } }
    @media screen and (max-width: 399px) {
      .our-staff .staff-block .single-block {
        margin-left: 0;
        width: 100%; } }
    .our-staff .staff-block .single-block .pull-center {
      border-bottom: 3px solid #c81618;
      margin: 0 auto; }
    .our-staff .staff-block .single-block .staff-image {
      max-width: 290px;
      position: relative; }
      @media screen and (max-width: 479px) {
        .our-staff .staff-block .single-block .staff-image {
          width: 100%; } }
      .our-staff .staff-block .single-block .staff-image a {
        bottom: 0;
        margin: 0;
        position: absolute;
        right: 0; }
      .our-staff .staff-block .single-block .staff-image img {
        padding: 0; }
    .our-staff .staff-block .single-block .staff-content h3 {
      margin-bottom: 5px; }
    .our-staff .staff-block .single-block .staff-content h4 {
      margin-bottom: 15px; }
    .our-staff .staff-block .single-block .staff-details {
      padding: 25px 0;
      max-width: 280px;
      text-align: left; }
      @media screen and (max-width: 999px) {
        .our-staff .staff-block .single-block .staff-details {
          max-width: none; } }
      .our-staff .staff-block .single-block .staff-details .job-title {
        font-size: 16px;
        font-style: italic;
        margin-bottom: 20px;
        min-height: 40px; }
        @media screen and (max-width: 449px) {
          .our-staff .staff-block .single-block .staff-details .job-title {
            min-height: 60px; } }
      .our-staff .staff-block .single-block .staff-details .secondary-btn {
        min-width: 155px; }
      .our-staff .staff-block .single-block .staff-details .staff-name {
        font-size: 17px;
        margin-bottom: 15px; }

/*================================================================================
$ ABOUT
================================================================================*/
.about-us .left-col {
  width: 65%;
  float: left; }
  @media screen and (max-width: 699px) {
    .about-us .left-col {
      width: 100%; } }
  .about-us .left-col p {
    padding: 0 10px; }

.about-us .right-col {
  width: 35%;
  float: right; }
  @media screen and (max-width: 699px) {
    .about-us .right-col {
      width: 100%; } }
  @media screen and (max-width: 699px) {
    .about-us .right-col img {
      width: 100%; } }

/*================================================================================
$ Ts and Cs, PRIVACY POLICY, THANK YOU PAGE
================================================================================*/
.terms-and-conditions .item-page, .privacy-policy .item-page, .thank-you-for-subscribing .item-page {
  margin-top: 40px;
  max-width: 960px; }
  .terms-and-conditions .item-page p, .privacy-policy .item-page p, .thank-you-for-subscribing .item-page p {
    margin: 20px 0 10px 0;
    text-align: left !important; }

/*================================================================================
$ 404
================================================================================*/
.error-page .error-page {
  margin: 0 auto;
  max-width: 960px;
  padding-top: 40px; }
  .error-page .error-page h1 {
    border: none;
    margin-bottom: 30px;
    padding: 0; }
  .error-page .error-page .primary-btn, .error-page .error-page .pay-online-btn, .error-page .error-page .proceed-invoice-btn, .error-page .error-page .place-bid-btn, .error-page .error-page .login-btn, .error-page .error-page .change-bid-btn, .error-page .error-page .added-to-wishlist, .error-page .error-page .hammer-login-btn {
    margin-top: 30px; }

/*================================================================================
$ REGISTER THANKYOU
================================================================================*/
.thank-you-for-registering .item-page {
  padding-top: 40px; }

.modern-contemporary-art-and-editions .full-article-image, .books-and-manuscripts .full-article-image, .itemid-346 .full-article-image, .photographs-and-photobooks .full-article-image, .jewellery-watches-and-luxury-accessories .full-article-image, .fine-wine-and-spirits .full-article-image {
  margin-bottom: 10px; }

@media screen and (max-width: 699px) {
  .photographs-and-photobooks .request-valuation, .jewellery-watches-and-luxury-accessories .request-valuation {
    margin-top: 10px; } }

/*================================================================================
$ BANKSY LANDING PAGE
================================================================================*/
.wanted-banksy .full-article-image {
  margin-bottom: 0;
  max-height: 355px !important; }

.wanted-banksy .item-page {
  max-width: none !important; }
  .wanted-banksy .item-page h1 {
    color: #ffffff;
    border-bottom: none !important;
    margin-bottom: 20px;
    margin: 0 auto;
    max-width: 960px;
    padding: 15px 0 20px 10px;
    text-align: left; }

.wanted-banksy .top-banner {
  background-color: #3c3c3b; }

.content-wrap {
  max-width: 960px;
  margin: 0 auto; }
  .content-wrap .textblock-one {
    border-bottom: 2px solid #c81618;
    font-size: 18px;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px; }
    .content-wrap .textblock-one .textblock-two {
      font-size: 18px;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }
    .content-wrap .textblock-one .textred {
      color: #c81618;
      font-weight: 400; }
  .content-wrap .button-holder-top {
    margin-bottom: 35px;
    margin-top: 50px; }
  .content-wrap .image-holder-one {
    width: 100%;
    max-width: 960px; }
    .content-wrap .image-holder-one p.textred {
      color: #c81618;
      font-weight: 400;
      line-height: 0.6; }
    .content-wrap .image-holder-one .image-blocks {
      width: 30% !important;
      float: left;
      margin-left: 3%;
      margin-bottom: 50px; }
      .content-wrap .image-holder-one .image-blocks img {
        width: 100% !important;
        margin-bottom: 20px;
        min-height: 280px; }
      .content-wrap .image-holder-one .image-blocks .img-title {
        color: #3c3c3b; }
  .content-wrap .image-holder-two {
    width: 100%;
    max-width: 960px; }
    .content-wrap .image-holder-two p.textred {
      color: #c81618;
      font-weight: 400;
      line-height: 0.6; }
    .content-wrap .image-holder-two .image-blocks-two {
      width: 20% !important;
      float: right;
      margin-left: 5%;
      margin-bottom: 50px; }
      .content-wrap .image-holder-two .image-blocks-two img {
        width: 100% !important;
        margin-bottom: 20px;
        min-height: 280px; }
  .content-wrap .image-holder-three {
    width: 100%;
    max-width: 960px; }
    .content-wrap .image-holder-three p.textred {
      color: #c81618;
      font-weight: 400;
      line-height: 0.6; }
    .content-wrap .image-holder-three .image-blocks-three {
      width: 30% !important;
      float: left;
      line-height: 4;
      margin-left: 3.3%; }
      .content-wrap .image-holder-three .image-blocks-three img {
        width: 100% !important; }
  .content-wrap p.textred {
    color: #c81618;
    font-weight: 400;
    line-height: 0.6; }
  .content-wrap .image-blocks-three {
    width: 30% !important;
    float: left;
    line-height: 4;
    margin-left: 3.3%; }
    .content-wrap .image-blocks-three img {
      width: 100% !important;
      min-height: 280px;
      margin-bottom: 20px; }
  .content-wrap .bottom-text {
    clear: both;
    padding-top: 40px;
    padding-bottom: 40px; }

.timed-online-only-sale h1 {
  border-bottom: 2px solid #c81618 !important;
  padding: 25px 0 20px 0 !important;
  margin-bottom: 20px !important;
  text-align: left; }

.timed-online-only-sale .text-red {
  color: #c81618; }

/*===================================================================
$ RECENT SOLD HIGHLIGHTS PAGE
===================================================================*/
.recent-sold-highlights .item-page .recent-sold-row1 {
  width: 100%; }
  .recent-sold-highlights .item-page .recent-sold-row1 .recent-sold-blocks {
    width: 19%;
    float: left;
    margin-right: 8%;
    margin-bottom: 2%; }
    @media screen and (max-width: 449px) {
      .recent-sold-highlights .item-page .recent-sold-row1 .recent-sold-blocks {
        width: 50%;
        text-align: center;
        margin-right: 0;
        padding-right: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c81618; } }

.recent-sold-highlights .item-page .recent-sold-row2 {
  width: 100%; }
  .recent-sold-highlights .item-page .recent-sold-row2 .recent-sold-blocks {
    width: 19%;
    float: left;
    margin-right: 8%;
    margin-bottom: 2%; }
    @media screen and (max-width: 449px) {
      .recent-sold-highlights .item-page .recent-sold-row2 .recent-sold-blocks {
        width: 50%;
        text-align: center;
        margin-right: 0;
        padding-right: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c81618; } }

.recent-sold-highlights .item-page .recent-sold-row3 {
  width: 100%; }
  .recent-sold-highlights .item-page .recent-sold-row3 .recent-sold-blocks {
    width: 19%;
    float: left;
    margin-right: 8%;
    margin-bottom: 2%; }
    @media screen and (max-width: 449px) {
      .recent-sold-highlights .item-page .recent-sold-row3 .recent-sold-blocks {
        width: 50%;
        text-align: center;
        margin-right: 0;
        padding-right: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c81618; } }

.recent-sold-highlights .item-page .recent-sold-row4 {
  width: 100%; }
  .recent-sold-highlights .item-page .recent-sold-row4 .recent-sold-blocks {
    width: 19%;
    float: left;
    margin-right: 8%;
    margin-bottom: 2%; }
    @media screen and (max-width: 449px) {
      .recent-sold-highlights .item-page .recent-sold-row4 .recent-sold-blocks {
        width: 50%;
        text-align: center;
        margin-right: 0;
        padding-right: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c81618; } }

/*===================================================================
$ Valuation Form Thank You
===================================================================*/
body.valuation-form-thank-you .item-page {
  margin: 50px auto 0; }

/* ====== DEPARTMENTS ====== */
/* ======
DEPARTMENTS
	- General
	- Featured Items Module
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.departments .item-page {
  padding-top: 20px;
  position: relative; }
  .departments .item-page h1 {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0; }

.layout-auction-marketerdepartment-default h1 {
  border: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 15px !important; }

.layout-auction-marketerdepartment-default .overlay-container__wrapper.overlay-container__wrapper {
  max-width: 1000px; }
  @media screen and (max-width: 599px) {
    .layout-auction-marketerdepartment-default .overlay-container__wrapper.overlay-container__wrapper {
      max-width: 100%; } }

.layout-auction-marketerdepartment-default .footer-hold {
  margin-top: 0; }

.departments-main-page-holder {
  padding-top: 20px;
  /*================================================================================
$ OVERRIDES
================================================================================*/
  /*================================================================================
$ GENERAL
================================================================================*/ }
  .departments-main-page-holder h3, .departments-main-page-holder p {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    margin-bottom: 5px; }
  .departments-main-page-holder p {
    font-size: 13px;
    font-weight: lighter; }
  .departments-main-page-holder .departments-block {
    float: left;
    margin-bottom: 20px;
    width: 450px; }
    .departments-main-page-holder .departments-block:nth-child(5), .departments-main-page-holder .departments-block:nth-child(6) {
      margin-bottom: 0; }
    .departments-main-page-holder .departments-block:nth-child(2n+1) {
      margin-right: 60px; }
      @media screen and (max-width: 999px) {
        .departments-main-page-holder .departments-block:nth-child(2n+1) {
          margin: 0 auto 20px; } }
    @media screen and (max-width: 999px) {
      .departments-main-page-holder .departments-block {
        float: none;
        margin: 0 auto 20px;
        max-height: none;
        width: 100%; } }
    .departments-main-page-holder .departments-block h2 {
      margin: 10px 0;
      font-size: 20px; }
    .departments-main-page-holder .departments-block .departments-block__container {
      border-bottom: 3px solid #c81618;
      max-height: 195px;
      position: relative;
      overflow: hidden; }
      .departments-main-page-holder .departments-block .departments-block__container img {
        width: 100%; }
      .departments-main-page-holder .departments-block .departments-block__container .primary-btn, .departments-main-page-holder .departments-block .departments-block__container .pay-online-btn, .departments-main-page-holder .departments-block .departments-block__container .proceed-invoice-btn, .departments-main-page-holder .departments-block .departments-block__container .place-bid-btn, .departments-main-page-holder .departments-block .departments-block__container .login-btn, .departments-main-page-holder .departments-block .departments-block__container .change-bid-btn, .departments-main-page-holder .departments-block .departments-block__container .added-to-wishlist, .departments-main-page-holder .departments-block .departments-block__container .hammer-login-btn {
        bottom: -4px;
        margin-bottom: 0;
        min-width: 200px;
        position: absolute;
        right: 0; }
        @media screen and (max-width: 499px) {
          .departments-main-page-holder .departments-block .departments-block__container .primary-btn, .departments-main-page-holder .departments-block .departments-block__container .pay-online-btn, .departments-main-page-holder .departments-block .departments-block__container .proceed-invoice-btn, .departments-main-page-holder .departments-block .departments-block__container .place-bid-btn, .departments-main-page-holder .departments-block .departments-block__container .login-btn, .departments-main-page-holder .departments-block .departments-block__container .change-bid-btn, .departments-main-page-holder .departments-block .departments-block__container .added-to-wishlist, .departments-main-page-holder .departments-block .departments-block__container .hammer-login-btn {
            bottom: 0;
            width: 100%; } }
        .departments-main-page-holder .departments-block .departments-block__container .primary-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .pay-online-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .proceed-invoice-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .place-bid-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .login-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .change-bid-btn:hover, .departments-main-page-holder .departments-block .departments-block__container .added-to-wishlist:hover, .departments-main-page-holder .departments-block .departments-block__container .hammer-login-btn:hover {
          background-color: #ffffff; }
      .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
        float: left;
        overflow: hidden;
        width: 55%; }
        @media screen and (max-width: 949px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
            max-width: 450px;
            width: 100%; } }
        @media screen and (max-width: 901px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
            max-width: 400px; } }
        @media screen and (max-width: 834px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
            max-width: 350px; } }
        @media screen and (max-width: 768px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
            max-width: 300px; } }
        @media screen and (max-width: 701px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__right {
            max-width: none;
            width: 100%; } }
        .departments-main-page-holder .departments-block .departments-block__container .departments-block__right .departments-block__right__text {
          background-color: #F0F0F0;
          min-height: 175px;
          padding: 10px 0 5px 20px; }
          @media screen and (max-width: 949px) {
            .departments-main-page-holder .departments-block .departments-block__container .departments-block__right .departments-block__right__text {
              padding: 10px 20px 10px 20px; } }
      .departments-main-page-holder .departments-block .departments-block__container .departments-block__left {
        float: left;
        width: 100%; }
        @media screen and (max-width: 479px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__left img {
            padding: 0; } }
        @media screen and (max-width: 701px) {
          .departments-main-page-holder .departments-block .departments-block__container .departments-block__left {
            float: none;
            text-align: center;
            width: 100%; } }

.department-staff-module .department-staff.cf, .department-staff-module section.department-staff, .department-staff-module .department-staff.nav, .department-staff-module .department-staff.nav--inline, .department-staff-module .department-staff.nav--stacked, .department-staff-module .department-staff.nav--tabbed, .department-staff-module .department-staff.nav--breadcrumb, .department-staff-module .department-staff.tab__body, .department-staff-module .department-staff.container, .department-staff-module .department-staff.grid, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner {
  float: left;
  margin-left: 17%;
  width: 22%; }
  @media screen and (max-width: 714px) {
    .department-staff-module .department-staff.cf, .department-staff-module section.department-staff, .department-staff-module .department-staff.nav, .department-staff-module .department-staff.nav--inline, .department-staff-module .department-staff.nav--stacked, .department-staff-module .department-staff.nav--tabbed, .department-staff-module .department-staff.nav--breadcrumb, .department-staff-module .department-staff.tab__body, .department-staff-module .department-staff.container, .department-staff-module .department-staff.grid, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner {
      margin: 0;
      width: 100%; } }
  .department-staff-module .department-staff.cf:first-child, .department-staff-module section.department-staff:first-child, .department-staff-module .department-staff.nav:first-child, .department-staff-module .department-staff.nav--inline:first-child, .department-staff-module .department-staff.nav--stacked:first-child, .department-staff-module .department-staff.nav--tabbed:first-child, .department-staff-module .department-staff.nav--breadcrumb:first-child, .department-staff-module .department-staff.tab__body:first-child, .department-staff-module .department-staff.container:first-child, .department-staff-module .department-staff.grid:first-child, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner:first-child, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner:first-child, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner:first-child, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner:first-child, .department-staff-module .department-staff.cf:nth-child(3n-2), .department-staff-module section.department-staff:nth-child(3n-2), .department-staff-module .department-staff.nav:nth-child(3n-2), .department-staff-module .department-staff.nav--inline:nth-child(3n-2), .department-staff-module .department-staff.nav--stacked:nth-child(3n-2), .department-staff-module .department-staff.nav--tabbed:nth-child(3n-2), .department-staff-module .department-staff.nav--breadcrumb:nth-child(3n-2), .department-staff-module .department-staff.tab__body:nth-child(3n-2), .department-staff-module .department-staff.container:nth-child(3n-2), .department-staff-module .department-staff.grid:nth-child(3n-2), .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner:nth-child(3n-2), .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner:nth-child(3n-2), .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner:nth-child(3n-2), .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner:nth-child(3n-2) {
    clear: left;
    margin-left: 0; }
  .department-staff-module .department-staff.cf .staff-image, .department-staff-module section.department-staff .staff-image, .department-staff-module .department-staff.nav .staff-image, .department-staff-module .department-staff.nav--inline .staff-image, .department-staff-module .department-staff.nav--stacked .staff-image, .department-staff-module .department-staff.nav--tabbed .staff-image, .department-staff-module .department-staff.nav--breadcrumb .staff-image, .department-staff-module .department-staff.tab__body .staff-image, .department-staff-module .department-staff.container .staff-image, .department-staff-module .department-staff.grid .staff-image, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image {
    max-height: 375px;
    max-width: 290px;
    position: relative; }
    @media screen and (max-width: 479px) {
      .department-staff-module .department-staff.cf .staff-image, .department-staff-module section.department-staff .staff-image, .department-staff-module .department-staff.nav .staff-image, .department-staff-module .department-staff.nav--inline .staff-image, .department-staff-module .department-staff.nav--stacked .staff-image, .department-staff-module .department-staff.nav--tabbed .staff-image, .department-staff-module .department-staff.nav--breadcrumb .staff-image, .department-staff-module .department-staff.tab__body .staff-image, .department-staff-module .department-staff.container .staff-image, .department-staff-module .department-staff.grid .staff-image, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image {
        width: 100%;
        max-height: 100%;
        max-width: 100%;
        margin-top: 20px; } }
    .department-staff-module .department-staff.cf .staff-image a, .department-staff-module section.department-staff .staff-image a, .department-staff-module .department-staff.nav .staff-image a, .department-staff-module .department-staff.nav--inline .staff-image a, .department-staff-module .department-staff.nav--stacked .staff-image a, .department-staff-module .department-staff.nav--tabbed .staff-image a, .department-staff-module .department-staff.nav--breadcrumb .staff-image a, .department-staff-module .department-staff.tab__body .staff-image a, .department-staff-module .department-staff.container .staff-image a, .department-staff-module .department-staff.grid .staff-image a, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image a, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image a, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image a, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image a {
      bottom: 0;
      display: block;
      margin: 0;
      min-width: 0;
      position: absolute;
      right: 0;
      width: 100%; }
    .department-staff-module .department-staff.cf .staff-image img, .department-staff-module section.department-staff .staff-image img, .department-staff-module .department-staff.nav .staff-image img, .department-staff-module .department-staff.nav--inline .staff-image img, .department-staff-module .department-staff.nav--stacked .staff-image img, .department-staff-module .department-staff.nav--tabbed .staff-image img, .department-staff-module .department-staff.nav--breadcrumb .staff-image img, .department-staff-module .department-staff.tab__body .staff-image img, .department-staff-module .department-staff.container .staff-image img, .department-staff-module .department-staff.grid .staff-image img, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image img, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image img, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-image img, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-image img {
      padding: 0; }
  .department-staff-module .department-staff.cf .staff-content, .department-staff-module section.department-staff .staff-content, .department-staff-module .department-staff.nav .staff-content, .department-staff-module .department-staff.nav--inline .staff-content, .department-staff-module .department-staff.nav--stacked .staff-content, .department-staff-module .department-staff.nav--tabbed .staff-content, .department-staff-module .department-staff.nav--breadcrumb .staff-content, .department-staff-module .department-staff.tab__body .staff-content, .department-staff-module .department-staff.container .staff-content, .department-staff-module .department-staff.grid .staff-content, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content {
    margin: 0 auto;
    padding-top: 20px;
    text-align: left; }
    .department-staff-module .department-staff.cf .staff-content h3, .department-staff-module section.department-staff .staff-content h3, .department-staff-module .department-staff.nav .staff-content h3, .department-staff-module .department-staff.nav--inline .staff-content h3, .department-staff-module .department-staff.nav--stacked .staff-content h3, .department-staff-module .department-staff.nav--tabbed .staff-content h3, .department-staff-module .department-staff.nav--breadcrumb .staff-content h3, .department-staff-module .department-staff.tab__body .staff-content h3, .department-staff-module .department-staff.container .staff-content h3, .department-staff-module .department-staff.grid .staff-content h3, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h3, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h3, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h3, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h3, .department-staff-module .department-staff.cf .staff-content h4, .department-staff-module section.department-staff .staff-content h4, .department-staff-module .department-staff.nav .staff-content h4, .department-staff-module .department-staff.nav--inline .staff-content h4, .department-staff-module .department-staff.nav--stacked .staff-content h4, .department-staff-module .department-staff.nav--tabbed .staff-content h4, .department-staff-module .department-staff.nav--breadcrumb .staff-content h4, .department-staff-module .department-staff.tab__body .staff-content h4, .department-staff-module .department-staff.container .staff-content h4, .department-staff-module .department-staff.grid .staff-content h4, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h4, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h4, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h4, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h4, .department-staff-module .department-staff.cf .staff-content p, .department-staff-module section.department-staff .staff-content p, .department-staff-module .department-staff.nav .staff-content p, .department-staff-module .department-staff.nav--inline .staff-content p, .department-staff-module .department-staff.nav--stacked .staff-content p, .department-staff-module .department-staff.nav--tabbed .staff-content p, .department-staff-module .department-staff.nav--breadcrumb .staff-content p, .department-staff-module .department-staff.tab__body .staff-content p, .department-staff-module .department-staff.container .staff-content p, .department-staff-module .department-staff.grid .staff-content p, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content p, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content p, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content p, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content p {
      line-height: 1;
      margin-bottom: 9px; }
    .department-staff-module .department-staff.cf .staff-content h3, .department-staff-module section.department-staff .staff-content h3, .department-staff-module .department-staff.nav .staff-content h3, .department-staff-module .department-staff.nav--inline .staff-content h3, .department-staff-module .department-staff.nav--stacked .staff-content h3, .department-staff-module .department-staff.nav--tabbed .staff-content h3, .department-staff-module .department-staff.nav--breadcrumb .staff-content h3, .department-staff-module .department-staff.tab__body .staff-content h3, .department-staff-module .department-staff.container .staff-content h3, .department-staff-module .department-staff.grid .staff-content h3, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h3, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h3, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h3, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h3 {
      font-size: 21px; }
    .department-staff-module .department-staff.cf .staff-content h4, .department-staff-module section.department-staff .staff-content h4, .department-staff-module .department-staff.nav .staff-content h4, .department-staff-module .department-staff.nav--inline .staff-content h4, .department-staff-module .department-staff.nav--stacked .staff-content h4, .department-staff-module .department-staff.nav--tabbed .staff-content h4, .department-staff-module .department-staff.nav--breadcrumb .staff-content h4, .department-staff-module .department-staff.tab__body .staff-content h4, .department-staff-module .department-staff.container .staff-content h4, .department-staff-module .department-staff.grid .staff-content h4, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h4, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h4, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content h4, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content h4 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-style: italic;
      min-height: 55px;
      font-weight: 300;
      margin-bottom: 15px; }
    .department-staff-module .department-staff.cf .staff-content p, .department-staff-module section.department-staff .staff-content p, .department-staff-module .department-staff.nav .staff-content p, .department-staff-module .department-staff.nav--inline .staff-content p, .department-staff-module .department-staff.nav--stacked .staff-content p, .department-staff-module .department-staff.nav--tabbed .staff-content p, .department-staff-module .department-staff.nav--breadcrumb .staff-content p, .department-staff-module .department-staff.tab__body .staff-content p, .department-staff-module .department-staff.container .staff-content p, .department-staff-module .department-staff.grid .staff-content p, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content p, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content p, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content p, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content p {
      margin-bottom: 10px; }
    .department-staff-module .department-staff.cf .staff-content .staff-phone, .department-staff-module section.department-staff .staff-content .staff-phone, .department-staff-module .department-staff.nav .staff-content .staff-phone, .department-staff-module .department-staff.nav--inline .staff-content .staff-phone, .department-staff-module .department-staff.nav--stacked .staff-content .staff-phone, .department-staff-module .department-staff.nav--tabbed .staff-content .staff-phone, .department-staff-module .department-staff.nav--breadcrumb .staff-content .staff-phone, .department-staff-module .department-staff.tab__body .staff-content .staff-phone, .department-staff-module .department-staff.container .staff-content .staff-phone, .department-staff-module .department-staff.grid .staff-content .staff-phone, .department-staff-module .lot_detail .page .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content .staff-phone, .lot_detail .page .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content .staff-phone, .department-staff-module .catalogue-details .buyers-remorse-notification .department-staff.buyers-remorse-inner .staff-content .staff-phone, .catalogue-details .buyers-remorse-notification .department-staff-module .department-staff.buyers-remorse-inner .staff-content .staff-phone {
      font-size: 14px; }

.staff-btn {
  width: 100%;
  max-width: 200px; }

.department-sub-category-selector {
  border-bottom: 1px solid #c81618;
  float: left;
  margin-bottom: 30px;
  padding-bottom: 20px;
  width: 100%; }
  .department-sub-category-selector select {
    background-color: transparent;
    border-radius: 0;
    color: #c81618;
    float: right;
    width: 30%; }
    @media screen and (max-width: 599px) {
      .department-sub-category-selector select {
        margin-top: 15px;
        width: 100%; } }
  .department-sub-category-selector hr {
    display: none; }
  .department-sub-category-selector .sub-category-name {
    border: none !important;
    float: left;
    margin: 15px 0 !important;
    padding: 0 !important;
    width: 100%; }
  .department-sub-category-selector .sub-category-description #lipsum {
    float: left;
    margin: 10px 0 0 0;
    width: 100%; }
  .department-sub-category-selector .department-sub-category-text {
    float: left;
    padding-right: 10px;
    width: 70%; }
    @media screen and (max-width: 599px) {
      .department-sub-category-selector .department-sub-category-text {
        padding-right: 0;
        width: 100%; } }

/*================================================================================
$ GENERAL
================================================================================*/
.department-content {
  margin-top: 10px; }
  .department-content .register-interest-button-holder {
    position: absolute;
    top: 20px;
    right: 0; }
    @media screen and (max-width: 899px) {
      .department-content .register-interest-button-holder {
        margin-bottom: 25px;
        position: static; } }
    .department-content .register-interest-button-holder .register-interest-btn {
      margin-bottom: 0; }
  .department-content .department-sub-category-block {
    float: left;
    width: 100%; }
    body.com_content.fine-wine-and-spirits .department-content .department-sub-category-block {
      margin-top: 20px; }

/*================================================================================
$ Featured Items Module
================================================================================*/
.department-page__featured-lots {
  max-width: 960px;
  width: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 969px) {
    .department-page__featured-lots {
      padding: 10px; } }
  .department-page__featured-lots .featured-lots__list {
    float: left;
    width: 100%; }
    .department-page__featured-lots .featured-lots__list .featured-lots__list-item {
      float: left;
      width: 33.3%;
      margin-bottom: 30px;
      padding: 0 20px; }
      @media screen and (max-width: 799px) {
        .department-page__featured-lots .featured-lots__list .featured-lots__list-item {
          width: 50%;
          min-height: 300px; } }
      @media screen and (max-width: 599px) {
        .department-page__featured-lots .featured-lots__list .featured-lots__list-item {
          width: 100%; } }
      .department-page__featured-lots .featured-lots__list .featured-lots__list-item .featured-lots__image {
        min-height: 200px;
        width: 100%;
        float: left;
        padding: 10px 10px 10px 0; }
        .department-page__featured-lots .featured-lots__list .featured-lots__list-item .featured-lots__image img {
          max-height: 200px;
          margin: 0 auto;
          display: block;
          float: left; }
          @media screen and (max-width: 599px) {
            .department-page__featured-lots .featured-lots__list .featured-lots__list-item .featured-lots__image img {
              max-height: none; } }
      .department-page__featured-lots .featured-lots__list .featured-lots__list-item .featured-lots__details {
        float: left;
        width: 100%;
        text-align: left; }
        @media screen and (max-width: 599px) {
          .department-page__featured-lots .featured-lots__list .featured-lots__list-item .featured-lots__details {
            text-align: center;
            font-size: 16px;
            text-align: center; } }

/* ====== FORUM UNBOLTED ====== */
/* ======
FORUM UNBOLTED 
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.forum-unbolted h4 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif; }

.forum-unbolted span.unbolted-green {
  color: #54b055; }

.forum-unbolted .full-article-image {
  margin-bottom: 0 !important; }

.forum-unbolted .forum-unbolted {
  max-width: none !important; }
  .forum-unbolted .forum-unbolted .top-banner {
    background-color: #54b055; }
    @media screen and (max-width: 849px) {
      .forum-unbolted .forum-unbolted .top-banner {
        padding: 0 20px; } }
    .forum-unbolted .forum-unbolted .top-banner .top-banner-wrapper {
      margin: auto;
      max-width: 960px; }
    .forum-unbolted .forum-unbolted .top-banner .banner-title {
      float: left; }
      .forum-unbolted .forum-unbolted .top-banner .banner-title h1 {
        border-bottom: none;
        color: #ffffff;
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        margin-bottom: 0;
        padding: 20px 0; }
        .forum-unbolted .forum-unbolted .top-banner .banner-title h1 span {
          font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
          font-weight: bold; }
    .forum-unbolted .forum-unbolted .top-banner .banner-logo {
      float: right;
      margin-bottom: 0;
      padding: 20px 0;
      width: 150px; }
      @media screen and (max-width: 849px) {
        .forum-unbolted .forum-unbolted .top-banner .banner-logo {
          float: left; } }
  .forum-unbolted .forum-unbolted .main-content-wrapper {
    margin: 50px auto;
    max-width: 960px; }
    @media screen and (max-width: 959px) {
      .forum-unbolted .forum-unbolted .main-content-wrapper {
        padding: 0 10px; } }
    .forum-unbolted .forum-unbolted .main-content-wrapper .title-text h3 {
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 26px;
      font-weight: bold; }
    .forum-unbolted .forum-unbolted .main-content-wrapper .title-text h4 {
      border-bottom: 1px solid #3c3c3b;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 26px;
      font-weight: 400;
      padding-bottom: 30px; }
    .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .left-col {
      max-width: 420px; }
      @media screen and (max-width: 959px) {
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .left-col {
          margin-right: 5%; } }
    .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col {
      float: right;
      margin-top: 10px;
      max-width: 420px; }
      @media screen and (max-width: 959px) {
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col {
          width: 45%; } }
      @media screen and (max-width: 599px) {
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col {
          float: left;
          width: 100% !important; } }
      .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col a {
        color: #54b055;
        font-weight: 600; }
      .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col ul {
        list-style: inside; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .right-col ul li span {
          color: #54b055;
          font-weight: 600; }
    .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul {
      list-style: none; }
      .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li {
        float: left;
        width: 100%; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li .error {
          color: #C1272D; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li label {
          float: left;
          font-size: 14px;
          font-weight: 400;
          margin-bottom: 10px;
          width: 100%; }
          .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li label span {
            color: #54b055; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li div {
          float: left;
          margin-bottom: 20px;
          width: 100%; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li fieldset {
          border: none !important; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 {
          border-bottom: 1px solid #3c3c3b;
          margin-bottom: 20px; }
          .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 fieldset {
            float: left;
            width: 90%; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 fieldset label {
              float: none;
              margin-right: 20px; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 fieldset span {
              color: #4D4D4D; }
          .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .info-hover {
            cursor: pointer;
            float: left;
            text-align: right;
            width: 10%; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .info-hover img {
              width: 15px; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .info-hover:hover .hover-message {
              display: block !important; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .info-hover .hover-message {
              background-color: #ffffff;
              border: 1px solid #000000;
              display: none;
              left: 48%;
              position: absolute;
              top: 9%;
              width: 300px; }
              .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .info-hover .hover-message p {
                padding: 10px;
                text-align: left; }
          .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .field-info {
            float: left;
            width: 100%; }
            .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li#foli101 .field-info p {
              font-size: 12px;
              font-weight: 400; }
        .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li.buttons input {
          background-color: #54b055 !important;
          border-color: #54b055 !important; }
          .forum-unbolted .forum-unbolted .main-content-wrapper .main-content #form46 ul li.buttons input:hover {
            background-color: transparent !important;
            color: #54b055 !important; }
    .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .compulsory-fields {
      float: left;
      width: 100%; }
      .forum-unbolted .forum-unbolted .main-content-wrapper .main-content .compulsory-fields p {
        font-size: 12px;
        font-weight: 600; }

/* ====== HOMEPAGE ====== */
/* ======
HOMEPAGE
	- GENERAL
	- UPCOMING AUCTIONS
	- BUYING AND SELLING
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.home .main-banner-container {
  margin-bottom: 10px; }
  @media screen and (max-width: 1059px) {
    body.home .main-banner-container {
      margin-bottom: 25px; } }

body.home .page {
  padding: 0;
  width: 100%; }

body.home .footer-hold {
  margin-top: 0; }

body.home h2.h1 {
  border-bottom: 1px solid #d7d7d7;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px; }

body.home .item-page .moduletable {
  margin-bottom: 20px; }
  body.home .item-page .moduletable:first-child {
    margin-top: 15px;
    border-bottom: 1px solid #c81618; }

/*================================================================================
$ UPCOMING AUCTIONS
================================================================================*/
ul.upcoming_auction {
  margin: 0; }

.upcoming-auctions .upcoming-auctions_content h2 {
  color: #4D4D4D;
  float: left;
  line-height: 1;
  min-height: 25px;
  margin: 10px 0 0;
  padding: 0;
  width: 100%; }
  @media screen and (max-width: 899px) {
    .upcoming-auctions .upcoming-auctions_content h2 {
      font-size: 20px;
      min-height: 20px; } }
  @media screen and (max-width: 769px) {
    .upcoming-auctions .upcoming-auctions_content h2 {
      font-size: 16px; } }
  .upcoming-auctions .upcoming-auctions_content h2 a {
    color: #4D4D4D;
    font-weight: 500;
    text-decoration: none; }

.upcoming-auctions .upcoming-auctions_content .auction-date {
  font-family: "Merriweather", "merriweather", merriweather, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
  min-height: 24px; }
  @media screen and (max-width: 769px) {
    .upcoming-auctions .upcoming-auctions_content .auction-date {
      font-size: 13px;
      min-height: 20px; } }

.upcoming-auctions .upcoming-auctions_content p {
  float: left;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  width: 100%; }
  @media screen and (max-width: 769px) {
    .upcoming-auctions .upcoming-auctions_content p {
      font-size: 12px; } }

.upcoming-auctions .upcoming-auctions_image {
  display: block;
  float: left;
  height: auto;
  max-height: 231px;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%; }
  @media screen and (max-width: 799px) {
    .upcoming-auctions .upcoming-auctions_image {
      max-height: 210px; } }
  @media screen and (max-width: 499px) {
    .upcoming-auctions .upcoming-auctions_image {
      height: auto;
      text-align: center; } }
  .upcoming-auctions .upcoming-auctions_image .upcoming-img {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: 100%; }
    @media screen and (min-width: 500px) and (max-width: 119999px) {
      .upcoming-auctions .upcoming-auctions_image .upcoming-img {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: transform 0.3s ease-in-out 0s;
        -moz-transition: transform 0.3s ease-in-out 0s;
        -ms-transition: transform 0.3s ease-in-out 0s;
        -o-transition: transform 0.3s ease-in-out 0s;
        transition: transform 0.3s ease-in-out 0s; } }
    @media screen and (min-width: 0px) and (max-width: 799px) {
      .upcoming-auctions .upcoming-auctions_image .upcoming-img {
        min-height: 0;
        max-width: 100%;
        width: 100%; } }
    @media screen and (max-width: 499px) {
      .upcoming-auctions .upcoming-auctions_image .upcoming-img {
        display: inline-block; } }
  .upcoming-auctions .upcoming-auctions_image .small-solid-logo {
    left: 0;
    position: absolute;
    top: 0; }
    @media screen and (max-width: 699px) {
      .upcoming-auctions .upcoming-auctions_image .small-solid-logo {
        max-width: 25px; } }
  .upcoming-auctions .upcoming-auctions_image .readmore {
    bottom: 0;
    color: #ffffff;
    font-size: 15px;
    right: 0;
    min-width: 180px;
    padding: 3px 5px;
    position: absolute;
    text-decoration: none; }

@-moz-document url-prefix() {
  .upcoming-auctions .upcoming-auctions_image .readmore {
    bottom: 0px; } }
    @media screen and (max-width: 769px) {
      .upcoming-auctions .upcoming-auctions_image .readmore {
        font-size: 13px; } }
    @media screen and (max-width: 499px) {
      .upcoming-auctions .upcoming-auctions_image .readmore {
        bottom: 0;
        width: 100%; } }
    .upcoming-auctions .upcoming-auctions_image .readmore:hover {
      background-color: transparent; }

.upcoming-auctions li {
  float: left;
  margin-bottom: 30px; }
  .upcoming-auctions li.style_two {
    width: 61.3%; }
    @media screen and (max-width: 499px) {
      .upcoming-auctions li.style_two {
        margin-right: 0;
        width: 100%; } }
  .upcoming-auctions li.style_one {
    width: 36.4%; }
    @media screen and (max-width: 499px) {
      .upcoming-auctions li.style_one {
        width: 100%; } }
  @media screen and (min-width: 500px) and (max-width: 119999px) {
    .upcoming-auctions li.style_two:first-child {
      margin-right: 2.3%; } }
  @media screen and (min-width: 500px) and (max-width: 119999px) {
    .upcoming-auctions li.style_two:last-child {
      margin-left: 2.3%; } }
  .upcoming-auctions li.color_darkgrey .upcoming-auctions_image {
    border-bottom: 3px solid #3c3c3b; }
  .upcoming-auctions li.color_darkgrey .readmore {
    background: #3c3c3b;
    border: 3px solid #3c3c3b;
    border-bottom: none; }
    .upcoming-auctions li.color_darkgrey .readmore:hover {
      -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      background-color: #ffffff;
      color: #3c3c3b; }
  .upcoming-auctions li.color_red .upcoming-auctions_image {
    border-bottom: 3px solid #c81618; }
  .upcoming-auctions li.color_red .readmore {
    background: #c81618;
    border: 3px solid #c81618;
    border-bottom: none; }
    .upcoming-auctions li.color_red .readmore:hover {
      -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      background-color: #ffffff;
      color: #c81618; }

/*================================================================================
$ HOMEPAGE BLOCKS
================================================================================*/
.homepage_block_items li {
  background: #d7d7d7;
  float: left;
  margin: 0 0 40px;
  width: 100%; }
  @media screen and (max-width: 499px) {
    .homepage_block_items li {
      text-align: center; } }
  .homepage_block_items li:nth-child(2) {
    clear: left;
    margin: 0 0 40px; }
  .homepage_block_items li:last-child {
    margin-bottom: 20px; }

.homepage_block_items .homepage_block_image {
  float: right;
  max-width: 620px;
  overflow: hidden;
  text-align: right;
  width: 41%; }
  @media screen and (max-width: 499px) {
    .homepage_block_items .homepage_block_image {
      height: auto !important;
      padding: 10px;
      text-align: center;
      width: 100%; } }
  .homepage_block_items .homepage_block_image img {
    height: auto;
    max-width: 100%;
    transform: scale(1.3);
    -webkit-transition: transform 0.3s ease-in-out 0s;
    -moz-transition: transform 0.3s ease-in-out 0s;
    -ms-transition: transform 0.3s ease-in-out 0s;
    -o-transition: transform 0.3s ease-in-out 0s;
    transition: transform 0.3s ease-in-out 0s;
    -webkit-transition: -webkit-transform 0.3s ease-in-out 0s;
    -moz-transition: -webkit-transform 0.3s ease-in-out 0s;
    -ms-transition: -webkit-transform 0.3s ease-in-out 0s;
    -o-transition: -webkit-transform 0.3s ease-in-out 0s;
    transition: -webkit-transform 0.3s ease-in-out 0s;
    width: auto;
    margin-top: 30px;
    padding-left: 30px;
    /*&:hover {
	    		@include media-query-bracket(500px, $massive-wide){
					@include prefix(transform, scale(1.2));
				}
	    	}*/ }
    @media screen and (max-width: 799px) {
      .homepage_block_items .homepage_block_image img {
        margin-top: 20px; } }
    @media screen and (max-width: 499px) {
      .homepage_block_items .homepage_block_image img {
        height: auto;
        max-width: 100%; } }
    @media screen and (max-width: 416px) {
      .homepage_block_items .homepage_block_image img {
        margin-top: 10px; } }

.homepage_block_items .homepage_block_content {
  float: left;
  padding: 80px;
  position: relative;
  width: 59%; }
  @media screen and (max-width: 799px) {
    .homepage_block_items .homepage_block_content {
      padding: 60px; } }
  @media screen and (max-width: 599px) {
    .homepage_block_items .homepage_block_content {
      padding: 40px 20px; } }
  @media screen and (max-width: 499px) {
    .homepage_block_items .homepage_block_content {
      padding: 10px 20px 40px;
      width: 100%; } }
  .homepage_block_items .homepage_block_content p {
    font-size: 13px;
    min-height: 60px;
    line-height: 1.2;
    max-width: 370px; }
  .homepage_block_items .homepage_block_content h2 {
    margin-bottom: 0; }
    .homepage_block_items .homepage_block_content h2 a {
      color: #4D4D4D;
      font-weight: 500;
      font-size: 20px;
      text-decoration: none; }
  .homepage_block_items .homepage_block_content .readmore {
    border: 3px solid #c81618;
    bottom: -3px;
    font-size: 15px;
    left: 0;
    padding: 5px 50px 7px;
    position: absolute;
    text-decoration: none; }

@-moz-document url-prefix() {
  .homepage_block_items .homepage_block_content .readmore {
    bottom: -1px; } }
    @media screen and (max-width: 499px) {
      .homepage_block_items .homepage_block_content .readmore {
        bottom: 0;
        width: 100%; } }
    .homepage_block_items .homepage_block_content .readmore:nth-child(2) {
      border-left: 3px solid #cecdcd !important;
      border-top: 1px solid #cecdcd !important; }
    .homepage_block_items .homepage_block_content .readmore:hover {
      background-color: transparent !important;
      color: #c81618 !important; }

.homepage_block_items .homepage_block_item.style_left .homepage_block_image {
  float: left; }
  @media screen and (min-width: 500px) and (max-width: 119999px) {
    .homepage_block_items .homepage_block_item.style_left .homepage_block_image {
      text-align: left; } }

.homepage_block_items .homepage_block_item.style_left .readmore {
  left: initial;
  right: 0; }

.homepage_block_items .homepage_block_item.color_red {
  border-bottom: 3px solid #c81618; }
  .homepage_block_items .homepage_block_item.color_red .readmore {
    background: #c81618;
    color: #ffffff;
    border-bottom: none; }

.homepage_block_items .homepage_block_item.color_dark-grey {
  border-bottom: 3px solid #3c3c3b; }
  .homepage_block_items .homepage_block_item.color_dark-grey .readmore {
    border: 3px solid #3c3c3b;
    background: #3c3c3b;
    color: #ffffff;
    border-bottom: none; }
    .homepage_block_items .homepage_block_item.color_dark-grey .readmore:hover {
      background: transparent;
      color: #3c3c3b !important; }

.homepage_block_items .homepage_block_item.color_none {
  border-bottom: none; }

/* ====== NEWS LETTER PREF ====== */
/* ======
NEWS LETTER PREF
	- SIGN UP GENENAL
	- SIGN UP
	- MY PREFERENCES
====== */
/*================================================================================
$ SIGN UP GENENAL
================================================================================*/
.newsletter .newsletter-preferences-form {
  margin-bottom: 5%; }
  .newsletter .newsletter-preferences-form > p {
    float: left;
    margin-bottom: 1.5%;
    padding: 10px 0;
    width: 50%; }
  .newsletter .newsletter-preferences-form input {
    float: left;
    margin-right: 3%;
    margin-top: 3px; }

/*================================================================================
$ SIGN UP
================================================================================*/
body.news-pref-body table {
  margin-top: 0; }
  body.news-pref-body table tr {
    display: block;
    float: left;
    width: 50%; }
    @media screen and (max-width: 599px) {
      body.news-pref-body table tr {
        width: 100%; } }
    body.news-pref-body table tr:first-child, body.news-pref-body table tr:nth-child(2) {
      width: 100%; }
      body.news-pref-body table tr:first-child .sectionHeader, body.news-pref-body table tr:nth-child(2) .sectionHeader {
        color: #c81618;
        font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
        font-size: 4em;
        font-style: italic;
        font-weight: 300;
        line-height: 32px;
        margin-bottom: 20px; }
        @media screen and (max-width: 599px) {
          body.news-pref-body table tr:first-child .sectionHeader, body.news-pref-body table tr:nth-child(2) .sectionHeader {
            font-size: 3em; } }
      body.news-pref-body table tr:first-child div, body.news-pref-body table tr:nth-child(2) div {
        width: 100% !important; }
    body.news-pref-body table tr > td {
      padding: 0 !important; }
      body.news-pref-body table tr > td > div {
        padding: 10px 0;
        width: 100% !important; }
  body.news-pref-body table table {
    margin-bottom: 0;
    margin-top: 0;
    width: 100%; }
  body.news-pref-body table label {
    color: #c81618;
    display: block;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 0; }

body.news-pref-body > p {
  display: none; }

body.news-pref-body input.buttonStyle {
  background: none repeat scroll 0 0 !important;
  border: 1px solid #c81618 !important;
  border-radius: 0 !important;
  color: #c81618 !important;
  font-size: 13px !important;
  height: auto !important;
  line-height: inherit !important;
  padding: 6px 20px 5px !important;
  width: auto !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  display: inline-block; }

body.news-pref-complete-body h1 {
  text-align: left !important; }
  body.news-pref-complete-body h1 em {
    color: #c81618;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 40px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 10px; }
    @media screen and (max-width: 599px) {
      body.news-pref-complete-body h1 em {
        font-size: 30px; } }

/*================================================================================
$ MY PREFERENCES
================================================================================*/
.myaccount-right form {
  margin-top: 20px; }
  .myaccount-right form .input-department-hold {
    float: left;
    margin-bottom: 10px;
    width: 50%; }
    @media screen and (max-width: 499px) {
      .myaccount-right form .input-department-hold {
        width: 100%; } }
    .myaccount-right form .input-department-hold input {
      display: inline-block;
      margin-right: 3%;
      vertical-align: middle; }
    .myaccount-right form .input-department-hold p {
      display: inline-block;
      margin: 0;
      vertical-align: middle; }
  .myaccount-right form .my-pref-button {
    float: right; }

/* ====== NEWS PAGES ====== */
/* ======
NEWS PAGES
	- GENERAL
	- FULL ARTICLE
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.blog p {
  color: #606060;
  font-size: 15px; }

.blog .items-row {
  list-style: none;
  border-bottom: 1px solid #bbbebf;
  font-size: 1.4em;
  padding: 30px 0;
  zoom: 1; }
  .blog .items-row:before, .blog .items-row:after {
    content: "";
    display: table; }
  .blog .items-row:after {
    clear: both; }

.blog .news-date {
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  display: block;
  margin: 10px 0; }
  @media screen and (max-width: 449px) {
    .blog .news-date {
      font-size: 18px; } }

.blog .news-title {
  font-size: 31px;
  font-weight: 300;
  display: block;
  padding-top: 0; }
  @media screen and (max-width: 449px) {
    .blog .news-title {
      font-size: 18px; } }

.blog .latest-news-pic-hold {
  max-width: 100%;
  display: inline-block;
  float: left;
  overflow: hidden;
  width: 100%; }
  .blog .latest-news-pic-hold img {
    width: 100%;
    max-height: 250px; }

.blog .lastest-news-holder {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  float: left;
  font-size: 14px; }

.blog .light-button.read-more-link {
  float: left; }

.blog .items-more {
  display: none; }

.blog .pagination {
  margin: 30px 0;
  zoom: 1; }
  .blog .pagination:before, .blog .pagination:after {
    content: "";
    display: table; }
  .blog .pagination:after {
    clear: both; }
  .blog .pagination .counter {
    float: right;
    font-size: 11px;
    margin: 0; }
  .blog .pagination > ul {
    float: right;
    margin: 0;
    text-align: center;
    width: 100%; }
  .blog .pagination li {
    display: inline-block;
    margin: 1px; }
  .blog .pagination .pagenav {
    font-size: 14px;
    padding: 5px 2px; }

.blog .pagination:first-child {
  margin: 0; }

/*================================================================================
$ FULL ARTICLE
================================================================================*/
.back-to-news-link {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 15px;
  width: 100%; }
  @media screen and (max-width: 959px) {
    .back-to-news-link {
      padding: 0 10px; } }
  .back-to-news-link a {
    border-bottom: 1px solid #bbbebf;
    display: block;
    padding: 10px 0;
    font-weight: 600;
    color: #4D4D4D; }

.search fieldset {
  margin-bottom: 7%; }

.search #search-searchword {
  color: #c81618;
  margin-right: 1%;
  font-size: 12px;
  padding: 5px; }

.search button {
  background: none repeat scroll 0 0 !important;
  border: 1px solid #c81618 !important;
  border-radius: 0 !important;
  color: #c81618 !important;
  font-size: 13px !important;
  height: auto !important;
  line-height: inherit !important;
  padding: 6px 20px 5px !important;
  width: auto !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  display: inline-block; }

.search .word {
  margin-bottom: 0; }
  .search .word label {
    font-size: 18px;
    font-weight: 300; }

.search .searchintro {
  margin-bottom: 7%; }
  .search .searchintro strong {
    font-weight: 300; }

.search .phrases label {
  font-size: 18px;
  font-weight: 300; }

.search .phrases-box {
  margin-bottom: 3%; }
  .search .phrases-box input {
    display: inline-block;
    vertical-align: middle; }
  .search .phrases-box label {
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    margin-right: 3%;
    vertical-align: middle;
    margin-bottom: 0; }

.search .ordering-box label {
  font-size: 18px;
  font-weight: 300; }

.search .ordering-box .inputbox {
  width: 15%;
  max-width: 100px;
  font-size: 12px;
  min-width: 90px; }

.search .only .search-option-header {
  width: 100%;
  font-size: 18px;
  font-weight: 300; }

.search .only input {
  display: inline-block;
  vertical-align: middle; }

.search .only label {
  display: inline-block;
  font-size: 15px;
  font-weight: 300;
  margin-right: 3%;
  vertical-align: middle;
  margin-bottom: 0; }

.search .form-limit {
  margin-bottom: 10%; }
  .search .form-limit label {
    font-size: 18px;
    font-weight: 300; }
  .search .form-limit .inputbox {
    font-size: 12px;
    max-width: 100px;
    width: 15%;
    min-width: 90px; }

.search .search-results {
  margin: 0;
  padding: 1%; }
  .search .search-results .result-title {
    font-size: 15px;
    margin-top: 2%;
    padding: 0; }
    .search .search-results .result-title:first-child {
      margin-top: 0; }
  .search .search-results .result-category span {
    font-size: 14px; }
  .search .search-results .result-text {
    font-size: 12px; }
  .search .search-results .result-text {
    font-size: 12px; }
    .search .search-results .result-text .highlight {
      font-size: 13px;
      font-weight: bold;
      text-decoration: underline;
      text-transform: uppercase; }
  .search .search-results .result-created {
    border-bottom: 1px solid #CCCCCC;
    font-size: 14px;
    padding-bottom: 2%; }

/* ====== VALUATION FORM ====== */
/* ======
VALUATION FORM
	- GENERAL
	- INPUT FIELDS
	- ERROR MESSAGES

====== */
/*================================================================================
$ GENERAL 
================================================================================*/
.department-contacts .valuation-form {
  background: #cecdcd;
  float: left;
  padding: 20px;
  width: 100%; }
  .department-contacts .valuation-form .form_description p {
    font-weight: 300;
    padding-top: 0; }
  .department-contacts .valuation-form input, .department-contacts .valuation-form select {
    font-size: 16px; }

/*================================================================================
$ INPUT FIELDS 
================================================================================*/
.department-content {
  float: left;
  width: 100%;
  zoom: 1; }
  .department-content:before, .department-content:after {
    content: "";
    display: table; }
  .department-content:after {
    clear: both; }
  .department-content .valuation-form {
    background: #cecdcd;
    padding: 20px; }
    .department-content .valuation-form ul {
      margin-left: 0; }
      .department-content .valuation-form ul li {
        list-style: none;
        padding: 10px 0;
        zoom: 1; }
        .department-content .valuation-form ul li:before, .department-content .valuation-form ul li:after {
          content: "";
          display: table; }
        .department-content .valuation-form ul li:after {
          clear: both; }
        .department-content .valuation-form ul li > label {
          float: left;
          font-size: 18px;
          font-weight: 300;
          width: 40%; }
        .department-content .valuation-form ul li > div {
          float: left;
          width: 60%; }
    .department-content .valuation-form .description-text {
      display: none; }
      .department-content .valuation-form .description-text.active {
        display: block; }
      .department-content .valuation-form .description-text p {
        font-size: 16px; }
    .department-content .valuation-form .section_break p {
      font-size: 16px; }
    .department-content .valuation-form li#li_6 > div {
      width: 100%; }
    .department-content .valuation-form li#li_9 {
      width: 100% !important; }
      .department-content .valuation-form li#li_9 input {
        font-size: 14px; }
      .department-content .valuation-form li#li_9 > label {
        width: 5%; }
      .department-content .valuation-form li#li_9 > div {
        float: left;
        width: 95%; }
    @media screen and (max-width: 499px) {
      .department-content .valuation-form li#li_15 > label {
        width: 100%; } }
    @media screen and (max-width: 499px) {
      .department-content .valuation-form li#li_15 > div {
        width: 100%; } }
    .department-content .valuation-form li#li_15 > div label {
      display: inline-block;
      font-size: 16px;
      font-weight: 300;
      width: auto; }
    @media screen and (max-width: 499px) {
      .department-content .valuation-form li#li_captcha > label {
        width: 100%; } }
    @media screen and (max-width: 499px) {
      .department-content .valuation-form li#li_captcha > div {
        width: 100%; } }

/*================================================================================
$ ERROR MESSAGES 
================================================================================*/
.department-content .valuation-form .error-valuation-list, .department-content .valuation-form #error-valuation-text {
  color: red;
  font-size: 16px;
  padding: 0; }
  .department-content .valuation-form .error-valuation-list p, .department-content .valuation-form #error-valuation-text p {
    color: red;
    font-size: 16px; }

/* ====== CONTACT ====== */
/* ======
CONTACT
	- GENERAL
	- MAP
	- DIRECTIONS
	- CONTACT FORM
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.contact-us {
  /*================================================================================
$ MAP
================================================================================*/
  /*================================================================================
$ DIRECTIONS
================================================================================*/ }
  .contact-us h1 {
    margin-bottom: 0 !important; }
  .contact-us h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 25px 0px 0px 0px; }
  .contact-us h5 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-weight: 600;
    padding-top: 6px; }
  .contact-us p {
    margin-bottom: 25px; }
    @media screen and (max-width: 599px) {
      .contact-us p {
        max-width: none; } }
    @media screen and (max-width: 799px) {
      .contact-us p {
        margin-bottom: 10px;
        max-width: none; } }
  .contact-us .overlay-trigger-holder .overlay-container__wrapper {
    max-width: 741px;
    padding: 0 3%;
    background-color: #F0F0F0; }
    .contact-us .overlay-trigger-holder .overlay-container__wrapper .overlay-content {
      background-color: #F0F0F0;
      padding: 20px; }
  .contact-us .full-article-image {
    margin-bottom: 5px; }
    @media screen and (max-width: 599px) {
      .contact-us .full-article-image {
        display: none; } }
  .contact-us .contact-section {
    border-bottom: 2px solid #3c3c3b; }
    .contact-us .contact-section .contact-left {
      float: left;
      width: 55%;
      padding-right: 15px;
      margin-top: 23px; }
      @media screen and (max-width: 799px) {
        .contact-us .contact-section .contact-left {
          margin-top: 1px;
          padding-right: 20px; } }
      .contact-us .contact-section .contact-left h5 {
        font-size: 16px; }
      @media screen and (max-width: 599px) {
        .contact-us .contact-section .contact-left {
          width: 100%; } }
      .contact-us .contact-section .contact-left a {
        font-weight: 600; }
    .contact-us .contact-section .contact-right {
      float: right;
      width: 45%; }
      @media screen and (max-width: 599px) {
        .contact-us .contact-section .contact-right {
          text-align: center;
          width: 100%; } }
      .contact-us .contact-section .contact-right iframe {
        border-bottom: 3px solid #c81618;
        width: 100%; }
      .contact-us .contact-section .contact-right .secondary-btn {
        float: right;
        border-bottom: none;
        margin-bottom: 0;
        margin-top: 20px; }
        @media screen and (max-width: 599px) {
          .contact-us .contact-section .contact-right .secondary-btn {
            width: 100%;
            border: 2px solid #3c3c3b;
            border-bottom: none; } }
  .contact-us .company-information p {
    font-size: 11px;
    max-width: none;
    padding-top: 20px; }
  .contact-us .contact-right iframe {
    height: 290px !important;
    float: right;
    max-width: 400px;
    width: 100% !important; }
    @media screen and (max-width: 599px) {
      .contact-us .contact-right iframe {
        max-width: 70%; } }
    @media screen and (max-width: 759px) {
      .contact-us .contact-right iframe {
        height: 395px !important;
        max-width: 100%; } }
    @media screen and (max-width: 799px) {
      .contact-us .contact-right iframe {
        margin-top: 16px; } }
  .contact-us .contact-directions {
    border: 1px solid #4D4D4D;
    float: left;
    margin-top: 40px;
    padding: 25px;
    width: 100%; }
    @media screen and (max-width: 599px) {
      .contact-us .contact-directions {
        padding: 15px; } }

/*================================================================================
$ CONTACT FORM
================================================================================*/
.contact-form {
  margin: -20px 0;
  padding: 10px; }
  .contact-form ul {
    margin: 0; }
  .contact-form li {
    padding-bottom: 10px; }
  .contact-form .buttons input {
    margin: 0; }
  .contact-form h2 {
    font-size: 31px;
    padding-bottom: 15px; }
  .contact-form .small-text {
    font-size: 11px; }
  .contact-form #Field6 {
    max-height: 150px; }

/* ====== BUYING AND SELLING ====== */
/* ======
BUYING AND SELLING
	- GENERAL
	- PALETS
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.selling .full-article-image, .buying .full-article-image {
  margin-bottom: 5px; }
  @media screen and (max-width: 599px) {
    .selling .full-article-image, .buying .full-article-image {
      display: none; } }

.selling .item-page, .buying .item-page {
  max-width: 960px; }
  .selling .item-page h2, .buying .item-page h2 {
    padding-right: 20px; }
  .selling .item-page p, .buying .item-page p {
    margin-bottom: 20px; }
  .selling .item-page .primary-btn, .selling .item-page .pay-online-btn, .selling .item-page .proceed-invoice-btn, .selling .item-page .place-bid-btn, .selling .item-page .login-btn, .selling .item-page .change-bid-btn, .selling .item-page .added-to-wishlist, .selling .item-page .hammer-login-btn, .buying .item-page .primary-btn, .buying .item-page .pay-online-btn, .buying .item-page .proceed-invoice-btn, .buying .item-page .place-bid-btn, .buying .item-page .login-btn, .buying .item-page .change-bid-btn, .buying .item-page .added-to-wishlist, .buying .item-page .hammer-login-btn {
    margin: 0;
    padding: 5px 50px; }
  .selling .item-page .button-p, .buying .item-page .button-p {
    margin: 0 auto; }
  .selling .item-page .btn-p, .buying .item-page .btn-p {
    margin: 0; }
    .selling .item-page .btn-p a, .buying .item-page .btn-p a {
      margin: 0px 0 10px;
      padding: 5px 40px; }
  .selling .item-page .border-p, .buying .item-page .border-p {
    border-bottom: 2px solid #c81618;
    margin-bottom: 18px;
    padding-bottom: 22px; }
  .selling .item-page .selling-page-btn.selling-page-btn, .buying .item-page .selling-page-btn.selling-page-btn {
    margin-bottom: 0; }

/*================================================================================
$ PALETS
================================================================================*/
.palet-section {
  margin-bottom: 2%; }
  .palet-section.two .palet {
    float: left;
    margin-right: 1%;
    width: 49%; }
    .palet-section.two .palet:last-child {
      margin-right: 0;
      margin-left: 1%; }

/* ====== APPRAISALS ====== */
/* ======
APPRAISALS
	- GENERAL
	- PALETS
	- NEW VALUATION FORM 
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.valuation-form {
  background: #cecdcd;
  margin: 30px auto 0;
  max-width: 960px;
  padding: 2% 5%;
  width: 100%; }
  .valuation-form h2 {
    text-align: center; }
  .valuation-form input, .valuation-form select, .valuation-form textarea {
    margin-top: 10px 0;
    border: 2px solid #ffffff;
    padding: 7px 10px; }
  .valuation-form form li {
    float: left;
    margin-top: 10px;
    width: 100%;
    text-align: center; }
  .valuation-form form select {
    width: 100%; }
  .valuation-form .buttons {
    text-align: center; }
    .valuation-form .buttons input {
      min-width: 150px;
      float: right;
      border: 1px solid #c81618; }
  .valuation-form .description-text {
    display: none; }
  .valuation-form #li_7.description-text, .valuation-form .description-text.active {
    display: block; }
  .valuation-form #li_1, .valuation-form #li_2, .valuation-form #li_5, .valuation-form #li_4, .valuation-form #li_10, .valuation-form #li_13 {
    float: left;
    width: 100%; }
  .valuation-form p, .valuation-form span {
    text-align: center; }
  .valuation-form #captcha_response_field {
    width: 50%;
    text-align: center;
    text-transform: none; }

/*================================================================================
$ NEW VALUATION FORM
================================================================================*/
.valuation-form-wrapper {
  float: left;
  padding-bottom: 20px !important;
  padding-top: 10px;
  width: 100%; }
  .valuation-form-wrapper .request-valuation {
    margin-bottom: 0 !important;
    min-width: 270px; }

.new-valuation-form {
  float: left;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2% 6% 1% 6%;
  background: #cecdcd; }
  .new-valuation-form .valuations-form-title {
    margin: 0 auto;
    max-width: 700px; }
    .new-valuation-form .valuations-form-title p {
      margin-bottom: 15px; }
  .new-valuation-form h2 {
    font-size: 24px;
    text-align: left; }
  .new-valuation-form .form-4 input {
    margin-bottom: 0; }
  .new-valuation-form .form-5 textarea {
    margin-top: 0; }
  .new-valuation-form input, .new-valuation-form textarea {
    margin: 5px 0; }
  .new-valuation-form .submit-val {
    float: left;
    clear: both; }
  .new-valuation-form #valuation-form {
    max-width: 700px;
    margin: 0 auto; }
  .new-valuation-form .p_scents label, .new-valuation-form .p_scents a {
    padding: 3px 20px 5px !important; }
  .new-valuation-form .p_scents p {
    color: #6f6f6e;
    font-weight: 300;
    float: left;
    line-height: 1.2 !important;
    width: 100%; }
    .new-valuation-form .p_scents p:first-child {
      padding-top: 10px; }
  .new-valuation-form .p_scents a {
    float: left;
    width: 100%; }
  .new-valuation-form .p_scents .secondary-btn:hover, .new-valuation-form .p_scents .secondary-btn:focus, .new-valuation-form .p_scents .secondary-btn:active {
    background-color: transparent !important; }
  .new-valuation-form .p_scents .addScnt {
    width: auto;
    clear: both; }
  .new-valuation-form .p_scents .remScnt {
    float: right;
    margin: 10px 0 0 0;
    width: auto; }
  .new-valuation-form .p_scents span {
    float: left;
    margin-top: 10px;
    padding-left: 10px; }
  .new-valuation-form .required-fields {
    float: left;
    text-align: left;
    width: 100%; }
    .new-valuation-form .required-fields p {
      font-size: 11px;
      font-weight: 300;
      margin: 5px 0 0 0; }
  .new-valuation-form label.choose-file-btn {
    border: 2px solid #4D4D4D;
    background-color: #4D4D4D;
    color: #ffffff;
    float: left;
    margin-bottom: 12px;
    padding: 7px 10px;
    width: auto; }
    .new-valuation-form label.choose-file-btn:hover {
      background-color: transparent;
      color: #4D4D4D;
      -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
    .new-valuation-form label.choose-file-btn input {
      background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
      border: medium none;
      height: 0.1px;
      opacity: 0;
      padding-left: 0;
      position: absolute;
      width: 0.1px;
      z-index: -1; }
  .new-valuation-form .progress {
    display: block;
    text-align: center;
    width: 0;
    height: 10px;
    background: #c81618;
    transition: width .3s;
    float: left; }
    .new-valuation-form .progress.hide {
      opacity: 0;
      transition: opacity 1.3s; }

.moduletable.contact-form {
  background: #F0F0F0;
  padding: 2% 0 0% 0;
  max-width: 960px;
  margin: 25px auto; }
  @media screen and (max-width: 959px) {
    .moduletable.contact-form {
      padding: 0 10px; } }
  .moduletable.contact-form .contact-form {
    max-width: 960px;
    margin: 0 auto; }
    .moduletable.contact-form .contact-form form {
      max-width: 700px;
      margin: 0 auto; }
      .moduletable.contact-form .contact-form form .buttons {
        text-align: center; }
      .moduletable.contact-form .contact-form form li {
        line-height: 2; }
      .moduletable.contact-form .contact-form form .hide {
        display: none; }
      .moduletable.contact-form .contact-form form input, .moduletable.contact-form .contact-form form textarea {
        margin: 5px auto;
        text-transform: uppercase; }
        .moduletable.contact-form .contact-form form input::-webkit-input-placeholder, .moduletable.contact-form .contact-form form textarea::-webkit-input-placeholder {
          color: #000000;
          font-weight: lighter; }
        .moduletable.contact-form .contact-form form input:-moz-placeholder, .moduletable.contact-form .contact-form form textarea:-moz-placeholder {
          color: #000000;
          font-weight: lighter; }
        .moduletable.contact-form .contact-form form input::-moz-placeholder, .moduletable.contact-form .contact-form form textarea::-moz-placeholder {
          color: #000000;
          font-weight: lighter; }
        .moduletable.contact-form .contact-form form input:-ms-input-placeholder, .moduletable.contact-form .contact-form form textarea:-ms-input-placeholder {
          color: #000000;
          font-weight: lighter; }
      .moduletable.contact-form .contact-form form #Field6 {
        max-height: 150px; }
  .moduletable.contact-form li input {
    margin: 20px 0 0;
    min-width: 150px; }

/* ====== NEWS AND EVENTS ====== */
/* ======
NEWS AND EVENTS
	- General
====== */
.com_news_events .full-article-image {
  display: none; }

/*================================================================================
$ GENERAL
================================================================================*/
.news-events-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px; }
  .news-events-container h1 {
    border-bottom: 2px solid #c81618;
    margin-bottom: 20px;
    padding: 40px 0 20px 0;
    text-align: left; }

.news-event {
  border-top: 2px solid #4e4e4e;
  float: left;
  font-size: 15px;
  padding: 20px 0;
  position: relative;
  width: 100%; }
  .news-event:first-child {
    border-top: none; }
  .news-event .post-close-js {
    position: absolute;
    right: 0;
    top: 5px; }
  .news-event .event-image-holder {
    float: left;
    width: 15%; }
    @media screen and (max-width: 799px) {
      .news-event .event-image-holder {
        width: 25%; } }
    @media screen and (max-width: 599px) {
      .news-event .event-image-holder {
        float: none;
        margin: 0 auto 15px;
        max-width: 150px;
        width: 100%; } }
    .news-event .event-image-holder img {
      border-bottom: 3px solid #c81618;
      max-height: 140px;
      max-width: 140px;
      width: 100%; }
      @media screen and (max-width: 599px) {
        .news-event .event-image-holder img {
          max-width: none; } }
  .news-event .event-auction__details {
    float: right;
    padding-left: 15px;
    width: 85%; }
    @media screen and (max-width: 799px) {
      .news-event .event-auction__details {
        width: 75%; } }
    @media screen and (max-width: 599px) {
      .news-event .event-auction__details {
        padding-left: 0;
        width: 100%; } }
    .news-event .event-auction__details .event-auction__titles, .news-event .event-auction__details .event-auction__bottom {
      float: left;
      width: 100%; }
    .news-event .event-auction__details .event-auction__titles h2 {
      margin-bottom: 0; }
      .news-event .event-auction__details .event-auction__titles h2 > a {
        font-weight: 400; }
    .news-event .event-auction__details .event-auction__titles h3 {
      color: #828282;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 18px;
      font-weight: 300; }
    .news-event .event-auction__details .event-auction__bottom {
      margin-top: 45px; }
    .news-event .event-auction__details .event-auction__bottom__left {
      float: left;
      padding-right: 10px;
      width: 75%; }
      @media screen and (max-width: 799px) {
        .news-event .event-auction__details .event-auction__bottom__left {
          width: 65%; } }
      @media screen and (max-width: 599px) {
        .news-event .event-auction__details .event-auction__bottom__left {
          padding-right: 0;
          width: 100%; } }
    .news-event .event-auction__details .event-auction__bottom__right {
      clear: both;
      float: right;
      text-align: right;
      width: 25%; }
      @media screen and (max-width: 799px) {
        .news-event .event-auction__details .event-auction__bottom__right {
          width: 35%; } }
      @media screen and (max-width: 599px) {
        .news-event .event-auction__details .event-auction__bottom__right {
          margin-top: 15px;
          text-align: center;
          width: 100%; } }
      .news-event .event-auction__details .event-auction__bottom__right a {
        margin-bottom: 0; }
  .news-event .primary-btn, .news-event .pay-online-btn, .news-event .proceed-invoice-btn, .news-event .place-bid-btn, .news-event .login-btn, .news-event .change-bid-btn, .news-event .added-to-wishlist, .news-event .hammer-login-btn, .news-event .secondary-btn {
    float: right;
    clear: both;
    margin-bottom: 0; }
    @media screen and (max-width: 799px) {
      .news-event .primary-btn, .news-event .pay-online-btn, .news-event .proceed-invoice-btn, .news-event .place-bid-btn, .news-event .login-btn, .news-event .change-bid-btn, .news-event .added-to-wishlist, .news-event .hammer-login-btn, .news-event .secondary-btn {
        clear: both; } }
    @media screen and (max-width: 599px) {
      .news-event .primary-btn, .news-event .pay-online-btn, .news-event .proceed-invoice-btn, .news-event .place-bid-btn, .news-event .login-btn, .news-event .change-bid-btn, .news-event .added-to-wishlist, .news-event .hammer-login-btn, .news-event .secondary-btn {
        width: 100%; } }

.news-event-pagination {
  border-top: 2px solid #c81618;
  float: left;
  width: 100%; }
  .news-event-pagination ul {
    float: left;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    padding: 10px 0 10px 0; }
    .news-event-pagination ul li {
      float: left;
      text-align: center;
      padding: 0 5px; }

.post-event .event-auction__bottom {
  margin-top: 15px !important; }
  @media screen and (max-width: 799px) {
    .post-event .event-auction__bottom {
      margin-top: 10px !important; } }

.read-more {
  width: 20%; }

.show {
  display: inline-block; }

.hide {
  display: none; }

.active-news-event {
  display: inline-block; }
  .active-news-event .event-auction__bottom__left, .active-news-event .event-auction__bottom__right {
    display: none !important; }

.news-event-pagination .valuation-form-wrapper {
  margin-top: 35px;
  padding: 0 0 30px 0; }
  .news-event-pagination .valuation-form-wrapper .request-valuation {
    margin-bottom: 0;
    margin-top: 10px; }

.valuation-form-wrapper {
  padding: 0; }
  .valuation-form-wrapper .primary-btn, .valuation-form-wrapper .pay-online-btn, .valuation-form-wrapper .proceed-invoice-btn, .valuation-form-wrapper .place-bid-btn, .valuation-form-wrapper .login-btn, .valuation-form-wrapper .change-bid-btn, .valuation-form-wrapper .added-to-wishlist, .valuation-form-wrapper .hammer-login-btn {
    margin-top: 5%;
    min-width: 225px; }

/* ====== Shipping Form ====== */
/* ======
Shipping Form
	- General
====== */
/*================================================================================
$ General
================================================================================*/
body.shipping_form .shipping_form_container {
  margin: 0 auto;
  max-width: 960px;
  margin-top: 40px; }
  @media screen and (max-width: 959px) {
    body.shipping_form .shipping_form_container {
      padding: 0 10px; } }
  body.shipping_form .shipping_form_container .shipping_inner_container {
    width: 100%;
    max-width: 800px;
    float: none;
    margin: 0 auto; }
    body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_header {
      float: left;
      width: 100%;
      margin-bottom: 10px; }
    body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content {
      float: left;
      width: 100%; }
      body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row {
        float: left;
        width: 100%; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row input[disabled] {
          cursor: not-allowed; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row p.error {
          color: red;
          text-align: right;
          top: 7px;
          right: 10px;
          position: absolute; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.intro p {
          margin-bottom: 20px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.intro p a {
            font-weight: 600; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping-inactive-container, body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .collection-inactive-container {
          float: left;
          width: 100%; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping-inactive-container.inactive, body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .collection-inactive-container.inactive {
            opacity: 0.6; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container {
          float: left;
          width: 100%;
          margin-bottom: 10px;
          position: relative; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container > label {
            float: left;
            width: 27%;
            position: relative;
            top: 5px; }
            body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container > label .required {
              color: #C1272D; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .label_container {
            float: left;
            width: 27%; }
            body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .label_container .bold_label {
              font-weight: 400; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container > input[type="text"] {
            float: left;
            width: 73%; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container.collection .collection_containers .input_container:last-child {
            margin: 20px 0 10px; }
            body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container.collection .collection_containers .input_container:last-child label {
              margin-bottom: 10px;
              float: left; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container.insurance {
            margin: 10px 0 20px; }
            body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container.insurance .input_container:first-child {
              margin-bottom: 15px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers {
            float: left;
            width: 73%; }
            body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container {
              margin-bottom: 10px;
              float: left;
              width: 100%; }
              body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container .checkbox_container {
                float: left;
                width: 5%; }
                @media screen and (max-width: 449px) {
                  body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container .checkbox_container {
                    width: 10%; } }
              body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container .checkbox_label_container {
                float: left;
                width: 95%; }
                @media screen and (max-width: 449px) {
                  body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container .checkbox_label_container {
                    width: 90%; } }
                body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.inputs .shipping_input_container .collection_containers .input_container .checkbox_label_container > label {
                  float: left;
                  width: 100%; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.terms {
          margin-bottom: 10px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.terms > p.shipping_heading {
            font-weight: 600;
            margin-bottom: 5px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.terms > p.liability {
            margin-bottom: 20px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.terms .input_container {
            margin-bottom: 20px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.terms > input[type="submit"] {
            font-size: 16px;
            width: 100%;
            max-width: 180px; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.comparisons > p {
          font-size: 14px;
          margin-bottom: 15px; }
          body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.comparisons > p.comparison_heading {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 5px; }
        body.shipping_form .shipping_form_container .shipping_inner_container .shipping_form_content .shipping_form_row.comparisons .information p {
          margin-bottom: 0; }

.banksy_items #auction-holder {
  margin-top: 40px; }
  .banksy_items #auction-holder h2 {
    color: #c81619;
    font-weight: 100; }

.banksy_items .catalogue-view__details .lot-name p:nth-child(2) span {
  font-weight: 700; }

.banksy_items .catalogue-view__details span {
  display: inline-block; }

.banksy_items .lot-name span:first-child {
  font-weight: unset; }

.banksy_items .ul-grid .catalogue-view__details {
  min-height: 100px !important; }

.banksy-item {
  margin-top: 30px; }
  @media screen and (max-width: 599px) {
    .banksy-item .lot-num {
      margin: 0; }
    .banksy-item .lot-details .lot-author-info {
      text-align: center;
      margin: 20px 0; }
    .banksy-item .lot-information h3 {
      margin: 20px 0 !important;
      text-align: center; } }
  .banksy-item .banksy_detail_head {
    padding-bottom: 10px;
    border-bottom: 1px solid #707070; }
    .banksy-item .banksy_detail_head h2 {
      color: #c81619;
      font-weight: 100; }
  .banksy-item .lot_detail_left, .banksy-item .lot_detail_right {
    padding-top: 30px; }
  .banksy-item .lot-details-inner-left,
  .banksy-item .lot-details-inner-right {
    padding-bottom: 20px; }
  .banksy-item .lot-icons--list {
    text-align: left; }
  .banksy-item .condition-report {
    max-width: 100%; }

.banksy_head {
  padding-bottom: 20px; }

.banksy-heading .banksy-image-holder {
  width: 38%;
  float: left;
  padding-right: 10px; }
  @media screen and (max-width: 599px) {
    .banksy-heading .banksy-image-holder {
      width: 100%;
      padding-right: 0;
      margin-bottom: 20px; } }
  .banksy-heading .banksy-image-holder .under-img-text {
    background: #c81619;
    text-align: center;
    color: #fff;
    font-weight: 400;
    padding: 10px 0; }

.banksy-heading .banksy-content {
  width: 60%;
  float: left;
  padding-left: 40px;
  line-height: 1.4; }
  @media screen and (max-width: 599px) {
    .banksy-heading .banksy-content {
      width: 100%;
      padding-left: 0; }
      .banksy-heading .banksy-content .banksy-scroll-to-list {
        margin-top: 20px; }
      .banksy-heading .banksy-content p {
        font-size: 16px;
        margin-bottom: 20px; } }
  .banksy-heading .banksy-content strong > a {
    font-weight: 600; }

.banksy-heading {
  float: left;
  width: 100%; }
  .banksy-heading h2 {
    color: #fff !important;
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #c81619;
    padding: 15px 0;
    padding-left: 20px;
    font-weight: 100; }
    @media screen and (max-width: 599px) {
      .banksy-heading h2 {
        width: 100% !important;
        margin-top: 20px;
        text-align: center; } }
    @media screen and (max-width: 929px) {
      .banksy-heading h2 {
        width: 50%; } }

.banksy-button-container a {
  float: left;
  width: calc(50% - 5px);
  padding: 8px 10px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-right: 5px; }
  @media screen and (max-width: 599px) {
    .banksy-button-container a {
      font-size: 15px;
      margin-top: 15px;
      width: 100%; } }
  .banksy-button-container a.banksy-valuation {
    background: #3d3d3b;
    border: 1px solid #3d3d3b;
    color: #fff;
    margin: 0 5px 5px 0; }
    @media screen and (max-width: 599px) {
      .banksy-button-container a.banksy-valuation {
        margin: 0 0 5px; } }
    .banksy-button-container a.banksy-valuation:hover {
      background-color: #ffffff;
      color: #3d3d3b; }
  .banksy-button-container a.selling-button {
    background-color: #ffffff;
    color: #c81619;
    border: 1px solid #c81619;
    margin: 0 0 5px 5px; }
    @media screen and (max-width: 599px) {
      .banksy-button-container a.selling-button {
        margin: 5px 0; } }
    .banksy-button-container a.selling-button:hover {
      background-color: #c81619;
      color: #ffffff; }
  .banksy-button-container a.buying-button {
    background: #c81619;
    border: 1px solid #c81619;
    color: #fff;
    margin: 5px 5px 0 0; }
    @media screen and (max-width: 599px) {
      .banksy-button-container a.buying-button {
        margin: 5px 0; } }
    .banksy-button-container a.buying-button:hover {
      background-color: #ffffff;
      color: #c81619; }
  .banksy-button-container a.banksy-register {
    background-color: #ffffff;
    border: 1px solid #3d3d3b;
    color: #3d3d3b;
    margin: 5px 0 0 5px; }
    @media screen and (max-width: 599px) {
      .banksy-button-container a.banksy-register {
        margin: 5px 0 0; } }
    .banksy-button-container a.banksy-register:hover {
      background-color: #ffffff; }

.grey-heading {
  width: 100%;
  text-align: center;
  margin: 30px 0;
  float: left;
  font-family: 'Open Sans', sans-serif;
  color: #8c8c8c !important;
  font-weight: 600 !important;
  font-style: italic;
  font-size: 20px; }

.banksy-scroll-to-list {
  display: block;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: bold;
  font-style: italic; }

.banksy-ul {
  float: left; }

body.banksy .lot-item .lot-hammer .price-label span {
  display: inline-block;
  width: 100%; }
  @media screen and (max-width: 899px) {
    body.banksy .lot-item .lot-hammer .price-label span {
      text-align: center; } }

/* ====== Artist Directory ====== */
/* ======
Artist Directory
	- General
    - Header
    - Search
    - Artist Search item
    - Artist Page Header
    - Artist Categories
    - Artist Coursel
    - Highlights
    - Current lots
    - Previous lots

====== */
/*================================================================================
$ GENERAL
================================================================================*/
.artists-directory-holder, .artists-page-holder {
  margin-top: 60px; }

/*================================================================================
$ HEADER
================================================================================*/
.Author-directory-heading h1 {
  color: #c81618;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 22px;
  font-weight: 300; }

.artist-landing-content {
  margin-top: 30px; }
  .artist-landing-content p {
    margin-bottom: 15px; }
    .artist-landing-content p:last-child {
      margin-bottom: 0; }

/*================================================================================
$ SEARCH
================================================================================*/
.artists-directory__refine {
  border-top: 1px solid #C0C0C0;
  margin: 25px 0 0;
  padding: 20px 0;
  zoom: 1; }
  .artists-directory__refine:before, .artists-directory__refine:after {
    content: "";
    display: table; }
  .artists-directory__refine:after {
    clear: both; }
  .artists-directory__refine .artists-directory__refine__range {
    float: left;
    margin-top: 6px;
    width: 55%; }
    @media screen and (max-width: 959px) {
      .artists-directory__refine .artists-directory__refine__range {
        width: 60%; } }
    @media screen and (max-width: 849px) {
      .artists-directory__refine .artists-directory__refine__range {
        text-align: center;
        width: 100%; } }
  .artists-directory__refine .alphabet {
    font-size: 15px;
    font-weight: 500;
    padding: 0 2px; }
    @media screen and (max-width: 529px) {
      .artists-directory__refine .alphabet {
        line-height: 25px; } }
    .artists-directory__refine .alphabet:hover, .artists-directory__refine .alphabet:focus, .artists-directory__refine .alphabet:active {
      font-weight: 600;
      text-decoration: none; }
  .artists-directory__refine .selected {
    color: #c81618;
    font-weight: 600;
    text-decoration: none; }
  .artists-directory__refine .searchdiv {
    float: right;
    width: 45%; }
    @media screen and (max-width: 959px) {
      .artists-directory__refine .searchdiv {
        width: 40%; } }
    @media screen and (max-width: 849px) {
      .artists-directory__refine .searchdiv {
        margin-top: 25px;
        width: 100%; } }
    .artists-directory__refine .searchdiv input {
      float: left;
      width: 70%; }
    .artists-directory__refine .searchdiv button {
      float: right;
      margin-left: 5%;
      min-width: 0;
      margin: 0;
      padding: 4px 20px 6px;
      width: 25%; }

.com_artistdirectory .ui-autocomplete {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  height: 300px;
  overflow: auto;
  transform: translateY(-2px);
  width: 302px !important;
  z-index: 100; }
  @media screen and (max-width: 959px) {
    .com_artistdirectory .ui-autocomplete {
      height: 200px;
      width: 26.56% !important; } }
  @media screen and (max-width: 849px) {
    .com_artistdirectory .ui-autocomplete {
      width: 65.5% !important; } }
  @media screen and (max-width: 549px) {
    .com_artistdirectory .ui-autocomplete {
      width: 63.5% !important; } }
  @media screen and (max-width: 399px) {
    .com_artistdirectory .ui-autocomplete {
      width: 60.5% !important; } }
  .com_artistdirectory .ui-autocomplete .ui-menu-item {
    padding: 5px 10px;
    font-size: 15px;
    float: left;
    width: 100%;
    cursor: pointer; }

.com_artistdirectory .ui-helper-hidden-accessible {
  display: none !important; }

/*================================================================================
$ ARTIST SEARCH ITEM
================================================================================*/
.artists-directory__list, .artists-directory-landing-holder {
  margin-top: 10px; }
  .artists-directory__list .artists-directory__list__item, .artists-directory-landing-holder .artists-directory__list__item {
    margin-top: 20px; }
    .artists-directory__list .artists-directory__list__item:first-child, .artists-directory-landing-holder .artists-directory__list__item:first-child {
      margin-top: 0; }
  .artists-directory__list .artist__name, .artists-directory-landing-holder .artist__name {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    margin-bottom: 20px; }
    .artists-directory__list .artist__name a, .artists-directory-landing-holder .artist__name a {
      font-size: 19px;
      font-weight: 600; }
  .artists-directory__list .artist__bio, .artists-directory-landing-holder .artist__bio {
    max-width: 70%; }
    @media screen and (max-width: 959px) {
      .artists-directory__list .artist__bio, .artists-directory-landing-holder .artist__bio {
        max-width: 100%; } }
  .artists-directory__list .artist__bio, .artists-directory__list .artist__dob, .artists-directory-landing-holder .artist__bio, .artists-directory-landing-holder .artist__dob {
    margin-bottom: 15px; }
  .artists-directory__list .artists_lived.artist__dob, .artists-directory-landing-holder .artists_lived.artist__dob {
    font-size: 13px; }
  .artists-directory__list .more_info, .artists-directory-landing-holder .more_info {
    margin-top: 20px; }
    .artists-directory__list .more_info a, .artists-directory-landing-holder .more_info a {
      font-size: 14px; }
  .artists-directory__list .pagination, .artists-directory-landing-holder .pagination {
    text-align: center; }
    .artists-directory__list .pagination a, .artists-directory-landing-holder .pagination a {
      border: #c81618 1px solid;
      display: inline-block;
      margin: 0 0 10px 10px;
      padding: 5px 8px;
      text-decoration: none; }
      .artists-directory__list .pagination a:hover, .artists-directory__list .pagination a:focus, .artists-directory__list .pagination a:active, .artists-directory-landing-holder .pagination a:hover, .artists-directory-landing-holder .pagination a:focus, .artists-directory-landing-holder .pagination a:active {
        background: #c81618;
        color: #ffffff;
        font-weight: 600; }
      .artists-directory__list .pagination a:first-child, .artists-directory-landing-holder .pagination a:first-child {
        margin-left: 0; }
    .artists-directory__list .pagination .current, .artists-directory-landing-holder .pagination .current {
      background: #c81618;
      color: #ffffff;
      font-weight: 600; }

.artists-directory-landing-holder {
  margin-top: 0; }

/*================================================================================
$ ARTIST PAGE HEADER
================================================================================*/
.artists-page-holder .back-to-artist {
  margin-bottom: 20px; }
  .artists-page-holder .back-to-artist a {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 19px;
    color: #c81618;
    font-weight: 300; }

.artists-page-holder .artist_name h1 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  margin-bottom: 5px; }

.artists-page-holder .artist_detail {
  margin-bottom: 20px; }

.artists-page-holder .artist-lived {
  margin-bottom: 5px; }

.artists-page-holder .artist-categories {
  font-style: italic;
  font-weight: 400; }

.artists-page-holder .artist_biography table {
  width: 100%;
  max-width: 80%; }
  @media screen and (max-width: 959px) {
    .artists-page-holder .artist_biography table {
      max-width: 100%; } }
  .artists-page-holder .artist_biography table tr:first-child td {
    font-weight: 600;
    color: #4D4D4D; }
  .artists-page-holder .artist_biography table td {
    vertical-align: top; }
    .artists-page-holder .artist_biography table td:nth-child(1) {
      width: 40%; }
    .artists-page-holder .artist_biography table td:nth-child(2) {
      width: 15%; }
    .artists-page-holder .artist_biography table td:nth-child(3) {
      width: 20%; }
    .artists-page-holder .artist_biography table td:nth-child(4) {
      width: 25%; }

/*================================================================================
$ ARTIST CATEGORIES
================================================================================*/
/*================================================================================
$ ARTIST COURSERUL
================================================================================*/
.artists-sale-holder {
  border-top: 1px solid #C0C0C0;
  margin-top: 15px;
  padding-top: 30px; }

.artist-lots {
  margin-left: -30px;
  max-height: 320px;
  overflow: hidden;
  position: relative; }
  .artist-lots.slick-initialized {
    max-height: none; }
  .artist-lots .artist-lots__item {
    display: inline-block;
    margin-left: 30px;
    vertical-align: top;
    width: 168px; }
    .artist-lots .artist-lots__item .artist-lot__image {
      height: 160px;
      min-height: 150px;
      text-align: center;
      width: 100%; }
      .artist-lots .artist-lots__item .artist-lot__image a {
        display: block; }
    .artist-lots .artist-lots__item .lot-bg-img {
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain;
      height: 100%;
      max-width: 160px;
      width: 100%; }
      @media screen and (max-width: 1023px) {
        .artist-lots .artist-lots__item .lot-bg-img {
          max-width: 100%; } }
  .artist-lots .artist-lot-holder-hover {
    margin-top: 20px; }
  .artist-lots .hover-lot-desc {
    font-size: 14px;
    min-height: 65px;
    text-align: center; }
    @media screen and (max-width: 449px) {
      .artist-lots .hover-lot-desc {
        min-height: 95px; } }
  .artist-lots .lot-buttons {
    text-align: center; }
    .artist-lots .lot-buttons .hover-lot-price, .artist-lots .lot-buttons .hover-lot-view {
      text-align: center; }
    .artist-lots .lot-buttons .hover-lot-price {
      font-size: 13px;
      color: #c81618;
      font-weight: 600; }
  .artist-lots .f-details-btn {
    font-size: 16px;
    margin-bottom: 0;
    min-width: 130px;
    padding: 6px 20px 8px; }
  .artist-lots .slick-arrow {
    background-image: url(../images/banners/banner-prev-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px auto;
    color: transparent;
    display: none;
    font-size: 1px;
    height: 40px;
    min-width: 0;
    opacity: 0;
    outline: none;
    padding: 0;
    position: absolute;
    text-decoration: none;
    text-indent: -999em;
    top: 50%;
    width: 40px;
    z-index: 3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.5s ease-in-out 0s;
    -moz-transition: opacity 0.5s ease-in-out 0s;
    -ms-transition: opacity 0.5s ease-in-out 0s;
    -o-transition: opacity 0.5s ease-in-out 0s;
    transition: opacity 0.5s ease-in-out 0s; }
    .artist-lots .slick-arrow:hover, .artist-lots .slick-arrow:focus, .artist-lots .slick-arrow:active {
      background-color: #3c3c3b;
      border-color: #3c3c3b;
      outline: none;
      text-decoration: none; }
    .artist-lots .slick-arrow.slick-prev {
      background-position: 8px 5px;
      left: 30px; }
    .artist-lots .slick-arrow.slick-next {
      background-image: url(../images/banners/banner-next-arrow.png);
      background-position: 12px 5px;
      right: 0; }
    .artist-lots .slick-arrow.slick-disabled {
      opacity: 0; }
  .artist-lots:hover .slick-arrow {
    opacity: 1; }
    .artist-lots:hover .slick-arrow.slick-disabled {
      opacity: 0; }
  .artist-lots#lots {
    margin-left: -3%;
    max-height: none; }
    @media screen and (max-width: 899px) {
      .artist-lots#lots {
        margin-left: -4%; } }
    @media screen and (max-width: 599px) {
      .artist-lots#lots {
        margin-left: -5%; } }
    .artist-lots#lots .artist-lots__item {
      float: left;
      margin-left: 3%;
      margin-bottom: 6%;
      width: 17%; }
      @media screen and (min-width: 900px) and (max-width: 9999999999px) {
        .artist-lots#lots .artist-lots__item:nth-child(5n+6) {
          clear: left; } }
      @media screen and (max-width: 899px) {
        .artist-lots#lots .artist-lots__item {
          margin-left: 4%;
          width: 21%; } }
      @media screen and (max-width: 799px) {
        .artist-lots#lots .artist-lots__item {
          width: 29%; } }
      @media screen and (max-width: 599px) {
        .artist-lots#lots .artist-lots__item {
          margin-left: 5%;
          width: 45%; } }
      @media screen and (min-width: 800px) and (max-width: 899px) {
        .artist-lots#lots .artist-lots__item:nth-child(4n+5) {
          clear: left; } }
      @media screen and (min-width: 600px) and (max-width: 799px) {
        .artist-lots#lots .artist-lots__item:nth-child(3n+4) {
          clear: left; } }
      @media screen and (max-width: 599px) {
        .artist-lots#lots .artist-lots__item:nth-child(2n+3) {
          clear: left; } }

.artists-sale-holder .view-more-btn-holder {
  display: none;
  margin-top: 30px;
  width: 100%;
  text-align: center; }
  .artists-sale-holder .view-more-btn-holder .view-more-btn {
    min-width: 180px;
    padding: 4px 20px 6px; }
    @media screen and (max-width: 599px) {
      .artists-sale-holder .view-more-btn-holder .view-more-btn {
        width: 100%; } }

.artists-sale-holder.lot-amount-5 .view-more-btn-holder {
  display: block; }

.artists-sale-holder .lots_sort_option {
  margin-bottom: 20px;
  zoom: 1; }
  .artists-sale-holder .lots_sort_option:before, .artists-sale-holder .lots_sort_option:after {
    content: "";
    display: table; }
  .artists-sale-holder .lots_sort_option:after {
    clear: both; }
  .artists-sale-holder .lots_sort_option select {
    background-color: #f2f2f2;
    border: none;
    border-radius: 0;
    background-position: 95% center; }
    @media screen and (max-width: 599px) {
      .artists-sale-holder .lots_sort_option select {
        float: left;
        width: 45%; } }
    .artists-sale-holder .lots_sort_option select#orderby {
      margin-left: 20px; }
      @media screen and (max-width: 599px) {
        .artists-sale-holder .lots_sort_option select#orderby {
          float: right;
          margin-left: 0; } }

/*================================================================================
$ HIGHLIGHTS
================================================================================*/
.artist-directory-landing-lots {
  border-top: 1px solid #C0C0C0;
  padding-top: 25px; }
  .artist-directory-landing-lots h4 {
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center; }
  .artist-directory-landing-lots .previous-artists-lots-container.artists-sale-holder {
    border-top: none;
    margin-top: 0;
    padding-top: 0; }
  .artist-directory-landing-lots .previous-artists-lots-title {
    display: none; }

/*================================================================================
$ CURRENT LOTS
================================================================================*/
.artists-current-lots-title h3 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center; }

/*================================================================================
$ PREVIOUS LOTS
================================================================================*/
.previous-artists-lots-title h3 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center; }

/*================================================================================
$ GAP
================================================================================*/
/* ====== CALENDAR ====== */
/* ======
CALENDAR
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.com_calendar .register-buttons button {
  display: none; }

/* ====== GENERAL ====== */
/* ======
GENERAL
    - General
    - List
    - Grid
====== */
/*================================================================================
$ GENERAL
================================================================================*/
/* ====== GENERAL ====== */
/* ======
GENERAL
    - General
====== */
.gap {
  margin-top: 40px; }

.gap-register {
  margin-top: 40px; }

.enlarge .header-wrapper {
  display: none; }

/*================================================================================
$ GENERAL
================================================================================*/
main.white-label.white-label {
  background-color: transparent;
  /*================================================================================
	$ REGISTRATION COMPLETE
	================================================================================*/ }
  main.white-label.white-label .button {
    background-color: #c81618 !important;
    border: 1px solid #c81618 !important;
    border-radius: 0 !important;
    color: #ffffff !important; }
  main.white-label.white-label button {
    background-color: #c81618 !important;
    border: 1px solid #c81618 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    max-width: 200px;
    min-width: 200px;
    padding: 10px 15px !important;
    white-space: normal;
    -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
    transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
    main.white-label.white-label button:hover {
      background-color: transparent !important;
      color: #c81618 !important;
      -webkit-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -moz-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -ms-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      -o-transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s;
      transition: background-color 0.25s ease-in-out 0s, color 0.25s ease-in-out 0s, border-color 0.25s ease-in-out 0s; }
    main.white-label.white-label button:before {
      content: "" !important; }
  main.white-label.white-label h1 {
    color: #4D4D4D;
    display: block !important;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-size: 21px;
    text-align: left; }
    main.white-label.white-label h1 a {
      color: #4D4D4D;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 21px;
      text-align: left; }
  main.white-label.white-label .buttons button {
    background-color: #c81618 !important;
    border: 1px solid #c81618 !important;
    border-radius: 0 !important;
    color: #ffffff !important; }
  main.white-label.white-label .buttons .auction-signup-has-content div a {
    border-radius: 0;
    background-color: #8AC43F;
    border-color: #8AC43F;
    color: white;
    font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
    font-weight: normal;
    font-size: 15px;
    padding: 8px 25px; }
  main.white-label.white-label .buttons .auction-signup-has-content div a:hover {
    text-decoration: none;
    background-color: white;
    color: #8AC43F; }
  main.white-label.white-label a {
    color: #c81618; }
  main.white-label.white-label .terms-conditions fieldset {
    display: none !important; }
  main.white-label.white-label .site-registration-complete .success-message {
    color: #4D4D4D; }
    main.white-label.white-label .site-registration-complete .success-message .icon-check {
      display: none; }
    main.white-label.white-label .site-registration-complete .success-message .content p {
      color: #4D4D4D;
      font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
      font-size: 15px; }

/* ====== HEADER ====== */
/* ======
HEADER
    - Signup Buttons
    - Search Block
====== */
/*================================================================================
$ SIGNUP BUTTONS
================================================================================*/
/* ====== SIDEBAR ====== */
/* ======
SIDEBAR

====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.sidebar-open.ng-scope .white-label .sidebar {
  height: 500px;
  left: 50%;
  position: fixed;
  top: 50%;
  width: 500px;
  z-index: 99999 !important;
  -webkit-transform: translateY(-50%) translateX(-40%);
  -moz-transform: translateY(-50%) translateX(-40%);
  -ms-transform: translateY(-50%) translateX(-40%);
  -o-transform: translateY(-50%) translateX(-40%);
  transform: translateY(-50%) translateX(-40%);
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }
  body.sidebar-open.ng-scope .white-label .sidebar .sidebar-tabs li.active {
    border-color: #c81618 !important; }

body.ng-scope .white-label .sidebar {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none; }
  body.ng-scope .white-label .sidebar .buttons button {
    background-color: #c81618 !important;
    border: 1px solid #c81618 !important;
    border-radius: 0 !important;
    color: #ffffff !important; }
  body.ng-scope .white-label .sidebar .sidebar-tabs .link {
    display: none; }
    body.ng-scope .white-label .sidebar .sidebar-tabs .link.active {
      display: block;
      width: 100%; }

/* ====== REGISTRATION ====== */
/* ======
REGISTRATION
    - Signup Buttons
    - Search Block
====== */
main.white-label.white-label .site-registration-complete .icon-check {
  border-color: #c81618;
  color: #c81618; }

main.white-label.white-label .site-registration-complete .content h2 {
  color: #c81618;
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 24px; }

main.white-label.white-label .site-registration-complete .content h4 {
  font-family: "Open Sans", "open-sans", open-sans, Arial, sans-serif;
  font-size: 18px; }

main.white-label.white-label .site-registration-complete .content p {
  display: none; }

main.white-label.white-label .site-registration-complete .content a {
  display: none; }

main.white-label.white-label .sidebar-tabs .link {
  display: none; }
  main.white-label.white-label .sidebar-tabs .link.active {
    display: block; }

/*# sourceMappingURL=styles.css.map */