@charset "UTF-8";
/* ---------------- */
/* Base */
/* ---------------- */
/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
/*
	Name: Auction Marketer Mixins
	Author: Auction Marketer
    Contributions: Danny, Jack, Marcin
    Copyright (C) 2018 Auction Marketer - All Rights Reserved
*/
/*====================================================================================
// SCSS Mixins
====================================================================================*/
/*====================================================================================
// Colour the elements placeholder
// Example: @include placeholder{ // Content };
====================================================================================*/
/*====================================================================================
// Create prefixes for example for transitions
// Example: @include prefix{ transition, all 0.2s ease-in-out };
====================================================================================*/
/*====================================================================================
// Clearfix
// Example: @include clearfix();
====================================================================================*/
/*====================================================================================
// Media Queries
// Example: @include media-query(min, 900px) {content}
====================================================================================*/
/*====================================================================================
// Media Queries same as above but between two values
// Example: @include media-query-bracket(640px, 960px){}
====================================================================================*/
/*====================================================================================
// Converts pixels to percents
// Example: @include pxtopercent(500px, 1000px);
====================================================================================*/
/*====================================================================================
// Vertical Align anything
// Example: @include verticalalign();
====================================================================================*/
/*====================================================================================
// Break the word if the containing div is too small
// Example: @include word-wrap();
====================================================================================*/
/*====================================================================================
// Add ellipsis onto end of text if overflows the height of element
// Example: @include ellipsis();
====================================================================================*/
/*====================================================================================
// Targets browsers specifically.
// Example: @include target-browser('Chrome') { ... };
====================================================================================*/
/*====================================================================================
// Create default button setup
// Example:
// @include button(white, #203963);` - This is a default button
// @include button(#203963, white, 'true');` - This is a inverse button, uses the text colour as border colour
====================================================================================*/
/*====================================================================================
// Style the scrollbar (Only works on Chrome)
// Example: @include scrollbar('track') { @styles };
====================================================================================*/
/* ====== HELPERS ====== */
/* ======
HELPERS
	- Box Model
	- Errors
	- Vue
	- Layout
====== */
/*================================================================================
$ ADMIN CONTROLS
================================================================================*/
#main-content .item-page {
  width: 100%;
}
#main-content .item-page > .icons,
#main-content .item-page > a[target=_blank] {
  display: none !important;
}
#main-content #sp-page-builder {
  width: 100%;
}

/*================================================================================
$ BOX MODEL
================================================================================*/
.remove-margins {
  margin: 0;
}

.remove-padding {
  padding: 0;
}

/*================================================================================
$ ERRORS
================================================================================*/
.error::after {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 1rem;
  content: "";
  display: block;
  height: 1.25rem;
  position: absolute;
  right: 0.9375rem;
  width: 1.25rem;
}

/*================================================================================
$ VUE
================================================================================*/
[v-cloak] {
  display: none;
}

/*================================================================================
$ LAYOUT
================================================================================*/
.no-display {
  display: none !important;
}

.breadcrumb {
  background-color: #F4F4F4;
  float: left;
  width: 100%;
}
.breadcrumb p {
  font-size: 15px;
  margin-bottom: 0;
  padding: 1rem 0;
}
.breadcrumb p a {
  color: #982065;
}
.breadcrumb p img {
  display: inline-block;
  max-width: none;
}
.breadcrumb p strong {
  font-weight: 400;
}

.pagination-container {
  float: left;
  margin: 1rem 0;
  text-align: center;
  width: 100%;
}
.pagination-container p {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
  display: inline;
  margin: 0 0.5rem;
}
.pagination-container p.active {
  font-weight: bold;
}
.pagination-container p.prev {
  margin-right: 2rem;
}
.pagination-container p.next {
  margin-left: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

/* ====== NOTIFICATIONS ====== */
/* ======
NOTIFICATIONS
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
#notifications-manager {
  bottom: 0;
  left: 50%;
  max-width: 600px;
  padding: 0 10px;
  pointer-events: none;
  position: fixed;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 999;
}
#notifications-manager .notification-items {
  zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
#notifications-manager .notification-items:before, #notifications-manager .notification-items:after {
  content: "";
  display: table;
}
#notifications-manager .notification-items:after {
  clear: both;
}
#notifications-manager .notification-items .notification-item {
  float: left;
  margin-bottom: 7px;
  padding: 8px;
  width: 100%;
}
#notifications-manager .notification-items .notification-item .icon {
  color: white;
  float: left;
  height: 100%;
  position: relative;
  top: 2px;
  width: 6%;
}
#notifications-manager .notification-items .notification-item .icon > i {
  font-size: 16px;
}
@media screen and (max-width: 449px) {
  #notifications-manager .notification-items .notification-item .icon {
    width: 7%;
  }
}
@media screen and (max-width: 369px) {
  #notifications-manager .notification-items .notification-item .icon {
    width: 8%;
  }
}
#notifications-manager .notification-items .notification-item .message {
  color: white;
  float: left;
  font-family: "Arial", serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  width: 94%;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}
@media screen and (max-width: 449px) {
  #notifications-manager .notification-items .notification-item .message {
    width: 93%;
  }
}
@media screen and (max-width: 369px) {
  #notifications-manager .notification-items .notification-item .message {
    width: 92%;
  }
}
#notifications-manager .notification-items .notification-item .close-notification {
  position: absolute;
}
#notifications-manager .notification-items .notification-item.ntype-success {
  background-color: #38bb5a;
}
#notifications-manager .notification-items .notification-item.ntype-notice {
  background-color: #0055bb;
}
#notifications-manager .notification-items .notification-item.ntype-warning {
  background-color: #f96700;
}
#notifications-manager .notification-items .notification-item.ntype-error {
  background-color: #c1272d;
}

/* ---------------- */
/* Bootstrap */
/* ---------------- */
/*!
 * Bootstrap Grid v5.2.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000000;
  --bs-white: #FFFFFF;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #FFFFFF;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-code-color: #d63384;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

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

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

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

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

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

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

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

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

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

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/* ---------------- */
/* Partials */
/* ---------------- */
/* ====== HEADER ====== */
/* ======
HEADER
    - TOP ROW - LOGO, ACCOUNT LOGIN
        - TOP ROW - LEFT SIDE
        - TOP ROW - MIDDLE
        - TOP ROW - RIGHT SIDE

    - BOTTOM ROW


====== */
body.site .header-container {
  background-color: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media screen and (max-width: 1099px) {
  body.site .header-container {
    box-shadow: none;
  }
}
@media screen and (max-width: 599px) {
  body.site .header-container {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  body.site .header-container {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  }
}
body.site .header-container .main-header {
  /*================================================================================
  $ TOP ROW - LOGO, ACCOUNT LOGIN
  ================================================================================*/
  /*================================================================================
  $ BOTTOM ROW 
  ================================================================================*/
}
@media (min-width: 992px) {
  body.site .header-container .main-header {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  body.site .header-container .main-header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  body.site .header-container .main-header {
    height: auto;
    margin-bottom: 0;
  }
}
body.site .header-container .main-header .header__top--row {
  padding-top: 15px;
  /*================================================================================
   $ TOP ROW - LEFT SIDE
  ================================================================================*/
  /*================================================================================
   $ TOP ROW - MIDDLE
  ================================================================================*/
  /*================================================================================
   $ TOP ROW - RIGHT SIDE
  ================================================================================*/
}
@media screen and (max-width: 599px) {
  body.site .header-container .main-header .header__top--row {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 599px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container {
    margin-left: 0.5rem;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon {
  align-items: center;
  display: flex;
  height: 30px;
  transition: 0.15s ease-in-out;
  width: 30px;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.active {
  border-radius: 4px;
  width: 230px;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.active .input-group input {
  transition: 0.15s ease-in-out;
  width: 100%;
}
@media (min-width: 1024px) and (max-width: 1292px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.active .input-group input {
    width: 88%;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.active .input-group input {
    width: 88%;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.show-on-scroll {
  display: none;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon .input-group input {
  border: 1px solid #982065;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 3px 0px 4px 30px;
  width: 100%;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon .input-group input:focus {
  outline: 2px solid #982065;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon .input-group input {
    width: 90% !important;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone {
    padding: 0;
  }
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone {
    display: none;
  }
}
@media (min-width: 1024px) and (max-width: 1292px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone {
    display: flex;
    width: 100%;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone span {
  padding-right: 10px;
  transition: 0.15s ease-in-out;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone span {
    padding-right: 4px;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1369px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a {
    font-size: 0.9rem;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a {
    font-size: 0.9rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 786px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a {
    display: none;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__mobile--top-left li {
  display: none;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__mobile--top-left li {
    display: block;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__mobile--top-left li .ss-user {
  color: #982065;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__mobile--top-left li .mobile__account-btn {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__mobile--top-left li .logout-button-container .desktop__logout-button {
    display: none;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone {
  display: none;
}
@media (min-width: 768px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone {
    display: block;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li {
  color: #0B0A1D;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li a {
  padding: 7px 5px;
}
@media (min-width: 1500px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li a {
    padding: 10px 15px;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li a span.ss-search {
  font-family: "Georgia", sans-serif !important;
  letter-spacing: 1px;
  margin-left: 5px;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li.searchIcon {
  margin-right: 3%;
  padding-right: 3%;
}
@media (min-width: 1200px) {
  body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li.searchIcon {
    margin-left: 5px;
    padding-right: 0px;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li.searchIcon input {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 2rem;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li.searchIcon input:focus {
  outline: #982065;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li.searchIcon span {
  color: #982065;
}
body.site .header-container .main-header .header__top--row .header__top--row-left .h-search-telephone ul li .ss-telephone {
  padding-right: 10px;
}
@media screen and (max-width: 599px) {
  body.site .header-container .main-header .header__top--row .header__top--row-middle img {
    height: 32px;
    padding-left: 2rem;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-right .h-account {
  display: block;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-right .h-account {
    display: none;
  }
}
body.site .header-container .main-header .header__top--row .header__top--row-right .h-account .logout-button-container .logout-button {
  padding: 0.4rem 1rem;
}
body.site .header-container .main-header .header__top--row .header__top--row-right .h-account .ss-user {
  color: #982065;
  margin-top: 12px;
  padding-left: 8px;
}
body.site .header-container .main-header .header__top--row .header__top--row-right .h-account .logout__user {
  padding-left: 0px;
}
body.site .header-container .main-header .header__top--row .header__top--row-right .mobileBottom ul {
  position: relative;
  z-index: 990;
}
body.site .header-container .main-header .header__top--row .header__top--row-right .mobileBottom ul .menu-desktop {
  display: none;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__top--row .header__top--row-right .mobileBottom ul .menu-desktop {
    display: block;
    position: absolute;
    right: -11rem;
    top: 0;
    width: 30px;
  }
}
@media screen and (max-width: 992px) {
  body.site .header-container .main-header .header__top--row .header__top--row-right .mobileBottom ul .menu-desktop {
    right: -6rem;
  }
}
@media screen and (max-width: 799px) {
  body.site .header-container .main-header .header__top--row .header__top--row-right .mobileBottom ul .menu-desktop {
    right: -5rem;
  }
}
body.site .header-container .main-header .header__bottom--row {
  margin-top: 10px;
  position: relative;
}
body.site .header-container .main-header .header__bottom--row.scrolled {
  display: none;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list {
  display: block;
  justify-content: center;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1098px) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list {
    display: none;
  }
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li {
  margin-bottom: 0;
  margin-left: 25px;
  padding: 7px 0 12px;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li {
    margin-left: 15px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li {
    margin-left: 20px;
  }
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:first-child {
  margin-left: 0;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:first-child ul.nav-child {
  display: block;
  min-width: 250px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(2) ul.nav-child {
  display: block;
  width: 580px;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(2) ul.nav-child {
    display: none;
  }
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(2) ul.nav-child li {
  float: left;
  width: 50%;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(2) ul.nav-child li:nth-child(odd) {
  clear: left;
  padding-right: 30px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(2) ul.nav-child li:nth-child(even) {
  padding-left: 20px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(3) ul.nav-child {
  display: block;
  min-width: 250px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(4) ul.nav-child {
  display: block;
  min-width: 300px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:nth-child(5) ul.nav-child {
  display: block;
  width: 310px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:last-child ul.nav-child {
  display: block;
  width: 200px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li a:hover {
  color: #0B0A1D;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li span {
  color: #0B0A1D;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li span {
    font-size: 0.75rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li span {
    font-size: 0.75rem;
  }
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li ul {
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: block;
  left: 0px;
  margin-top: 0px;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: all ease-in-out 0.2s;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__bottom--row ul.mod-list > li ul {
    display: none;
  }
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li ul li {
  display: block;
  margin-bottom: 7px;
  padding: 7px;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li ul li a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li ul li a:hover {
  color: #982065;
}
body.site .header-container .main-header .header__bottom--row ul.mod-list > li:hover ul, body.site .header-container .main-header .header__bottom--row ul.mod-list > li:active ul, body.site .header-container .main-header .header__bottom--row ul.mod-list > li:focus ul {
  opacity: 1;
  pointer-events: all;
}
body.site .header-container .main-header .header__bottom--row .mobileBottom .menu-desktop {
  display: none;
}
@media screen and (max-width: 1099px) {
  body.site .header-container .main-header .header__bottom--row .mobileBottom .menu-desktop {
    display: block;
  }
}
body.site .header-container .main-logo {
  display: flex;
  transition: 0.15s ease-in-out;
  transition-delay: 0.5s;
}
body.site .header-container .small-logo {
  display: none;
}
@media screen and (min-width: 1100px) {
  body.site.scrolled .header-container .main-header {
    transition: 0.15s ease-in-out;
  }
  body.site.scrolled .header-container .main-header .main-logo {
    display: none;
  }
  body.site.scrolled .header-container .main-header .small-logo {
    display: flex;
    height: 53px;
    position: absolute;
    top: 0;
    transition: 0.15s ease-in-out;
    width: 60px;
    z-index: 999;
  }
  body.site.scrolled .header-container .main-header .header__top--row {
    height: 74px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__top--row {
    height: 53px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__top--row {
    align-items: center;
    padding-top: 0;
  }
}
@media screen and (min-width: 1100px) {
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container {
    left: 140px;
    position: relative;
    top: -9px;
    width: 110px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container {
    left: 70px;
    width: 70px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container {
    left: 100px;
    top: -12px;
    width: 100px;
  }
}
@media screen and (min-width: 1100px) {
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon {
    align-items: inherit;
    border: 1px solid #982065;
    border-radius: 4px;
    display: flex;
    height: 30px;
    width: 30px;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.hide-on-scroll {
    display: none;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .searchIcon.show-on-scroll {
    display: flex;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone .ss-telephone {
    align-items: center;
    border: 1px solid #982065;
    border-radius: 4px;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    padding-right: 0 !important;
    transition: 0.15s ease-in-out;
    width: 30px;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone a span.hide-on-scroll {
    display: none;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone.active {
    width: 230px;
  }
  body.site.scrolled .header-container .main-header .header__top--row .header__top--row-left .header__search--container .header__phone.active p a {
    display: inline-flex;
  }
  body.site.scrolled .header-container .main-header .header__bottom--row {
    margin: 0 auto;
    margin-top: -60px;
    position: relative;
    width: 65%;
  }
}
@media screen and (min-width: 1100px) and (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__bottom--row {
    float: right;
    margin-top: -45px;
    width: 83%;
  }
}
@media screen and (min-width: 1100px) and (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__bottom--row {
    margin-bottom: 3px;
    margin-top: -64px;
  }
}
@media screen and (min-width: 1100px) {
  body.site.scrolled .header-container .main-header .header__bottom--row.scrolled {
    display: flex;
  }
  body.site.scrolled .header-container .main-header .header__top--row-right {
    margin-top: -4px;
  }
}
@media screen and (min-width: 1100px) and (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.scrolled .header-container .main-header .header__top--row-right {
    margin-top: 0;
  }
}

.menuToggled .main-header {
  height: 310px;
}
@media (min-width: 768px) {
  .menuToggled .main-header {
    height: auto;
  }
}
.menuToggled .main-header .menuToggle span {
  display: none;
}
.menuToggled .main-header .menuToggle #mttCloseBtn {
  display: block;
}
@media screen and (max-width: 766px) {
  .menuToggled .main-header .mobileTop, .menuToggled .main-header .mobileBottom {
    margin-left: 8px;
  }
}
@media screen and (max-width: 766px) {
  .menuToggled .main-header .mobileHeader {
    background-color: #FFFFFF;
    padding-bottom: 10px;
  }
}
.menuToggled .main-header .mobileHeader .h-logo {
  display: none;
}
.menuToggled .main-header .mobileHeader .h-mobile-logo {
  display: block;
}
.menuToggled .closer {
  opacity: 1;
  pointer-events: all;
}

.accountToggled .main-header {
  height: 120px;
}
@media (min-width: 768px) {
  .accountToggled .main-header {
    height: auto;
  }
}
.accountToggled .closer {
  opacity: 1;
  pointer-events: all;
}

.closer {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0px;
  display: block;
  height: 100vh;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: all ease-in-out 0.2s;
  width: 100vw;
  z-index: 9;
}

.main-header {
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  height: 65px;
  line-height: 19px;
  margin: 0px auto;
  margin-bottom: 20px;
  max-width: 1500px;
  position: relative;
  width: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 575.98px) {
  .main-header {
    align-items: center;
    display: flex;
    height: initial;
    margin-bottom: 0;
    overflow-x: hidden;
  }
}
@media (min-width: 768px) {
  .main-header {
    height: auto;
    margin-bottom: 0;
  }
}
.main-header .menuToggle {
  height: 25px;
  left: 0;
  position: absolute;
  top: 15px;
  width: 25px;
  z-index: 11;
}
@media (min-width: 768px) {
  .main-header .menuToggle {
    display: none;
  }
}
.main-header .menuToggle span {
  color: #FFFFFF;
}
.main-header .menuToggle #mttCloseBtn {
  display: none;
}
@media screen and (max-width: 766px) {
  .main-header .menuToggle #mttCloseBtn {
    cursor: pointer;
    left: -10px;
    position: absolute;
    top: 7px;
  }
}
.main-header .menuToggle .close::before {
  height: 3px;
}
.main-header .menuToggle .close::after {
  height: 3px;
}
.main-header .accountToggle {
  height: 25px;
  position: absolute;
  right: 0px;
  top: 15px;
  width: 25px;
  z-index: 11;
}
@media (min-width: 768px) {
  .main-header .accountToggle {
    display: none;
  }
}
.main-header .accountToggle span {
  color: #FFFFFF;
  font-size: 25px;
}
.main-header ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .main-header ul {
    display: inline-block;
    margin-bottom: 0;
  }
}
.main-header ul li {
  color: #000000;
  position: relative;
}
@media (min-width: 768px) {
  .main-header ul li {
    display: inline-block;
  }
}
.main-header ul li:hover ul, .main-header ul li:active ul, .main-header ul li:focus ul {
  opacity: 1;
  pointer-events: all;
}
.main-header ul li:hover a,
.main-header ul li:hover span, .main-header ul li:active a,
.main-header ul li:active span, .main-header ul li:focus a,
.main-header ul li:focus span {
  text-decoration: none;
}
.main-header ul li:hover ul li a, .main-header ul li:active ul li a, .main-header ul li:focus ul li a {
  background: white;
}
.main-header ul li.phoneNumber {
  margin-left: 0;
}
@media screen and (max-width: 799px) {
  .main-header ul li.phoneNumber {
    font-size: 14px;
  }
}
.main-header ul li:first-child {
  margin-left: 0;
}
.main-header ul li:last-child {
  margin-bottom: 1rem;
}

.h-mobile-logo {
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/logo.svg") no-repeat center top transparent;
  background-size: contain;
  display: none;
  height: 54px;
  margin: 10px auto;
  width: 133px;
}
.h-mobile-logo svg {
  height: auto;
  width: 100%;
}

.header-container {
  background: transparent;
  left: 0px;
  position: relative;
  right: 0px;
  top: 0px;
  transition: all ease-in-out 0.3s;
  z-index: 20;
}
.header-container .header-live-bidding-banner {
  align-items: center;
  background: #982065;
  color: #FFFFFF;
  display: flex;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.5px;
  margin-top: -1px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .header-container .header-live-bidding-banner {
    border: none;
    float: left;
    height: auto;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 5px 15px;
    position: relative;
    top: 0;
    width: 100%;
  }
}
.header-container .header-live-bidding-banner .banner-content {
  align-items: center;
  display: flex;
}
.header-container .header-live-bidding-banner .banner-content a {
  color: #FFFFFF;
}
.header-container .header-live-bidding-banner .fa-times {
  align-items: center;
  background: rgba(255, 255, 255, 0.3294117647);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 19px;
  justify-content: center;
  margin-left: 5px;
  position: relative;
  width: 19px;
}
@media (max-width: 575.98px) {
  .header-container .header-live-bidding-banner .fa-times {
    height: 19px;
    width: 19px;
    flex: none;
  }
  .header-container .header-live-bidding-banner .fa-times::before {
    top: 2px;
  }
}
.header-container .header-live-bidding-banner .fa-times::before {
  content: "×";
  position: absolute;
  top: 2.5px;
}

.scrolled .header-container,
body #header,
body.com_bidstream.view-sale .header-container,
body.activeSaleHeader .header-container {
  position: fixed;
}
@media (max-width: 575.98px) {
  .scrolled .header-container .header-menu-row,
  body #header .header-menu-row,
  body.com_bidstream.view-sale .header-container .header-menu-row,
  body.activeSaleHeader .header-container .header-menu-row {
    border: none;
  }
}
@media (max-width: 991.98px) {
  .scrolled .header-container .header-menu-row,
  body #header .header-menu-row,
  body.com_bidstream.view-sale .header-container .header-menu-row,
  body.activeSaleHeader .header-container .header-menu-row {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .scrolled .header-container,
  body #header,
  body.com_bidstream.view-sale .header-container,
  body.activeSaleHeader .header-container {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .scrolled .header-container,
  body #header,
  body.com_bidstream.view-sale .header-container,
  body.activeSaleHeader .header-container {
    padding: 0;
  }
}

.h-search-telephone, .h-account, .h-menu {
  width: 100%;
}

.h-search-telephone ul, .h-account ul {
  width: 100%;
}

.menuToggled .h-menu {
  display: block;
}
@media screen and (max-width: 766px) {
  .menuToggled .h-menu {
    background-color: #FFFFFF;
  }
}
.menuToggled .h-menu .mobileSearchContainer {
  display: none;
}
@media screen and (max-width: 766px) {
  .menuToggled .h-menu .mobileSearchContainer {
    border: 1px solid #E5E5E5;
    color: #222E5B;
    display: block;
    position: relative;
  }
}
@media screen and (max-width: 766px) {
  .menuToggled .h-menu .mobileSearchContainer .ss-search {
    border: none;
    color: #A68F65;
    display: inline;
    left: 30px;
    padding: 0px;
    position: absolute;
    top: 30px;
  }
}
@media screen and (max-width: 766px) {
  .menuToggled .h-menu .mobileSearchContainer a {
    color: #808080;
    display: block;
    padding-left: 60px;
  }
}

.h-menu {
  display: flex;
  flex-direction: column;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100vw - 15px);
}
@media (min-width: 768px) {
  .h-menu {
    display: flex;
    justify-content: flex-end;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
  }
}
@media (max-width: 576px) {
  .h-menu {
    display: flex;
    flex-direction: column;
  }
}
.h-menu .mobileSearchContainer {
  display: none;
}
@media screen and (max-width: 766px) {
  .h-menu .mobileSearchContainer {
    display: block;
  }
}
.h-menu .mobileSearchContainer .ss-search {
  display: none;
}
.h-menu .mobileSearchContainer a {
  display: none;
}
.h-menu ul {
  width: 100%;
}
@media (min-width: 768px) {
  .h-menu ul {
    margin-bottom: 0;
    margin-top: 0px;
  }
}
@media (min-width: 992px) {
  .h-menu ul {
    margin-bottom: 0;
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .h-menu ul {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
  }
}

.accountToggled .h-account {
  display: block;
}

.invertedHeader {
  padding-top: 87px;
}
@media (min-width: 768px) {
  .invertedHeader {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .invertedHeader {
    padding-top: 0;
  }
}
.invertedHeader .header-container {
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
}
.invertedHeader .h-logo {
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/r-logo.svg") no-repeat center top transparent;
  background-size: contain;
}
.invertedHeader .main-header {
  color: #222E5B;
}
.invertedHeader .main-header ul li {
  color: #222E5B;
}
.invertedHeader .main-header ul li a,
.invertedHeader .main-header ul li span {
  color: #222E5B;
}
.invertedHeader .main-header ul li a:hover, .invertedHeader .main-header ul li a:active, .invertedHeader .main-header ul li a:focus,
.invertedHeader .main-header ul li span:hover,
.invertedHeader .main-header ul li span:active,
.invertedHeader .main-header ul li span:focus {
  color: #982065;
}
.invertedHeader .main-header ul li a span,
.invertedHeader .main-header ul li span span {
  color: #222E5B;
}
.invertedHeader .main-header .menuToggle a span,
.invertedHeader .main-header .accountToggle a span {
  color: #222E5B;
}
.invertedHeader .main-header .h-search-telephone ul li.searchIcon {
  border-color: #222E5B;
}
.invertedHeader .main-header .btn.btn-bordered {
  border-color: #222E5B;
  color: #222E5B;
}

/* ======
FOOTER

- NEWSLETTER SIGNUP
- FOOTER INFORMATION
- FOOTER COPYRIGHT

====== */
/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
#footer {
  background: #FFFFFF;
  color: #FFFFFF;
}
#footer .footerContainer {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  /*================================================================================
  $ NEWSLETTER SIGNUP
  ================================================================================*/
  /*================================================================================
  $ FOOTER INFORMATION
  ================================================================================*/
  /*================================================================================
  $ FOOTER COPYRIGHT
  ================================================================================*/
}
@media (min-width: 992px) {
  #footer .footerContainer {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #footer .footerContainer {
    max-width: 1240px;
  }
}
#footer .footerContainer .footer__newsletter--container {
  background-color: #FBF8F8;
  margin: 50px 0;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__newsletter--container {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
#footer .footerContainer .footer__newsletter--container .emailSignUp {
  padding: 1.5rem;
  border-radius: 5px;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__newsletter--container .emailSignUp {
    padding: 2rem 0rem 2rem 0.5rem;
  }
}
#footer .footerContainer .footer__newsletter--container .emailSignUp h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
#footer .footerContainer .footer__newsletter--container .emailSignUp h4 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
#footer .footerContainer .footer__newsletter--container .emailSignUp form input {
  border: none;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 35px;
  padding-left: 10px;
  text-transform: none;
  width: 100%;
}
#footer .footerContainer .footer__newsletter--container .emailSignUp form input:focus {
  outline: 1px solid #982065;
}
#footer .footerContainer .footer__newsletter--container .emailSignUp .footer__signUp--btn {
  background-color: #982065;
  border-radius: 5px;
  border: 1px solid #982065;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 799px) {
  #footer .footerContainer .footer__newsletter--container .emailSignUp .footer__signUp--btn {
    padding: 0.5rem 3rem;
  }
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__newsletter--container .emailSignUp .footer__signUp--btn {
    padding: 7px 0rem 7px 0rem;
    width: 100%;
  }
}
#footer .footerContainer .footer__info--container {
  margin-top: 70px;
}
@media screen and (max-width: 799px) {
  #footer .footerContainer .footer__info--container {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container {
    padding-left: 10px;
    padding-left: 10px;
    border-top: 2px solid #982065;
    padding-top: 20px;
  }
}
#footer .footerContainer .footer__info--container .footerMenus {
  color: white;
  font-size: 16px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus {
    margin-top: 2rem;
  }
}
#footer .footerContainer .footer__info--container .footerMenus h3 {
  font-weight: 400;
  font-size: 18px;
  color: #2D2D2D;
}
#footer .footerContainer .footer__info--container .footerMenus ul {
  padding-left: 0px;
  margin-bottom: 0px;
  text-align: left;
}
#footer .footerContainer .footer__info--container .footerMenus ul li {
  width: 100%;
  list-style: none;
}
#footer .footerContainer .footer__info--container .footerMenus ul li a {
  color: #0B0A1D;
  text-transform: uppercase;
  font-family: "Georgia", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  text-transform: capitalize;
}
#footer .footerContainer .footer__info--container .footerMenus ul li a:hover {
  text-decoration: none;
}
#footer .footerContainer .footer__info--container .footerMenus ul .footer__column--1-heading, #footer .footerContainer .footer__info--container .footerMenus ul .footer__column--2-heading {
  display: none;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus ul .footer__column--1-heading, #footer .footerContainer .footer__info--container .footerMenus ul .footer__column--2-heading {
    color: #982065;
    display: block;
    font-family: "Arial", serif;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 0.5rem;
  }
}
#footer .footerContainer .footer__info--container .footerMenus img.footer__logo {
  width: 100%;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus img.footer__logo {
    width: 70%;
  }
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactOne {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactOne p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactOne p a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactTwo {
  margin-bottom: 1rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactTwo p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__contactThree p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__socialContainer {
  margin-top: 1.5rem;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__socialContainer ul {
  padding-left: 0px;
}
#footer .footerContainer .footer__info--container .footerMenus .footer__socialContainer ul li {
  display: inline;
  padding-right: 8px;
}
#footer .footerContainer .footer__info--container .footerMenus .logo__container {
  margin-top: 1rem;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus .logo__container {
    text-align: center;
  }
}
#footer .footerContainer .footer__info--container .footerMenus .logo__container a .sofaa__logo {
  width: 100%;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus .logo__container a .sofaa__logo {
    width: 70%;
  }
}
#footer .footerContainer .footer__info--container .footerMenus .logo__container a .artLoss__logo {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .footerMenus .logo__container a .artLoss__logo {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__info--container .dummyColumn {
    display: none;
  }
}
#footer .footerContainer .social__media--row .footer__socialContainer {
  margin-top: 1.5rem;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .social__media--row .footer__socialContainer {
    text-align: center;
  }
}
#footer .footerContainer .social__media--row .footer__socialContainer ul {
  padding-left: 0px;
}
#footer .footerContainer .social__media--row .footer__socialContainer ul li {
  display: inline;
  padding-right: 8px;
}
#footer .footerContainer .social__media--row .logo__container {
  text-align: right;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .social__media--row .logo__container {
    text-align: center;
  }
}
#footer .footerContainer .social__media--row .logo__container .sofaa__logo {
  width: 60%;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .social__media--row .logo__container .sofaa__logo {
    margin-bottom: 1rem;
    margin-top: 1rem;
    width: 70%;
  }
}
#footer .footerContainer .social__media--row .logo__container .artLoss__logo {
  margin-top: 10px;
  width: 100%;
}
#footer .footerContainer .footer__copyright {
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__copyright {
    margin-top: 2rem;
  }
}
#footer .footerContainer .footer__copyright p {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  #footer .footerContainer .footer__copyright p {
    font-size: 11px;
  }
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
@font-face {
  font-family: "Bembo Std";
  src: url("../fonts/BemboStd.eot");
  src: url("../fonts/BemboStd.eot#iefix") format("embedded-opentype"), url("../fonts/BemboStd.ttf") format("truetype"), url("../fonts/BemboStd.woff") format("woff"), url("../fonts/BemboStd.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Arial", serif;
  font-weight: 500;
  font-style: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .container-fluid, body .container-sm, body .container-md, body .container-lg, body .container-xl, body .container-xxl {
  margin: 0 auto;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}
body .main-container {
  box-shadow: 0px 15px 0px 0px white, 0px -15px 0px 0px white, 6px 0px 20px rgba(0, 0, 0, 0.1), -6px 0px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  body .main-container {
    box-shadow: none;
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
  }
}
body .container-fluid-1600 {
  max-width: 1600px;
  margin: 0 auto;
}
body.com_sppagebuilder {
  background: #F6F4F4;
}
@media (max-width: 991.98px) {
  body.site {
    overflow-x: hidden;
  }
}

h1, h2, h3, h4, h5 {
  line-height: 1;
  font-family: "Arial", serif;
  color: #000000;
  font-weight: 400;
}

h1, .h1 {
  font-size: 48px;
}

h2, .h2 {
  font-size: 36px;
  line-height: 41px;
}

h3, .h3 {
  font-size: 24px;
  line-height: 29px;
}

h4, .h4 {
  font-size: 24px;
  line-height: 28px;
}
h4.small, .h4.small {
  font-size: 14px;
}

h5, .h5 {
  font-size: 16px;
}
h5.strong, .h5.strong {
  font-weight: 700;
}
@media screen and (max-width: 766px) {
  h5.strong, .h5.strong {
    line-height: 1.4;
  }
}

p {
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-weight: 500;
}
p.small {
  font-size: 12px;
}

.meta {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}

.meta-md {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

.meta-bold {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}

.medium-text {
  font-size: 16px;
  line-height: 21px;
}

a.medium-text {
  color: #000000;
  text-decoration: underline;
}

dl {
  font-size: 14px;
  margin-bottom: 0px;
}
dl dt {
  font-weight: 500;
  margin-bottom: 0px;
}
dl dd {
  color: #222E5B;
  margin-bottom: 0px;
}

.text-teal {
  color: #982065;
}

.text-gold {
  color: #A68F65;
}

a.text-gold {
  color: #A68F65;
  transition: all ease-in-out 0.2s;
}
a.text-gold:hover {
  color: #735F3A;
  text-decoration: underline;
}

.text-gold-light {
  color: rgba(166, 143, 101, 0.3);
}

.text-gold-2 {
  color: #735F3A;
}

.text-blue {
  color: #222E5B;
  line-height: 1.3;
}

a.text-blue {
  color: #222E5B;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
a.text-blue:hover {
  color: black;
  text-decoration: underline;
}

.text-blue-1 {
  color: #151D3C;
}

.text-red {
  color: #CB4E20;
}

a.text-red {
  color: #CB4E20;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
  cursor: pointer;
}
a.text-red:hover {
  color: #CB4E20;
  text-decoration: underline;
}

.text-red-2 {
  color: #99340F;
}

.text-grey-1 {
  color: #F8F8F8;
}

.text-grey-2 {
  color: #E5E5E5;
}

.text-grey-3 {
  color: #C4C4C4;
}

a.text-grey-3 {
  color: #C4C4C4;
  transition: all ease-in-out 0.2s;
  text-decoration: none;
  cursor: pointer;
}
a.text-grey-3:hover {
  color: #808080;
  text-decoration: underline;
}

.text-grey-4 {
  color: #808080;
}

a {
  color: #982065;
  text-decoration: none;
}
a:hover {
  color: #982065;
  text-decoration: underline;
}

a.text-grey-4 {
  color: #808080;
  transition: all ease-in-out 0.2s;
}
a.text-grey-4:hover {
  color: black;
  text-decoration: underline;
}

.text-green {
  color: #00894F;
}

.text-white {
  color: white;
}

.text-pink {
  color: #982065;
}

.text-black {
  color: #0B0A1D;
}

.letter-spacing1 {
  letter-spacing: 1px;
}

.letter-spacing2 {
  letter-spacing: 2px;
}

.font-size10 {
  font-size: 10px;
}

.font-size12 {
  font-size: 12px;
}

.font-size14 {
  font-size: 14px;
}

.font-p {
  font-family: "Georgia", sans-serif;
}

.font-s {
  font-family: "Arial", serif;
}

.bg-light-gray {
  background: #FBF8F8 !important;
}

ul.list-unstyled {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
ul.list-unstyled.margined li {
  margin-bottom: 10px;
}

ul.list-inline li {
  display: inline-block;
}
@media screen and (max-width: 766px) {
  ul.list-inline li {
    width: 100%;
  }
  .auctionBreadCrumb ul.list-inline li, .countdown ul.list-inline li {
    width: auto;
  }
}
ul.list-inline li a {
  cursor: pointer;
  font-weight: 500;
  font-family: "Arial", serif;
}
ul.list-inline li .active {
  background-color: #982065;
  color: #FFFFFF;
}

a.grey-link {
  color: #5A5A5A;
  transition: all ease-in-out 0.2s;
}
a.grey-link:hover {
  color: black;
  text-decoration: underline;
}

hr {
  border: 0px none;
  border-top: 1px solid #E5E5E5;
  outline: 0px none;
}

.buying-page .text-teal h2, .buying-page .text-teal h3,
.selling .text-teal h2,
.selling .text-teal h3,
.selling-page .text-teal h2,
.selling-page .text-teal h3,
.how-to-sell .text-teal h2,
.how-to-sell .text-teal h3 {
  color: #982065;
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-search-cancel-button,
input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

button.btn, a.btn, .btn, input.btn {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #212529;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  vertical-align: middle;
  user-select: none;
  transition: all ease-in-out 0.2s;
  text-align: center;
  text-transform: uppercase;
}
button.btn.blue, a.btn.blue, .btn.blue, input.btn.blue {
  background-color: #222E5B;
  border: 1px solid #222E5B;
  color: white;
}
button.btn.blue:hover, a.btn.blue:hover, .btn.blue:hover, input.btn.blue:hover {
  background-color: #151D3C;
  border: 1px solid #151D3C;
  color: white;
  text-decoration: none;
}
button.btn.blue:disabled, a.btn.blue:disabled, .btn.blue:disabled, input.btn.blue:disabled {
  opacity: 0.6;
}
button.btn.red, a.btn.red, .btn.red, input.btn.red {
  background-color: #A60000;
  border: 1px solid #A60000;
  color: white;
}
button.btn.red:hover, a.btn.red:hover, .btn.red:hover, input.btn.red:hover {
  background-color: #A60000;
  border: 1px solid #A60000;
  color: white;
  text-decoration: none;
}
button.btn.red:hover, a.btn.red:hover, .btn.red:hover, input.btn.red:hover {
  background-color: #FFFFFF;
  border-color: #A60000;
  color: #A60000;
}
button.btn.green, a.btn.green, .btn.green, input.btn.green {
  background-color: #00894F;
  border: 1px solid #00894F;
  color: white;
}
button.btn.green:hover, a.btn.green:hover, .btn.green:hover, input.btn.green:hover {
  background-color: #00894F;
  border: 1px solid #00894F;
  color: white;
  text-decoration: none;
}
button.btn.gold, a.btn.gold, .btn.gold, input.btn.gold {
  background-color: #A68F65;
  border: 1px solid #A68F65;
  color: white;
}
button.btn.gold:hover, a.btn.gold:hover, .btn.gold:hover, input.btn.gold:hover {
  background-color: #735F3A;
  border: 1px solid #735F3A;
  color: white;
  text-decoration: none;
}
button.btn.stone, a.btn.stone, .btn.stone, input.btn.stone {
  background-color: #DAC5B7;
  border: 1px solid #DAC5B7;
  color: #000000;
}
button.btn.stone:hover, a.btn.stone:hover, .btn.stone:hover, input.btn.stone:hover {
  background-color: #DAC5B7;
  border: 1px solid #DAC5B7;
  color: #FFFFFF;
  text-decoration: none;
}
button.btn.stone:hover, a.btn.stone:hover, .btn.stone:hover, input.btn.stone:hover {
  background-color: #982065;
  border-color: #2D2D2D;
}
button.btn.pink, a.btn.pink, .btn.pink, input.btn.pink {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
}
button.btn.pink:hover, a.btn.pink:hover, .btn.pink:hover, input.btn.pink:hover {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
  text-decoration: none;
}
button.btn.pink:hover, a.btn.pink:hover, .btn.pink:hover, input.btn.pink:hover {
  background-color: #FFFFFF;
  border-color: #982065;
}
button.btn.gray, a.btn.gray, .btn.gray, input.btn.gray {
  background-color: #939393;
  border: 1px solid #939393;
  color: white;
}
button.btn.gray:hover, a.btn.gray:hover, .btn.gray:hover, input.btn.gray:hover {
  background-color: #939393;
  border: 1px solid #939393;
  color: white;
  text-decoration: none;
}
button.btn.gray:hover, a.btn.gray:hover, .btn.gray:hover, input.btn.gray:hover {
  background-color: #FFFFFF;
  border-color: #939393;
  color: #939393;
}
button.btn.gray-outline, a.btn.gray-outline, .btn.gray-outline, input.btn.gray-outline {
  background-color: #FFFFFF;
  border: 1px solid #5A5A5A;
  color: #5A5A5A;
}
button.btn.gray-outline:hover, a.btn.gray-outline:hover, .btn.gray-outline:hover, input.btn.gray-outline:hover {
  background-color: #5A5A5A;
  border: 1px solid #5A5A5A;
  color: #5A5A5A;
  text-decoration: none;
}
button.btn.gray-outline:hover, a.btn.gray-outline:hover, .btn.gray-outline:hover, input.btn.gray-outline:hover {
  background-color: #5A5A5A;
  color: #FFFFFF;
}
button.btn.pink, button.btn.pink-outline, a.btn.pink, a.btn.pink-outline, .btn.pink, .btn.pink-outline, input.btn.pink, input.btn.pink-outline {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
}
button.btn.pink:hover, button.btn.pink-outline:hover, a.btn.pink:hover, a.btn.pink-outline:hover, .btn.pink:hover, .btn.pink-outline:hover, input.btn.pink:hover, input.btn.pink-outline:hover {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
  text-decoration: none;
}
button.btn.pink:hover, button.btn.pink-outline:hover, a.btn.pink:hover, a.btn.pink-outline:hover, .btn.pink:hover, .btn.pink-outline:hover, input.btn.pink:hover, input.btn.pink-outline:hover {
  background-color: #FFFFFF;
  border-color: #982065;
  color: #982065;
}
button.btn.pink.btnRegisterToBidLive, button.btn.pink-outline.btnRegisterToBidLive, a.btn.pink.btnRegisterToBidLive, a.btn.pink-outline.btnRegisterToBidLive, .btn.pink.btnRegisterToBidLive, .btn.pink-outline.btnRegisterToBidLive, input.btn.pink.btnRegisterToBidLive, input.btn.pink-outline.btnRegisterToBidLive {
  height: 40px;
  min-height: 40px;
  line-height: initial;
  min-width: 40%;
  width: auto;
}
button.btn.pink.btnLoginToBid, button.btn.pink-outline.btnLoginToBid, a.btn.pink.btnLoginToBid, a.btn.pink-outline.btnLoginToBid, .btn.pink.btnLoginToBid, .btn.pink-outline.btnLoginToBid, input.btn.pink.btnLoginToBid, input.btn.pink-outline.btnLoginToBid {
  height: 40px;
  min-height: 40px;
  line-height: 100%;
  min-width: 40%;
}
button.btn.pink.btn_place_bid, button.btn.pink-outline.btn_place_bid, a.btn.pink.btn_place_bid, a.btn.pink-outline.btn_place_bid, .btn.pink.btn_place_bid, .btn.pink-outline.btn_place_bid, input.btn.pink.btn_place_bid, input.btn.pink-outline.btn_place_bid {
  min-height: 44px;
  height: 44px;
  min-width: 40%;
  width: auto;
  line-height: 100%;
  flex: none;
}
button.btn.pink.btn_place_bid:hover, button.btn.pink-outline.btn_place_bid:hover, a.btn.pink.btn_place_bid:hover, a.btn.pink-outline.btn_place_bid:hover, .btn.pink.btn_place_bid:hover, .btn.pink-outline.btn_place_bid:hover, input.btn.pink.btn_place_bid:hover, input.btn.pink-outline.btn_place_bid:hover {
  color: #fff;
  background: #982065;
}
button.btn.pink-outline, a.btn.pink-outline, .btn.pink-outline, input.btn.pink-outline {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}
button.btn.pink-outline:hover, a.btn.pink-outline:hover, .btn.pink-outline:hover, input.btn.pink-outline:hover {
  background-color: #982065;
  border: 1px solid #982065;
  color: #982065;
  text-decoration: none;
}
button.btn.pink-outline:hover, a.btn.pink-outline:hover, .btn.pink-outline:hover, input.btn.pink-outline:hover {
  background-color: #982065;
  color: #FFFFFF;
}
button.btn.pink-outline.active, a.btn.pink-outline.active, .btn.pink-outline.active, input.btn.pink-outline.active {
  background-color: #982065;
  color: #FFFFFF;
}
button.btn.pink-outline.filters-toggler, a.btn.pink-outline.filters-toggler, .btn.pink-outline.filters-toggler, input.btn.pink-outline.filters-toggler {
  height: 40px;
}
button.btn.pink-outline.btn-insta, a.btn.pink-outline.btn-insta, .btn.pink-outline.btn-insta, input.btn.pink-outline.btn-insta {
  font-size: 12px;
  line-height: 38px;
  min-height: 40px;
  padding: 0 32px;
  font-weight: 400;
  font-size: 14px;
  color: #982065;
}
button.btn.pink-outline.btn-insta::before, a.btn.pink-outline.btn-insta::before, .btn.pink-outline.btn-insta::before, input.btn.pink-outline.btn-insta::before {
  content: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/insta-icon.svg");
  width: 14px;
  height: 16px;
  padding: 0px;
  display: inline-flex;
  position: relative;
  top: 4px;
  left: -9px;
}
button.btn.pink-outline.btn-insta:hover, a.btn.pink-outline.btn-insta:hover, .btn.pink-outline.btn-insta:hover, input.btn.pink-outline.btn-insta:hover {
  color: #fff;
  background: #982065;
}
button.btn.pink-outline.btn-insta:hover::before, a.btn.pink-outline.btn-insta:hover::before, .btn.pink-outline.btn-insta:hover::before, input.btn.pink-outline.btn-insta:hover::before {
  content: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/insta-icon-white.svg");
  fill: #a92222;
  transition: ease;
}
button.btn.pink-outline.print-catalogue, a.btn.pink-outline.print-catalogue, .btn.pink-outline.print-catalogue, input.btn.pink-outline.print-catalogue {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  height: 38px;
  min-height: 38px;
  padding: 10px 25px;
}
button.btn.pink-outline.print-catalogue::before, a.btn.pink-outline.print-catalogue::before, .btn.pink-outline.print-catalogue::before, input.btn.pink-outline.print-catalogue::before {
  content: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/download-catalogue-icon.svg");
  display: inline-flex;
  height: 16px;
  left: -10px;
  padding: 0px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
}
button.btn.pink-outline.print-catalogue:hover::before, a.btn.pink-outline.print-catalogue:hover::before, .btn.pink-outline.print-catalogue:hover::before, input.btn.pink-outline.print-catalogue:hover::before {
  filter: brightness(0) invert(1);
  transition: 0.2s;
}
button.btn.pink-outline.btn_place_bid, a.btn.pink-outline.btn_place_bid, .btn.pink-outline.btn_place_bid, input.btn.pink-outline.btn_place_bid {
  min-height: 44px;
  height: 44px;
  min-width: 40%;
  width: auto;
  line-height: 100%;
  flex: none;
}
button.btn.pink-outline.view-details, a.btn.pink-outline.view-details, .btn.pink-outline.view-details, input.btn.pink-outline.view-details {
  min-height: 40px;
  height: 40px;
  line-height: 100%;
  min-width: 40%;
  width: auto;
}
button.btn.pink-outline.watchCount, a.btn.pink-outline.watchCount, .btn.pink-outline.watchCount, input.btn.pink-outline.watchCount {
  position: relative;
  min-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.btn.pink-outline.watchCount span, a.btn.pink-outline.watchCount span, .btn.pink-outline.watchCount span, input.btn.pink-outline.watchCount span {
  position: absolute;
  left: 70px;
  top: 2px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
}
button.btn.pink-outline.reduceMaxBid, button.btn.pink-outline.cancelBid, a.btn.pink-outline.reduceMaxBid, a.btn.pink-outline.cancelBid, .btn.pink-outline.reduceMaxBid, .btn.pink-outline.cancelBid, input.btn.pink-outline.reduceMaxBid, input.btn.pink-outline.cancelBid {
  min-height: 44px;
  height: 44px;
  line-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40%;
  width: auto;
  flex: none;
}
button.btn.pink-outline.reduceMaxBid:hover, button.btn.pink-outline.cancelBid:hover, a.btn.pink-outline.reduceMaxBid:hover, a.btn.pink-outline.cancelBid:hover, .btn.pink-outline.reduceMaxBid:hover, .btn.pink-outline.cancelBid:hover, input.btn.pink-outline.reduceMaxBid:hover, input.btn.pink-outline.cancelBid:hover {
  color: #fff;
  background: #982065;
}
button.btn.teal-outline, a.btn.teal-outline, .btn.teal-outline, input.btn.teal-outline {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}
button.btn.teal-outline:hover, a.btn.teal-outline:hover, .btn.teal-outline:hover, input.btn.teal-outline:hover {
  background-color: #982065;
  border: 1px solid #982065;
  color: #982065;
  text-decoration: none;
}
button.btn.teal-outline:hover, a.btn.teal-outline:hover, .btn.teal-outline:hover, input.btn.teal-outline:hover {
  background-color: #982065;
  color: #FFFFFF;
}
button.btn.teal-outline.btn-insta, a.btn.teal-outline.btn-insta, .btn.teal-outline.btn-insta, input.btn.teal-outline.btn-insta {
  font-size: 12px;
  line-height: 38px;
  min-height: 40px;
  padding: 0 32px;
  font-weight: 400;
  font-size: 14px;
  color: #982065;
}
button.btn.teal-outline.btn-insta::before, a.btn.teal-outline.btn-insta::before, .btn.teal-outline.btn-insta::before, input.btn.teal-outline.btn-insta::before {
  content: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/insta-icon.svg");
  width: 14px;
  height: 16px;
  padding: 0px;
  display: inline-flex;
  position: relative;
  top: 4px;
  left: -9px;
}
button.btn.teal-outline.btn-insta:hover, a.btn.teal-outline.btn-insta:hover, .btn.teal-outline.btn-insta:hover, input.btn.teal-outline.btn-insta:hover {
  color: #fff;
  background: #982065;
}
button.btn.teal-outline.btn-insta:hover::before, a.btn.teal-outline.btn-insta:hover::before, .btn.teal-outline.btn-insta:hover::before, input.btn.teal-outline.btn-insta:hover::before {
  content: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/insta-icon-white.svg");
  fill: #a92222;
  transition: ease;
}
button.btn.bordered, a.btn.bordered, .btn.bordered, input.btn.bordered {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
button.btn.bordered:hover, a.btn.bordered:hover, .btn.bordered:hover, input.btn.bordered:hover {
  background-color: white;
  border: 1px solid white;
  color: #222E5B;
  text-decoration: none;
}
button.btn.bordered-dark, a.btn.bordered-dark, .btn.bordered-dark, input.btn.bordered-dark {
  background-color: transparent;
  border: 1px solid #982065;
  color: #982065;
}
button.btn.bordered-dark:hover, a.btn.bordered-dark:hover, .btn.bordered-dark:hover, input.btn.bordered-dark:hover {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
  text-decoration: none;
}
button.btn.bordered-light, a.btn.bordered-light, .btn.bordered-light, input.btn.bordered-light {
  background-color: white;
  border: 1px solid #808080;
  color: #222E5B;
}
button.btn.bordered-light:hover, a.btn.bordered-light:hover, .btn.bordered-light:hover, input.btn.bordered-light:hover {
  background-color: #222E5B;
  border: 1px solid #222E5B;
  color: white;
  text-decoration: none;
}
button.btn.btn-block, a.btn.btn-block, .btn.btn-block, input.btn.btn-block {
  width: 100%;
  cursor: pointer;
}
button.btn.btn-small, a.btn.btn-small, .btn.btn-small, input.btn.btn-small {
  height: auto;
  padding: 5px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  min-height: 1px;
}
button.btn.btn-big, a.btn.btn-big, .btn.btn-big, input.btn.btn-big {
  min-height: 55px;
  line-height: 55px;
  padding: 0px 12px;
  width: 100%;
}
@media (min-width: 576px) {
  button.btn.btn-big, a.btn.btn-big, .btn.btn-big, input.btn.btn-big {
    padding: 0px 40px;
  }
}
button.btn.btn-md, a.btn.btn-md, .btn.btn-md, input.btn.btn-md {
  height: 44px;
  padding: 0px;
  font-size: 14px;
  line-height: 35px;
  padding: 0px 12px;
  min-height: 35px;
}
@media screen and (max-width: 766px) {
  button.btn.btn-md, a.btn.btn-md, .btn.btn-md, input.btn.btn-md {
    width: 100%;
  }
}
button.btn.primary-btn, a.btn.primary-btn, .btn.primary-btn, .btn.pay-online-btn, .btn.proceed-invoice-btn, input.btn.primary-btn {
  background-color: #222E5B;
  border: 1px solid #222E5B;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 50px;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
button.btn.primary-btn:hover, a.btn.primary-btn:hover, .btn.primary-btn:hover, .btn.pay-online-btn:hover, .btn.proceed-invoice-btn:hover, input.btn.primary-btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #222E5B;
  color: #222E5B;
}
button.btn.secondary-btn, a.btn.secondary-btn, .btn.secondary-btn, input.btn.secondary-btn {
  background-color: #A68F65;
  border: 1px solid #A68F65;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 50px;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
button.btn.secondary-btn:hover, a.btn.secondary-btn:hover, .btn.secondary-btn:hover, input.btn.secondary-btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #A68F65;
}

.btn-teal {
  background: #982065;
  padding: 6px 20px;
  color: #fff;
  font-family: "Georgia", sans-serif;
  border: none;
  letter-spacing: 2px;
  font-size: 14px;
}

button.btn.btn-login-to-bid,
a.btn.btn-login-to-bid,
.btn.btn-login-to-bid,
input.btn.btn-login-to-bid {
  background: #FFFFFF;
  border: 1px solid #982065;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #982065;
  padding: 0 45px;
  line-height: 38px;
  height: 45px;
  border-radius: 0;
  width: 250px;
}
button.btn.btn-login-to-bid:hover,
a.btn.btn-login-to-bid:hover,
.btn.btn-login-to-bid:hover,
input.btn.btn-login-to-bid:hover {
  background: #982065;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  button.btn.btn-login-to-bid,
  a.btn.btn-login-to-bid,
  .btn.btn-login-to-bid,
  input.btn.btn-login-to-bid {
    width: 100%;
  }
}

.btn.btn-teal {
  border: 2px solid #982065;
  width: 250px;
}
.btn.btn-teal:hover {
  color: #982065;
  background: #fff;
}

.btn.btn-teal.btn-teal-search {
  width: auto;
  height: 45px;
}

.btn.btn-place-bid {
  background: #982065 !important;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 45px;
  line-height: 38px;
  height: 50px;
  border: none;
  border-radius: 0;
}

.was-validated .form-input:invalid,
.was-validated .form-input.error {
  border-color: #CB4E20;
}
.was-validated .form-input:invalid + .invalid-field,
.was-validated .form-input.error + .invalid-field {
  display: block;
}

.form-group.inline {
  display: inline-block;
  margin-bottom: 0px;
}
.form-group.inline label {
  display: inline;
  width: auto;
  font-weight: 500;
  color: #808080;
  font-size: 14px;
}
.form-group.inline .form-input {
  display: inline;
  width: auto;
}
.form-group.inline .form-input.small {
  height: 44px;
  line-height: 30px;
  background: white;
}
.form-group.inline .form-input.white-bg {
  background: white;
}
.form-group.inline .form-input.filter-input {
  margin-bottom: 0;
}
.form-group a:not(.btn) {
  color: #808080;
  font-size: 12px;
  font-weight: 500;
  line-height: 19px;
}
.form-group label {
  display: inline-block;
  font-family: "Arial", serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 17px;
  margin-bottom: 1rem;
  color: #0B0A1D;
  text-align: left;
  width: 100%;
  position: relative;
  text-transform: uppercase;
}
.form-group label.pounds {
  position: relative;
}
.form-group label.pounds::before {
  position: absolute;
  bottom: -47px;
  content: "£";
  left: 15px;
  font-weight: 500;
  color: #222E5B;
}
.form-group label.pounds + input.form-input {
  padding-left: 40px;
}
.form-group label span {
  position: absolute;
  right: 0px;
  top: 0px;
  color: #C4C4C4;
  text-align: right;
  font-weight: 400;
  font-size: 12px;
}
.form-group .valueEmail {
  padding-top: 15px;
}
.form-group .valueMobile {
  padding-top: 15px;
}
.form-group .valuePassword {
  padding-top: 15px;
}
.form-group .form-input {
  background-clip: padding-box;
  border: 0.5px solid #939393;
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-weight: 400;
  height: 45px;
  line-height: 1.5;
  margin: 0px;
  outline: 0px none;
  padding: 0px 8px;
  transition: all ease-in-out 0.2s;
  width: 60%;
}
@media screen and (max-width: 799px) {
  .form-group .form-input {
    width: 80%;
  }
}
@media screen and (max-width: 799px) {
  .form-group .form-input {
    width: 100%;
  }
}
.form-group .form-input[type=password] {
  background: #FFFFFF;
}
@media screen and (max-width: 766px) {
  .form-group .form-input {
    margin-bottom: 20px;
  }
}
.form-group .form-input:hover, .form-group .form-input:focus {
  background: white;
}
.form-group .invalid-field {
  display: none;
  padding: 10px 0px;
  width: 100%;
  color: #CB4E20;
}
.form-group .password__requirements {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 15px !important;
  font-weight: 400;
}
.form-group.file-upload {
  position: relative;
  width: 100%;
  height: 45px;
}
.form-group.file-upload input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 45px;
  margin: 0;
  opacity: 0;
}
.form-group.file-upload label {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #222E5B;
  color: white;
  height: 45px;
  margin: 0px;
  width: 100%;
  text-align: center;
  line-height: 45px;
  text-transform: uppercase;
}
.form-group.checkbox {
  position: relative;
  width: 100%;
  height: 45px;
}
.form-group.checkbox input[type=checkbox] {
  opacity: 0;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 0;
}
.form-group.checkbox label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-weight: 400;
  font-size: 0.875rem;
  left: 0px;
  margin-bottom: 0px;
  padding-left: 40px;
  position: absolute;
  text-transform: none;
  top: 5px;
  z-index: 1;
}
.form-group.checkbox label::after {
  content: "";
  transition: all ease-in-out 0.2s;
  width: 25px;
  height: 25px;
  border: 1px solid #C4C4C4;
  position: absolute;
  left: 0px;
  top: -5px;
}
.form-group.checkbox label::before {
  content: "";
  transition: all ease-in-out 0.2s;
  position: absolute;
  left: 4px;
  top: 0px;
  opacity: 0;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  width: 7px;
  height: 13px;
  transform-origin: right bottom;
  transform: rotate(45deg);
  z-index: 2;
}
.form-group.checkbox label:hover::after, .form-group.checkbox label:focus::after {
  background: #C4C4C4;
}
.form-group.checkbox label:hover::before, .form-group.checkbox label:focus::before {
  opacity: 1;
  border-bottom: 3px solid #808080;
  border-right: 3px solid #808080;
}
.form-group.checkbox input[type=checkbox]:checked + label::after {
  border: 1px solid #982065;
  background: #982065;
}
.form-group.checkbox input[type=checkbox]:checked + label::before {
  opacity: 1;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
}
.form-group.checkbox input[type=checkbox]:checked:hover + label::after {
  background: #735F3A;
}
.form-group.radio {
  position: relative;
  width: 100%;
  height: 45px;
}
.form-group.radio input[type=radio] {
  opacity: 0;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 0;
}
.form-group.radio label {
  position: absolute;
  left: 0px;
  top: 5px;
  padding-left: 40px;
  font-weight: 400;
  color: black;
  margin-bottom: 0px;
  z-index: 1;
}
.form-group.radio label::after {
  content: "";
  transition: all ease-in-out 0.2s;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 5px solid #C4C4C4;
  position: absolute;
  left: 0px;
  top: -5px;
}
.form-group.radio label::before {
  content: "";
  transition: all ease-in-out 0.2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 3px;
  background: white;
}
.form-group.radio label:hover::before, .form-group.radio label:focus::before {
  background: #735F3A;
}
.form-group.radio label:hover::after, .form-group.radio label:focus::after {
  border: 5px solid #735F3A;
}
.form-group.radio input[type=radio]:checked + label::before {
  background: #A68F65;
}
.form-group.radio input[type=radio]:checked + label::after {
  border: 5px solid #A68F65;
}
.form-group.filterType {
  position: relative;
}
.form-group.filterType label {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 44px;
  line-height: 34px;
  text-align: center;
  display: flex;
  align-items: center;
}
.form-group.filterType label span {
  position: static;
  color: #222E5B;
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-group.filterType select.form-input {
  background: white;
  font-size: 14px;
  color: grey;
  margin-left: 30px;
  width: 120px;
}
.form-group.filterType select.form-input[type=text] {
  margin-right: 8px;
}
.form-group .password__bullets {
  float: left;
  padding-top: 30px;
  width: 100%;
}
.form-group .password__bullets .bullets__left-side {
  float: left;
  width: 40%;
}
.form-group .password__bullets .bullets__left-side ul li {
  font-size: 15px;
}
.form-group .password__bullets .bullets__right-side {
  float: right;
  width: 60%;
}
.form-group .password__bullets .bullets__right-side ul li {
  font-size: 15px;
}
.form-group .password__bullets .bullets__right-side ul li:nth-child(3) {
  list-style-type: none;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  background: #F8F8F8;
  padding: 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  z-index: 1;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 150px;
  left: -40px;
  width: 200px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 94px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.dropzone.ss-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .dropzone.ss-upload {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.dropzone.ss-upload .dz-message {
  width: 100%;
}
@media (min-width: 768px) {
  .dropzone.ss-upload .dz-message {
    margin: 0px;
    padding: 0px 40px;
    width: 50%;
  }
}
.dropzone.ss-upload .form-group {
  width: 100%;
}
@media (min-width: 768px) {
  .dropzone.ss-upload .form-group {
    margin: 0px;
    padding: 15px;
    width: 50%;
  }
}

.pass-req ul {
  padding-left: 25px;
}
.pass-req ul li {
  width: 50%;
  float: left;
}
@media (max-width: 768px) {
  .pass-req ul li {
    width: 50%;
  }
}
.pass-req ul li::marker {
  color: #982065;
  font-size: 20px;
}

/* ====== PAGEBUILDER ====== */
/* ======
PAGEBUILDER
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
#sp-page-builder .sppb-section.container-fluid, #sp-page-builder .sppb-section.container-sm, #sp-page-builder .sppb-section.container-md, #sp-page-builder .sppb-section.container-lg, #sp-page-builder .sppb-section.container-xl, #sp-page-builder .sppb-section.container-xxl {
  width: 100%;
}
#sp-page-builder .sppb-section.container-fluid > .sppb-row-container, #sp-page-builder .sppb-section.container-sm > .sppb-row-container, #sp-page-builder .sppb-section.container-md > .sppb-row-container, #sp-page-builder .sppb-section.container-lg > .sppb-row-container, #sp-page-builder .sppb-section.container-xl > .sppb-row-container, #sp-page-builder .sppb-section.container-xxl > .sppb-row-container {
  width: 100%;
}
#sp-page-builder .sppb-section.container-fluid > .sppb-row-container > .sppb-row > .sppb-col-md-12, #sp-page-builder .sppb-section.container-sm > .sppb-row-container > .sppb-row > .sppb-col-md-12, #sp-page-builder .sppb-section.container-md > .sppb-row-container > .sppb-row > .sppb-col-md-12, #sp-page-builder .sppb-section.container-lg > .sppb-row-container > .sppb-row > .sppb-col-md-12, #sp-page-builder .sppb-section.container-xl > .sppb-row-container > .sppb-row > .sppb-col-md-12, #sp-page-builder .sppb-section.container-xxl > .sppb-row-container > .sppb-row > .sppb-col-md-12 {
  padding-left: 0;
  padding-right: 0;
}
#sp-page-builder .sppb-section.page-content-container > .sppb-row-container > .sppb-row {
  margin-left: 0;
  margin-right: 0;
}
#sp-page-builder .btn {
  text-decoration: none;
}

body.isSafari #collapseArticleReadMore p,
body.isSafari #collapseArticleReadMore2 p {
  display: inline;
}

#collapseArticleReadMore.collapse.show p,
#collapseArticleReadMore2.collapse.show p {
  display: block;
}

#collapseArticleReadMore.collapse:not(.show) {
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#collapseArticleReadMore.collapsing {
  height: 250px;
}

#collapseArticleReadMore2.collapse:not(.show) {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
#collapseArticleReadMore2.collapsing {
  height: 225px;
}

.readMoreLink a.collapsed::before {
  content: "Read more";
}

.readMoreLink a:not(.collapsed)::before {
  content: "Read less";
}

.readMoreLink a:not(.collapsed)::after, .readMoreLink a.collapsed::after {
  content: "";
  background: url("../images/icons/view-more-icon.svg") no-repeat;
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-left: 5px;
}

/* ====== PROGRESS CONTROLS ====== */
/* ======
PROGRESS CONTROLS
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.progress-controls {
  width: 100%;
  margin: 0px auto;
  height: 110px;
  padding-top: 85px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .progress-controls {
    width: 228px;
  }
}
.progress-controls ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0px;
}
.progress-controls ul li {
  list-style: none;
  width: 10px;
  height: 18px;
  position: relative;
  z-index: 0;
}
.progress-controls ul li:first-child span.step {
  left: 0px;
  margin-left: 0px;
  text-align: left;
}
@media (min-width: 768px) {
  .progress-controls ul li:first-child span.step {
    text-align: center;
    left: 50%;
    margin-left: -75px;
  }
}
@media (max-width: 576px) {
  .progress-controls ul li:first-child span.step {
    margin-left: -50px;
  }
}
.progress-controls ul li:last-child span.step {
  left: -125px;
  margin-left: 0px;
  text-align: right;
  text-indent: 9000px;
}
@media (min-width: 768px) {
  .progress-controls ul li:last-child span.step {
    text-align: center;
    left: 50%;
    margin-left: -75px;
    text-indent: 0px;
  }
}
.progress-controls ul li span.step {
  position: absolute;
  width: 150px;
  z-index: 1;
  left: 50%;
  margin-left: -75px;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-indent: -9000px;
  display: none;
}
@media (min-width: 576px) {
  .progress-controls ul li span.step {
    margin-top: 20px;
    text-indent: 0px;
  }
}
@media (min-width: 768px) {
  .progress-controls ul li span.step {
    display: inline;
  }
}
.progress-controls ul li::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 1px;
  left: 8px;
  top: 50%;
  background: #D2D2D2;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .progress-controls ul li::after {
    width: 70px;
    margin-top: -0.5px;
  }
}
.progress-controls ul li.current span {
  color: #222E5B;
  text-indent: 0px;
  display: inline;
}
.progress-controls ul li.current:last-child span {
  text-indent: 0px;
}
.progress-controls ul li.current.current::before {
  background: url("../images/icons/pink-progress.svg");
  background-repeat: no-repeat;
  color: transparent;
}
.progress-controls ul li.complete {
  border: 1px solid #000000;
}
.progress-controls ul li.complete::before {
  background: #982065;
  color: #FFFFFF;
}
.progress-controls ul li.complete::after {
  background: #982065;
}
.progress-controls ul li:last-child::after {
  width: 0px;
}
.progress-controls ul li::before {
  content: counter(step);
  counter-increment: step;
  width: 38px;
  height: 38px;
  font-family: "Arial", serif;
  text-align: center;
  font-size: 24px;
  line-height: 27px;
  color: transparent;
  margin: 5px auto 0 auto;
  z-index: 99;
  background: url("../images/icons/grey-progress.svg");
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .progress-controls.threeWide {
    display: none;
  }
}
.progress-controls.threeWide ul li:last-child::after {
  width: 0;
}
.progress-controls.fiveWide ul li.current::after {
  background: #982065;
}
.progress-controls.fiveWide ul li:last-child::after {
  width: 0px;
}

/* ====== UTILITIES ====== */
/* ======
UTILITIES
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.container {
  max-width: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.white-bg-ds {
  background: white;
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.1);
  position: relative;
}

.fixedHeader .card.sml {
  padding-top: 0px;
}

.light-grey-bg {
  background: #F8F8F8;
}
.light-grey-bg h3 {
  color: #222E5B;
}

.c-b-1 {
  color: #222E5B;
}

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

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

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

.bg-white {
  background: white;
}

.bg-grey-1 {
  background: #F8F8F8;
}

.bg-grey-2 {
  background: #E5E5E5;
}

.bg-grey-3 {
  background: #C4C4C4;
}

.bg-grey-4 {
  background: #808080;
}

.bg-blue {
  background: #222E5B;
  color: white;
}
.bg-blue h3 {
  color: white;
}
.bg-blue .btn {
  background: white;
  color: #222E5B;
  transition: all ease-in-out 0.2s;
}
.bg-blue .btn:hover {
  background: #151D3C;
  color: white;
  text-decoration: none;
}

.bg-gold {
  background: #A68F65;
  color: white;
}
.bg-gold h3 {
  color: white;
}
.bg-gold .btn {
  background: white;
  color: #A68F65;
  transition: all ease-in-out 0.2s;
}
.bg-gold .btn:hover {
  background: #735F3A;
  color: white;
  text-decoration: none;
}

.border-bottom-grey-2 {
  border-bottom: 1px solid #E5E5E5;
}

.border-bottom-grey-3 {
  border-bottom: 1px solid #C4C4C4;
}

.h-auto {
  height: auto;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pos-relative {
  position: relative;
}

.mt-38rem {
  margin-top: 3.8rem;
}

.mr-15 {
  margin-right: 15px;
}

@media (min-width: 576px) {
  .mr-sm-15 {
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .mr-md-15 {
    margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .mr-lg-15 {
    margin-right: 15px;
  }
}

@media (min-width: 1200px) {
  .mr-xl-15 {
    margin-right: 15px;
  }
}

.ml-15 {
  margin-left: 15px;
}

@media (min-width: 576px) {
  .ml-sm-15 {
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  .ml-md-15 {
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .ml-lg-15 {
    margin-left: 15px;
  }
}

@media (min-width: 1200px) {
  .ml-xl-15 {
    margin-left: 15px;
  }
}

.mr-10 {
  margin-right: 10px;
}

@media (min-width: 576px) {
  .mr-sm-10 {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .mr-md-10 {
    margin-right: 10px;
  }
}

@media (min-width: 992px) {
  .mr-lg-10 {
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .mr-xl-10 {
    margin-right: 10px;
  }
}

.ml-10 {
  margin-left: 10px;
}

@media (min-width: 576px) {
  .ml-sm-10 {
    margin-left: 10px;
  }
}

@media (min-width: 768px) {
  .ml-md-10 {
    margin-left: 10px;
  }
}

@media (min-width: 992px) {
  .ml-lg-10 {
    margin-left: 10px;
  }
}

@media (min-width: 1200px) {
  .ml-xl-10 {
    margin-left: 10px;
  }
}

.mr-5px {
  margin-right: 5px;
}

@media (min-width: 576px) {
  .mr-sm-5px {
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .mr-md-5px {
    margin-right: 5px;
  }
}

@media (min-width: 992px) {
  .mr-lg-5px {
    margin-right: 5px;
  }
}

@media (min-width: 1200px) {
  .mr-xl-5px {
    margin-right: 5px;
  }
}

.ml-5px {
  margin-left: 5px;
}

@media (min-width: 576px) {
  .ml-sm-5px {
    margin-left: 5px;
  }
}

@media (min-width: 768px) {
  .ml-md-5px {
    margin-left: 5px;
  }
}

@media (min-width: 992px) {
  .ml-lg-5px {
    margin-left: 5px;
  }
}

@media (min-width: 1200px) {
  .ml-xl-5px {
    margin-left: 5px;
  }
}

.w-20px {
  width: 20px;
}

.w-100 {
  width: 100%;
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .w-md-100 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .w-xl-100 {
    width: 100%;
  }
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.banner {
  width: 100%;
  height: 460px;
}
@media (min-width: 768px) {
  .banner {
    height: 650px;
  }
}
.banner .bannerInner {
  background: linear-gradient(-90deg, rgba(2, 8, 30, 0) 0%, rgba(2, 8, 30, 0.8) 65%, rgba(2, 8, 30, 0.8) 100%);
  width: 100%;
  height: 460px;
}
@media (min-width: 768px) {
  .banner .bannerInner {
    height: 650px;
  }
}
.banner .bannerInner .bannerInfo {
  margin: 0px auto;
  text-align: center;
  color: white;
  width: 90%;
  padding-top: 75px;
}
@media (min-width: 576px) {
  .banner .bannerInner .bannerInfo {
    padding-top: 155px;
  }
}
@media (min-width: 768px) {
  .banner .bannerInner .bannerInfo {
    width: 730px;
    height: 230px;
    padding-top: 210px;
  }
}
@media screen and (max-width: 416px) {
  .banner .bannerInner .bannerInfo {
    padding-top: 120px;
  }
}
.banner .bannerInner .bannerInfo h1 {
  font-size: 32px;
  line-height: 40px;
  padding-bottom: 10px;
}

/* ====== MODALS/OVERLAYS ====== */
/* ======
MODALS/OVERLAYS
    - Modals
    - Overlays
====== */
/*================================================================================
$ MODALS
================================================================================*/
/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.modal-content {
  border-radius: 0px;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialog.modal-md {
  max-width: 650px;
}
.modal .modal-header {
  border-bottom: 1px solid #E5E5E5;
}
.modal .modal-header.borderless {
  border-bottom: 0px none;
}
.modal .modal-body .bordered {
  border-right: 1px solid #E5E5E5;
  margin-right: -1px;
}
.modal .modal-body > div.row {
  margin: 0px;
}
.modal .modal-body > div.row > div[class^=col-] {
  padding: 1rem;
}
.modal .modal-body p {
  color: #0B0A1D;
  font-size: 1rem;
  font-weight: 400;
}

/*================================================================================
$ OVERLAYS
================================================================================*/
.overlay-holder {
  background: rgba(10, 13, 39, 0.75);
  background-image: none;
  height: 100%;
  left: 0;
  min-width: 320px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 575.98px) {
  .overlay-holder {
    overflow-y: scroll;
    padding: 0;
  }
}
.overlay-holder .overlay {
  background-color: #FFFFFF;
  margin: 0 auto;
  max-width: 650px;
  padding: 10px;
  position: relative;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.overlay-holder .overlay .overlay__inner {
  float: left;
  width: 100%;
  /*================================================================================
  * LOGIN FORM - LEFT SIDE
  ================================================================================*/
  /*================================================================================
  * LOGIN FORM - ADDITIONAL OPTIONS
  ================================================================================*/
  /*================================================================================
  * REGISTER - RIGHT-SIDE
  ================================================================================*/
  /*================================================================================
  * CLOSE OVERLAY
  ================================================================================*/
  /*================================================================================
  $ MODALS (CALENDAR) REMIND ME A SALE / CREATE AN ACCOUNT
  ================================================================================*/
}
@media screen and (min-width: 993px) {
  .overlay-holder .overlay .overlay__inner {
    display: flex;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__login-container {
  background-color: #FFFFFF;
  float: left;
  width: 50%;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container {
    width: 100%;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form {
  padding: 90px 70px 0px 70px;
  /*================================================================================
  * LOGIN FORM - TITLE
  ================================================================================*/
  /*================================================================================
  * LOGIN FORM - EMAIL ADDRESS
  ================================================================================*/
  /*================================================================================
  * LOGIN FORM - PASSWORD
  ================================================================================*/
  /*================================================================================
  * LOGIN FORM - TERMS CHECKBOX
  ================================================================================*/
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form h2 {
  color: #3C3C3B;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form p {
  font-size: 16px;
  padding-bottom: 10px;
  padding-top: 20px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form p.error {
  color: red;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form span.error {
  color: red;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username {
  margin-top: 20px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username label {
  color: #000000;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input {
  border: 1px solid #003015;
  border-radius: 0px;
  height: 35px;
  margin-bottom: 10px;
  padding-left: 5px;
  width: 90%;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input {
    width: 100%;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input::-webkit-input-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input:-moz-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input::-moz-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .username input:-ms-input-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password {
  margin-bottom: 31px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password label {
  color: #000000;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-right: 14px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input {
  border: 1px solid #003015;
  border-radius: 0px;
  height: 35px;
  padding-left: 5px;
  width: 90%;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input {
    width: 100%;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input::-webkit-input-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input:-moz-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input::-moz-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .password input:-ms-input-placeholder {
  color: #000;
  font-size: 13px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms {
  color: #982065;
  padding-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms {
    width: 72%;
  }
}
@media screen and (max-width: 416px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms {
    padding-bottom: 30px;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms input {
  display: inline;
  font-size: 20px;
  margin-bottom: 8px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login__register-terms label {
  display: inline;
  font-size: 16px;
  padding-left: 5px;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login-button {
  float: left;
  text-align: center;
  width: 100%;
}
.overlay-holder .overlay .overlay__inner .overlay__login-container .login-form .login-button .btn-login {
  padding: 10px 80px;
}
.overlay-holder .overlay .overlay__inner .additonal-options {
  float: left;
  padding-bottom: 70px;
  padding-top: 20px;
  width: 100%;
}
.overlay-holder .overlay .overlay__inner .additonal-options a.forgotten-password {
  color: #982065;
  float: left;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  text-align: center;
  text-decoration: underline;
  width: 100%;
}
.overlay-holder .overlay .overlay__inner .additonal-options a.forgotten-password:hover {
  text-decoration: none;
}
.overlay-holder .overlay .overlay__inner .additonal-options a.create-account {
  color: #982065;
  float: left;
  font-size: 16px;
  text-align: center;
  width: 100%;
  width: 63.5%;
}
@media screen and (max-width: 770px) {
  .overlay-holder .overlay .overlay__inner .additonal-options a.create-account {
    width: 77.5%;
  }
}
@media screen and (max-width: 416px) {
  .overlay-holder .overlay .overlay__inner .additonal-options a.create-account {
    width: 100%;
  }
}
.overlay-holder .overlay .overlay__inner .additonal-options a.create-account:hover {
  text-decoration: none;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container {
  background-color: #FFFFFF;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../../images/login-overlay.png");
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  min-height: 620px;
  position: relative;
  position: relative;
  width: 50%;
  z-index: 0;
  /*================================================================================
  * CLOSE OVERLAY
  ================================================================================*/
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container {
    width: 100%;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__register-container #mttCloseBtn {
  cursor: pointer;
  margin-right: 0;
  position: absolute;
  right: 0;
  top: 17px;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container #mttCloseBtn {
    display: none;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close {
  background: transparent;
  border: 0px none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin: -1rem -1rem 0rem 0px;
  padding: 0px;
  position: relative;
  text-align: center;
  width: 40px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close::before {
  background: #FFFFFF;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 17px;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all ease-in-out 0.2s;
  width: 20px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close::after {
  background: #FFFFFF;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 17px;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: all ease-in-out 0.2s;
  width: 20px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close:hover {
  outline: none 0px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close:hover::before {
  transform: rotate(135deg);
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .close:hover::after {
  transform: rotate(45deg);
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content {
  padding: 125px 70px 70px 70px;
  position: absolute;
  top: 0;
  z-index: 5;
  /*================================================================================
  * LOGO
  ================================================================================*/
  /*================================================================================
  * REGISTER - CONTENT
  ================================================================================*/
  /*================================================================================
  * REGISTER BUTTON
  ================================================================================*/
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content {
    padding: 100px 50px 50px 50px;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .site-logo {
  text-align: center;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .site-logo {
    display: none;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .site-logo img {
  width: 50%;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-content {
  padding: 38px 0px;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-content {
    padding-bottom: 40px;
    padding-top: 10px;
  }
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-content h3 {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-content .login__register-sub-title {
  padding-bottom: 20px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-content p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 10px;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-button {
  text-align: center;
}
.overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-button .register-btn {
  padding: 10px 60px;
}
@media screen and (max-width: 770px) {
  .overlay-holder .overlay .overlay__inner .overlay__register-container .overlay__register-content .login__register-button .register-btn {
    font-size: 12px;
  }
}
.overlay-holder .overlay .overlay__inner #mttCloseBtn {
  cursor: pointer;
  margin-right: 0;
  position: absolute;
  right: 0;
  top: 17px;
  z-index: 999;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner #mttCloseBtn {
    display: none;
  }
}
.overlay-holder .overlay .overlay__inner .close {
  background: transparent;
  border: 0px none;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin: -1rem -1rem 0rem 0px;
  padding: 0px;
  position: relative;
  text-align: center;
  width: 40px;
}
.overlay-holder .overlay .overlay__inner .close::before {
  background: #982065;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 17px;
  transform: rotate(45deg);
  transform-origin: center;
  transition: all ease-in-out 0.2s;
  width: 20px;
}
.overlay-holder .overlay .overlay__inner .close::after {
  background: #982065;
  content: "";
  height: 2px;
  left: 11px;
  position: absolute;
  top: 17px;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: all ease-in-out 0.2s;
  width: 20px;
}
.overlay-holder .overlay .overlay__inner .close:hover {
  outline: none 0px;
}
.overlay-holder .overlay .overlay__inner .close:hover::before {
  transform: rotate(135deg);
}
.overlay-holder .overlay .overlay__inner .close:hover::after {
  transform: rotate(45deg);
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container {
  padding: 3rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay .overlay__inner .calendar__remind--container {
    padding: 1.5rem;
  }
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .button__container {
  margin-top: 2rem;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .button__container .backCatalogue {
  padding: 1rem;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .button__container .calendarBtn {
  margin-right: 1rem;
  padding: 1rem;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .button__container .accountBtn {
  padding: 1rem;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container {
  text-align: left;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container label {
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container label sup {
  color: #982065;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container input {
  border: 1px solid #D2D2D2;
  float: left;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 44px;
  width: 70%;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container .remindBtn {
  align-content: center;
  background-color: #982065;
  border-radius: 0 4px 4px 0;
  color: #FFFFFF;
  display: flex;
  float: left;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 44px;
  padding: 13px 20px;
  text-transform: uppercase;
}
.overlay-holder .overlay .overlay__inner .calendar__remind--container .email__container .remindBtn:hover {
  text-decoration: none;
}
.overlay-holder .overlay-confirm-bid {
  background-color: #FFFFFF;
  font-family: "Arial", serif;
  left: 50%;
  max-width: 440px;
  position: relative;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 770px) {
  .overlay-holder .overlay-confirm-bid {
    max-width: 700px;
  }
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid {
    left: 0;
    padding: 10px;
    top: 0;
    transform: none;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner {
  display: flex;
  width: 100%;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container {
  background-color: #FBF8F8;
  padding: 25px;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container {
    flex-direction: column;
    padding: 25px 15px;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container p.place-a-bid-heading {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 36px;
  font-weight: 400;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container p.place-a-bid-heading span {
  font-family: "Georgia", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container p.confirm__statement {
  color: #0B0A1D;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left {
  display: flex;
  float: left;
  position: relative;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left {
    width: 100%;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left img {
    max-width: 250px;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-number p {
  background: #ffffff;
  color: #982065;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 0px 5px;
  text-transform: uppercase;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-number p.confirm-lot-name {
  color: black;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
  text-transform: none;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  float: right;
  margin-top: -5px;
  transition: 0.3s ease;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details {
    bottom: 30px;
    right: 30px;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details::before {
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat transparent;
  content: "";
  display: inline-flex;
  height: 28px;
  margin-right: 10px;
  position: relative;
  width: 28px;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details::before {
    background-size: contain;
    height: 39px;
    margin-right: 0;
    width: 39px;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details:hover::before {
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__lot-details a.full-details:hover::before {
    background-size: contain;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__auction-estimate {
  font-size: 12px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__auction-estimate span.value {
  font-weight: 600;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .confirm-lot-name {
  color: black;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__wishlist-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  height: 35px;
  position: absolute;
  right: 15px;
  top: 8px;
  width: 35px;
  z-index: 999;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__wishlist-wrapper a {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 16px;
  position: relative;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__wishlist-wrapper span.add-to-wishlist {
  background: url("../images/icons/watchlist-inactive.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__image-confirm-left .detail__wishlist-wrapper span.remove-wishlist {
  background: url("../images/icons/watchlist-active.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right {
    min-height: auto;
    padding: 0;
    width: 100%;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-heading {
  background: #FBF8F8;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-heading h4 {
  color: #0B0A1D;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 0;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-heading p {
  font-size: 14px;
  font-weight: 400;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-info {
  color: #982065;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box p {
  line-height: 1.25;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__auction-estimate {
  font-size: 16px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__auction-estimate span:not(:first-child) {
  font-size: 16px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__remaining-time p {
  font-size: 16px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__remaining-time p span.value {
  font-weight: 600;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__current {
  font-size: 16px;
  text-transform: uppercase;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__current span {
  font-size: 19px;
  letter-spacing: 1px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__msg {
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px !important;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm-bid-box__maxbid {
  font-size: 36px;
  font-weight: 700;
  line-height: initial;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .catalogue__over-bottom-row {
  display: flex;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .catalogue__over-bottom-row .confirm__btn {
  align-items: center;
  background-color: #982065;
  border: none;
  color: #FFFFFF;
  display: flex;
  flex: 1;
  font-family: "Arial", serif;
  font-size: 12px;
  height: 45px;
  justify-content: center;
  letter-spacing: 1px;
  padding: 15px 30px;
  text-transform: uppercase;
  width: 100%;
  z-index: 10;
}
@media (max-width: 575.98px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .catalogue__over-bottom-row .confirm__btn {
    padding: 15px 20px;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .catalogue__over-bottom-row .cancelBtn {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #0B0A1D;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .confirm__statement {
  color: #0B0A1D;
  font-size: 14px;
  padding-top: 15px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs {
  position: relative;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .symbol {
  align-items: center;
  background: #F7F7F7;
  border: 1px solid #D8D8D8;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  color: #982065;
  display: inline-flex;
  float: left;
  font-size: 16px;
  font-weight: 600;
  height: 44px;
  justify-content: center;
  padding: 10px 15px;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .symbol {
    left: 0;
    position: absolute;
    top: 0;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .bid-amount {
  border: 1px solid #D8D8D8;
  float: left;
  height: 44px;
  margin-left: -1px;
  padding-left: 15px;
  width: 52%;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .bid-amount:focus-visible {
  box-shadow: none;
  outline: none;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .bid-amount {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    margin-left: 0;
    padding: 7px 7px 7px 50px;
    width: 100%;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .btn.pink {
  border: 1px solid #982065;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-top-right-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  height: 44px;
  letter-spacing: 1px;
  line-height: 100%;
  max-height: 44px;
  min-width: 120px;
  width: auto;
}
@media screen and (max-width: 599px) {
  .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .btn.pink {
    border-radius: 5px;
    margin-top: 7px;
    width: 100%;
  }
}
.overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .btn.pink:hover {
  background-color: #578B45;
  border-color: #578B45;
  color: #FFFFFF;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .next-lot-controls {
  align-items: center;
  display: flex;
  margin-top: 25px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .next-lot-controls__text {
  padding-left: 20px;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .mobile-bidding__nextlot {
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  text-transform: uppercase;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .mobile-bidding__nextlot a {
  color: #982065;
  text-decoration: underline;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .mobile-bidding__redirecttext {
  font-size: 14px;
  margin: 0;
}
.overlay-holder .overlay-confirm-bid .overlay__inner .next-lot-controls__circle {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.overlay-holder .overlay-confirm-bid .catalogue__over-outside-row {
  bottom: -70px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
}
.overlay-holder .overlay-confirm-bid .catalogue__over-outside-row .cancelBtn {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #0B0A1D;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
}

/*================================================================================
$ OVERLAY - LOT DETAIL
================================================================================*/
@media screen and (max-width: 416px) {
  body.layout-details .overlay-holder--eld {
    display: none !important;
  }
}
body.layout-details .overlay-holder--eld .overlay {
  height: calc(100vh - 40px);
  max-width: none;
  padding: 30px;
  width: calc(100vw - 40px);
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .close {
  position: absolute;
  right: 22px;
  top: 20px;
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides {
  height: calc(100vh - 100px);
  padding: 0 50px;
}
@media screen and (max-width: 992px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides {
    padding: 0 40px;
  }
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-prev {
  border: 0px none;
  bottom: auto;
  cursor: pointer;
  left: 3px;
  padding-bottom: 8px;
  padding-top: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(50%);
}
@media screen and (max-width: 770px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-prev {
    top: 46%;
  }
}
@media screen and (max-width: 742px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-prev {
    top: 37%;
  }
}
@media screen and (max-width: 416px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-prev {
    top: 45%;
  }
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-prev:focus {
  outline: none;
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-next {
  border: 0px none;
  bottom: auto;
  cursor: pointer;
  padding-bottom: 8px;
  padding-top: 8px;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(50%);
}
@media screen and (max-width: 770px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-next {
    top: 46%;
  }
}
@media screen and (max-width: 742px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-next {
    top: 37%;
  }
}
@media screen and (max-width: 416px) {
  body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-next {
    top: 45%;
  }
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-next:focus {
  outline: none;
}
body.layout-details .overlay-holder--eld .overlay .overlay__inner .overlay__content .slides .slick-slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(100vh - 100px);
}

/*================================================================================
* LOT HAS ENDED - LOT DETAIL PAGE
================================================================================*/
.mobile-bidding-overlay {
  background-color: rgba(255, 255, 255, 0.6);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999999;
}
@media screen and (min-width: 768px) {
  .mobile-bidding-overlay .mobile-bidding-overlay__inner {
    left: 50%;
    max-width: 940px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .mobile-bidding-overlay .mobile-bidding__image img {
    max-height: 400px !important;
  }
}
.mobile-bidding-overlay .mobile-bidding-overlay__inner {
  background-color: #FFFFFF;
  box-shadow: 1px 1px 15px 5px rgba(0, 0, 0, 0.3);
  left: 20px;
  max-height: calc(100% - 50px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 15px;
  position: absolute;
  top: 25px;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .mobile-bidding-overlay .mobile-bidding-overlay__inner {
    left: 50% !important;
    max-width: 940px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.mobile-bidding-overlay .mobile-bidding-overlay__inner p {
  line-height: 1.4;
  margin-bottom: 0;
}
.mobile-bidding-overlay .mobile-bidding__boxshadow {
  border: 1px solid #CCCCCC;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
  padding: 15px;
}
.mobile-bidding-overlay .mobile-bidding__image .mobile-bidding__image__inner {
  background-color: #F0F0F0;
  border: 1px solid #CCCCCC;
  width: 100%;
}
.mobile-bidding-overlay .mobile-bidding__image img {
  display: block;
  margin: 0 auto;
  max-height: 250px;
  max-width: 100%;
}
.mobile-bidding-overlay .mobile-bidding__lotnum {
  border: 1px solid #CCCCCC;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.mobile-bidding-overlay .mobile-bidding__title-container {
  align-items: center;
  flex-wrap: wrap;
}
.mobile-bidding-overlay .mobile-bidding__title-container .mobile-bidding__title {
  background-color: #F0F0F0;
  border: 1px solid #CCCCCC;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.mobile-bidding-overlay .mobile-bidding__title-container .mobile-bidding__lotname {
  font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}
.mobile-bidding-overlay .mobile-bidding__bidvalues {
  margin-top: 8px;
}
.mobile-bidding-overlay .mobile-bidding__estimateprice {
  color: #982065;
  font-size: 14px;
  margin-top: 10px;
}
.mobile-bidding-overlay .mobile-bidding__newbid {
  color: #982065;
  font-size: 30px;
  margin-top: 5px;
  text-align: center;
}
.mobile-bidding-overlay .mobile-bidding__buttons {
  margin-top: 7px;
}
.mobile-bidding-overlay .mobile-bidding__buttons .btn-confirmbid {
  padding: 7px 10px;
}
.mobile-bidding-overlay .mobile-bidding__buttons .btn-cancel {
  margin-top: 5px;
}
.mobile-bidding-overlay .mobile-bidding__terms {
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.5;
}
.mobile-bidding-overlay .bidding-messages {
  margin: 0;
}
.mobile-bidding-overlay .bidding-messages .message {
  background-color: transparent;
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
  padding: 0;
}
.mobile-bidding-overlay .bidding-messages .message.type-lost .title {
  color: #BA2B2B;
}
.mobile-bidding-overlay .bidding-messages .message.type-won .title {
  color: #2FB400;
}
.mobile-bidding-overlay .bidding-messages .message .title {
  color: #000000;
  margin-bottom: 0;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer {
  align-items: center;
  display: flex;
  margin: 10px 0 15px;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer p {
  margin-bottom: 0;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer .mobile-bidding__remainingtime {
  margin-left: auto;
  text-align: center;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer .mobile-bidding__remainingtime strong,
.mobile-bidding-overlay .mobile-bidding__timecontainer .mobile-bidding__remainingtime span {
  display: block;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer .mobile-bidding__remainingtime strong {
  font-size: 24px;
}
.mobile-bidding-overlay .mobile-bidding__timecontainer .mobile-bidding__remainingtime span {
  font-size: 12px;
  text-transform: uppercase;
}
.mobile-bidding-overlay .next-lot-controls {
  align-items: center;
  justify-content: space-between;
}
.mobile-bidding-overlay .next-lot-controls__text {
  padding-left: 15px;
  padding-right: 20px;
}
.mobile-bidding-overlay .mobile-bidding__nextlot {
  font-size: 14px;
  font-weight: 700;
}
.mobile-bidding-overlay .mobile-bidding__nextlot a {
  color: #982065;
  text-decoration: underline;
}
.mobile-bidding-overlay .mobile-bidding__redirecttext {
  font-size: 14px;
  margin-top: 7px;
}
.mobile-bidding-overlay .next-lot-controls__circle {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.lot-finished-overlay.lot-finished-overlay .mobile-bidding__currentbid {
  font-size: 14px;
  margin-bottom: 5px;
}
.lot-finished-overlay.lot-finished-overlay .mobile-bidding__currentbid span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  width: 100%;
}

.overlay-ended-bid .overlay__inner {
  float: left;
  width: 100%;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  float: left;
  position: relative;
  width: 35%;
}
@media screen and (max-width: 599px) {
  .overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left {
    width: 100%;
  }
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left img {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  position: relative;
  width: 100%;
  z-index: 0;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-number {
  left: 20px;
  position: relative;
  top: 8px;
  z-index: 999;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-number p {
  background: #ffffff;
  color: #982065;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 2px 5px;
  position: absolute;
  text-transform: uppercase;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details {
  background: #FBF8F8;
  padding: 15px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  float: right;
  margin-top: -5px;
  transition: 0.3s ease;
}
@media (max-width: 576px) {
  .overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details {
    bottom: 30px;
    right: 30px;
  }
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details::before {
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat transparent;
  content: "";
  display: inline-flex;
  height: 28px;
  margin-right: 10px;
  position: relative;
  width: 28px;
}
@media (max-width: 576px) {
  .overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details::before {
    background-size: contain;
    height: 39px;
    margin-right: 0;
    width: 39px;
  }
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details:hover::before {
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
}
@media (max-width: 576px) {
  .overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__lot-details a.full-details:hover::before {
    background-size: contain;
  }
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__auction-estimate {
  font-size: 12px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__auction-estimate span.value {
  font-weight: 600;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .confirm-lot-name {
  color: #0B0A1D;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__wishlist-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  height: 35px;
  position: absolute;
  right: 15px;
  top: 8px;
  width: 35px;
  z-index: 999;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__wishlist-wrapper a {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 16px;
  position: relative;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__wishlist-wrapper span.add-to-wishlist {
  background: url("../images/icons/watchlist-inactive.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-left .detail__wishlist-wrapper span.remove-wishlist {
  background: url("../images/icons/watchlist-active.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right {
  background-color: #FFFFFF;
  float: left;
  padding: 0 25px;
  width: 65%;
}
@media screen and (max-width: 599px) {
  .overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right {
    min-height: auto;
    padding: 10px;
    width: 100%;
  }
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .mobile-bidding__title__block .mobile-bidding__title {
  align-items: center;
  color: #0B0A1D;
  display: flex;
  font-family: "Arial", serif;
  font-size: 24px;
  font-weight: 400;
  justify-content: space-between;
  padding: 20px 35px;
  text-transform: none;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .mobile-bidding__title__block .mobile-bidding__title span {
  font-family: "Georgia", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .mobile-bidding__lotinformation {
  padding: 20px 30px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .ended-heading {
  color: #982065;
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .ended-lot-name {
  color: #982065;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .ended-info {
  color: #982065;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 20px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .mobile-bidding__currentbid {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .mobile-bidding__currentbid span {
  display: inline-flex;
  flex: 1;
  font-size: 24px;
  font-weight: 600;
  margin-left: 50px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bid-container {
  padding-bottom: 20px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bid-container .detail__final-head {
  color: #2D2D2D;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  width: 20%;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bid-container .detail__final-stat {
  color: #982065;
  font-size: 18px;
  font-weight: 700;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bottom-row {
  float: left;
  width: 100%;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bottom-row .overlay__loading {
  float: left;
  width: 50%;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bottom-row .overlay__current-lot {
  float: left;
  padding-top: 40px;
  width: 50%;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bottom-row .overlay__current-lot p {
  color: #982065;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
}
.overlay-ended-bid .overlay__inner .detail__overlay-ended-container .detail__ended-right .detail__final-bottom-row .overlay__current-lot a {
  color: #982065;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
}

#bid_live_approval_message .modal-header, #bid_live_approval_message2 .modal-header, #web_noticeModal .modal-header {
  display: flex;
  justify-content: space-between;
}
#bid_live_approval_message .modal-header button.close, #bid_live_approval_message2 .modal-header button.close, #web_noticeModal .modal-header button.close {
  right: 5px;
  top: 10px;
}

#cancelBidModal .modal-xl {
  max-width: 900px;
}
#cancelBidModal .modal-xl .modal-content {
  padding: inherit;
}
@media (max-width: 575.98px) {
  #cancelBidModal .modal-xl .modal-content {
    padding: 30px 15px;
  }
}
#cancelBidModal .modal-xl .modal-content .bidHeader h6 {
  font-size: 20px;
}
#cancelBidModal .modal-xl .modal-content .bidHeader p#overlayBid {
  font-size: 36px;
  font-weight: 600;
  line-height: inherit;
}
#cancelBidModal .modal-xl .modal-content #closeCancelModal {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #0B0A1D;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  opacity: 0.5;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
  text-transform: none;
}
#cancelBidModal .modal-xl h4.cancel-bid-heading {
  color: #2D2D2D;
  font-family: "Arial", serif;
  font-size: 36px;
  font-weight: 400;
}
#cancelBidModal .modal-xl .catalogue__image-confirm-left {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  float: left;
  position: relative;
}
#cancelBidModal .modal-xl .catalogue__image-confirm-left .detail__lot-number {
  left: 20px;
  position: relative;
  top: 8px;
  z-index: 999;
}
#cancelBidModal .modal-xl .catalogue__image-confirm-left .detail__lot-number p {
  background: #ffffff;
  color: #982065;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 2px 5px;
  position: absolute;
  text-transform: uppercase;
}
#cancelBidModal .modal-xl .catalogue__image-confirm-left .confirm-lot-name {
  color: #2D2D2D;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 10px;
}
#cancelBidModal .modal-xl .catalogue__image-confirm-left .detail__lot-details {
  background: #F6F4F4;
  padding: 15px;
}

@media (max-width: 575.98px) {
  body.site.com_bidding.view-timed .overlay-holder {
    padding: 20px 10px;
  }
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid {
  max-width: 400px;
}
@media (max-width: 575.98px) {
  body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid {
    max-width: 100%;
    padding: 0;
  }
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .catalogue__over-outside-row {
  bottom: -40px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container {
  background: white;
  padding: 0 12px 15px 12px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay-header {
  background: #FAF7F7;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content {
  padding: 20px 40px;
}
@media (max-width: 575.98px) {
  body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content {
    padding: 20px 15px;
  }
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .time-remaining-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
}
@media (max-width: 575.98px) {
  body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .time-remaining-wrapper {
    width: 100%;
  }
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .time-remaining-wrapper .auction-wrapper {
  padding: 10px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .time-remaining-wrapper .auction-wrapper p {
  font-size: 12px;
  letter-spacing: 1.8px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .time-remaining-wrapper .auction-wrapper .time-remaining {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .catalogue__image-confirm-left {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 575.98px) {
  body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .catalogue__image-confirm-left {
    flex-direction: column;
  }
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content .catalogue__image-confirm-left .detail__lot-number p.confirm-lot-name {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-family: "Arial", serif;
  -webkit-line-clamp: 2;
  line-height: 130%;
  max-width: 100%;
  min-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__overlay-confirm-container .overlay__content p.confirm__statement {
  color: #A60000;
  font-size: 16px;
  font-weight: 700;
  opacity: 1;
  text-align: center;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right p.confirm-bid-box__current {
  text-transform: none;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right p.confirm-bid-box__current span {
  font-size: 16px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box {
  display: flex;
  float: left;
  width: 100%;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .amount-container {
  margin-bottom: 0;
  position: relative;
  width: 58%;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .amount-container .symbol {
  align-items: center;
  background-color: #FBF8F8;
  border: 1px solid #D2D2D2;
  border-radius: 0;
  color: #000000;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  left: 0px;
  padding: 10px 18px;
  position: absolute;
  top: 0px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .amount-container .bid-amount {
  border: 1px solid #D2D2D2;
  border-radius: 0;
  box-shadow: none;
  color: #4d4d4d;
  display: block;
  font-size: 15px;
  font-weight: normal;
  height: 45px;
  padding: 7px;
  padding-left: 55px;
  width: 100%;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .amount-container .bid-amount:focus {
  outline: 0;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .amount-container .bid-amount::placeholder {
  font-size: 12px;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-won_bid {
  background-color: #982065 !important;
  border: none;
  border-color: #982065 !important;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-won_bid:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-won_bid:focus {
  color: #fff;
  outline: 0;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-won_bid:hover {
  color: inherit;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-outbid {
  background-color: #A60000 !important;
  border: none;
  border-color: #A60000 !important;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-outbid:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-outbid:focus {
  color: #fff;
  outline: 0;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-outbid:hover {
  background-color: #fff;
  color: #982065;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-submit, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button {
  align-items: center;
  background-color: #982065;
  border: 0;
  border-color: #982065;
  color: #FFFFFF;
  display: flex;
  flex: 1;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  height: 45px;
  justify-content: center;
  letter-spacing: 1px;
  z-index: 10;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-submit:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:active, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:focus, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-submit:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:focus, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:focus {
  color: #fff;
  outline: 0;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:hover, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-submit:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .remove-button:hover, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .bidup-button:hover {
  background-color: #982065;
  color: #fff;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button.btn-highest_bid, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-highest_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-highest_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-highest_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.btn-submit, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-highest_bid.bidup-button {
  background-color: #578B45 !important;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .primary-button.btn-another_bid, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-another_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-another_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.bidup-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-another_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.btn-submit, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.remove-button, body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .bid-box .btn-another_bid.bidup-button {
  background-color: #A60000 !important;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs .symbol {
  border-radius: 0;
  color: #000000;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs.bid-box .amount-container .symbol {
  color: #000000;
}
body.site.com_bidding.view-timed .overlay-holder .overlay-confirm-bid .overlay__inner .catalogue__content-confirm-right .reduce-bid-inputs.bid-box .btn.btn-reduce-bid {
  margin-top: 0;
}

@font-face {
  font-family: "Silverstone-Auctions";
  src: url("../fonts/Silverstone-Auctions.eot?godn57");
  src: url("../fonts/Silverstone-Auctions.eot?godn57#iefix") format("embedded-opentype"), url("../fonts/Silverstone-Auctions.ttf?godn57") format("truetype"), url("../fonts/Silverstone-Auctions.woff?godn57") format("woff"), url("../fonts/Silverstone-Auctions.svg?godn57#Silverstone-Auctions") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i:not(.fa-angle-down) {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: never;
  font-style: normal;
  font-weight: 900;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span[class^=ss-] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Silverstone-Auctions";
  speak: never;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sppb-accordion-icon-position-right.active .fa-arrow-circle-down:before {
  transform: rotate(90deg);
  transition: 0.2s ease;
}

.fa-arrow-circle-down:before {
  content: "";
  width: 8px;
  height: 12px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/arrow-left.svg") right top no-repeat transparent;
  background-position: 0px 0px;
  display: flex;
  transform: rotate(-90deg);
  transition: 0.2s ease;
}

.ss-heart:before {
  content: "";
  position: relative;
  width: 17px;
  height: 14px;
  margin-right: 3px;
  top: 1px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/watchlist-active.svg") right top no-repeat transparent;
  background-size: contain;
}

.ss-document-list:before {
  content: "\e924";
}

.ss-wheel:before {
  content: "\e923";
}

.ss-eye:before {
  content: "\e917";
}

.ss-grid:before {
  content: "\e918";
}

.ss-angle-up:before {
  content: "\e91a";
}

.ss-list:before {
  content: "\e91b";
}

.ss-download:before {
  content: "\e91d";
}

.ss-arrow-right:before {
  content: "\e91e";
}

.ss-arrow-left::before {
  content: "";
  position: relative;
  width: 25px;
  height: 25px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/arrow-left.svg") right top no-repeat transparent;
  display: inline-flex;
}

.ss-angle-right:before {
  content: "\e920";
}

.ss-angle-left:before {
  content: "\e921";
}

.ss-location:before {
  content: "\e922";
}

.ss-heart-outline:before {
  content: "";
  position: relative;
  width: 17px;
  height: 14px;
  margin-right: 3px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/watchlist-inactive.svg") right top no-repeat transparent;
  background-size: contain;
}

.ss-dustbin:before {
  content: "\e916";
}

.ss-menu:before {
  content: "\e915";
}

.ss-car:before {
  content: "\e900";
}

.ss-credit-card:before {
  content: "\e901";
}

.ss-dial:before {
  content: "\e902";
}

.ss-edit:before {
  content: "\e903";
}

.ss-envelope:before {
  content: "\e904";
}

.ss-facebook:before {
  content: "";
  width: 21px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: 0px 0px;
  display: inline-flex;
}

.ss-gavel:before {
  content: "\e906";
}

.ss-share:before {
  content: "";
  position: relative;
  width: 9px;
  height: 13px;
  margin-right: 5px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/share-icon.svg") right top no-repeat transparent;
}

.ss-info:before {
  content: "\e908";
}

.ss-instagram:before {
  content: "";
  width: 21px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -72px 0px;
  display: inline-flex;
}

.ss-email::before {
  content: "";
  width: 21px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -108px 0px;
  display: inline-flex;
}

.ss-telegram::before {
  content: "";
  width: 21px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -143px 0px;
  display: inline-flex;
}

.ss-invoices:before {
  content: "\e90a";
}

.ss-log-out:before {
  content: "\e90b";
}

.ss-my-lots:before {
  content: "\e90c";
}

.ss-search:before {
  content: "";
  position: absolute;
  left: 5px;
  width: 22px;
  height: 22px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/search-icon.svg") right top no-repeat transparent;
  top: 3px;
}

.ss-telephone:before {
  color: #982065;
  content: "\e90e";
}

.ss-timer:before {
  content: "\e90f";
}

.ss-twitter:before {
  content: "";
  width: 23px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -35px 0px;
  display: inline-flex;
}

.ss-linkedin::before {
  content: "";
  width: 23px;
  height: 20px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -178px 0px;
  display: inline-flex;
}

.ss-user:before {
  content: "\e911";
}

.ss-user-outline:before {
  content: "\e912";
}

.ss-vendor-statements:before {
  content: "\e913";
}

.ss-youtube::before {
  content: "";
  width: 28px;
  height: 18px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/social-icons.svg") right top no-repeat transparent;
  background-position: -214px -2px;
  display: inline-flex;
}

.display-gridView {
  border: 1px solid #FBF8F8;
  display: flex;
  padding: 12px;
}
.display-gridView::before {
  content: "";
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/grid-list-view-icons.svg") no-repeat;
  display: inline-flex;
  width: 15px;
  height: 15px;
  background-position: 0px;
}

.display-listView {
  border: 1px solid #FBF8F8;
  display: flex;
  padding: 12px;
}
.display-listView::before {
  content: "";
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/grid-list-view-icons.svg") no-repeat;
  display: inline-flex;
  width: 15px;
  height: 15px;
  background-position: -22px;
}

.heart-shadow {
  align-items: center;
  background: white;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  font-size: 20px;
  height: 35px;
  justify-content: center;
  text-align: center;
  transition: all ease-in-out 0.5s;
  width: 35px;
}

/* ====== LIST GROUP ====== */
/* ======
LIST GROUP
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.list-group {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-group li:last-child {
  border-bottom: 0px none;
}
.list-group li a,
.list-group li button {
  background-color: #FFFFFF;
  border: none;
  color: #000000;
  cursor: pointer;
  display: block;
  padding: 10px 24px;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  width: 100%;
}
@media (min-width: 768px) {
  .list-group li a,
  .list-group li button {
    padding: 12px 24px;
  }
}
.list-group li a:hover, .list-group li a:active, .list-group li a:focus,
.list-group li button:hover,
.list-group li button:active,
.list-group li button:focus {
  background-color: #dca2c4;
  text-decoration: none;
}
.list-group li a:hover span, .list-group li a:active span, .list-group li a:focus span,
.list-group li button:hover span,
.list-group li button:active span,
.list-group li button:focus span {
  color: #735F3A;
}
.list-group li a span,
.list-group li button span {
  color: #A68F65;
  display: inline-block;
  margin-right: 15px;
  width: 15px;
}
.list-group li h4 {
  font-size: 16px;
  line-height: 45px;
  margin-bottom: 0;
  padding: 10px 24px;
}
.list-group li.active a,
.list-group li.active button {
  background-color: #982065;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  color: #FFFFFF !important;
}
.list-group li.active a span,
.list-group li.active button span {
  color: #FFFFFF;
  margin-left: -6px;
}

.card div.card-heading {
  -webkit-appearance: none;
}
.card div.card-heading h4.card-heading {
  -webkit-appearance: none;
  line-height: 1;
  margin-bottom: 15px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .card div.card-heading h4.card-heading {
    line-height: 45px;
    margin-bottom: 0;
    padding-right: 24px;
  }
}
.card div.card-heading h4.card-heading::after {
  top: 10px;
  right: 0px;
}
@media (min-width: 768px) {
  .card div.card-heading h4.card-heading::after {
    right: 20px;
    top: 25px;
  }
}
@media screen and (max-width: 416px) {
  .card div.card-heading h4.card-heading::after {
    top: 0px;
  }
}
.card h4.card-heading {
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 45px;
  margin-bottom: 0;
  padding: 10px 24px;
  position: relative;
  transition: all ease-in-out 0.2s;
}
.card h4.card-heading::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 25px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #222E5B;
  border-right: 2px solid #222E5B;
  transform: rotate(135deg);
  transform-origin: center;
  transition: all ease-in-out 0.2s;
}
.card h4.card-heading.collapsed::after {
  transform: rotate(315deg);
}
.card h4.card-heading:hover {
  background: #F8F8F8;
}
.card .card-heading h4.card-heading {
  padding: 0px;
  border-bottom: 0px none;
}
.card .card-heading h4.card-heading::after {
  top: 16px;
  transform: rotate(135deg);
  transition: all ease-in-out 0.2s;
}
.card .card-heading h4.card-heading:hover {
  background: none;
}
.card .card-heading.collapsed h4.card-heading::after {
  transform: rotate(315deg);
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.nav.nav-tabs {
  border-bottom: 1px solid #939393;
  list-style: none;
  margin: 0px;
  padding: 0px;
  width: 100%;
}
.nav.nav-tabs li.nav-item {
  display: inline-block;
  margin-right: 20px;
}
.nav.nav-tabs li.nav-item a {
  border: none;
  border-bottom: 3px solid transparent;
  color: #939393;
  cursor: pointer;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 40px;
  padding-bottom: 10px;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
.nav.nav-tabs li.nav-item a:hover {
  text-decoration: none;
  border-bottom: 3px solid #939393;
  color: #939393;
}
.nav.nav-tabs li.nav-item a span.count {
  right: 0px;
  top: 0px;
  background: #808080;
}
.nav.nav-tabs li.nav-item input:not(:checked) {
  display: none;
}
.nav.nav-tabs li.nav-item input:checked {
  display: none;
}
.nav.nav-tabs li.nav-item input:checked + label {
  border-bottom: 4px solid #982065;
  color: #0B0A1D;
  font-size: 0.75rem;
  font-size: 16px;
  height: 45px;
}
.nav.nav-tabs li.nav-item input + label {
  border: none;
  border-bottom: 4px solid transparent;
  color: #D2D2D2;
  cursor: pointer;
  display: block;
  font-family: "Arial", serif;
  font-weight: 700;
  height: 45px;
  padding-bottom: 10px;
  padding: 10px 25px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.nav.nav-tabs li.nav-item input + label:hover {
  text-decoration: none;
  border-bottom: 4px solid #939393;
  color: #939393;
}
.nav.nav-tabs li.nav-item a.active {
  border-bottom: 3px solid #982065;
  color: #982065;
  font-size: 0.75rem;
  font-weight: 700;
  height: 40px;
  text-transform: uppercase;
}
.nav.nav-tabs li.nav-item a.active span.count {
  background: #982065;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .tab-pane.active {
  display: block;
}

.border-btm {
  width: 100%;
  margin: 20px 0px;
  border-bottom: 1px solid #E5E5E5;
}

.border-btm-lrg {
  width: 100%;
  border-bottom: 6px solid #F8F8F8;
}

.tab-pane .invoices {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .tab-pane .invoices {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .tab-pane .invoices {
    flex-wrap: nowrap;
  }
}
.tab-pane .invoices .details {
  width: 100%;
}
@media (min-width: 1200px) {
  .tab-pane .invoices .details {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.tab-pane .invoices .details ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .tab-pane .invoices .details ul {
    justify-content: flex-start;
  }
}
.tab-pane .invoices .details ul li {
  margin-right: 0px;
}
@media (min-width: 768px) {
  .tab-pane .invoices .details ul li {
    margin-right: 50px;
  }
}
.tab-pane .invoices .controls {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tab-pane .invoices .controls a.btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .tab-pane .invoices .controls {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
  }
  .tab-pane .invoices .controls a.btn {
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  .tab-pane .invoices .controls {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .tab-pane .invoices .controls a.btn {
    padding: 0px 40px;
  }
}

.statement-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .statement-item {
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .statement-item {
    flex-wrap: nowrap;
  }
}
.statement-item .details {
  width: 100%;
}
@media (min-width: 992px) {
  .statement-item .details {
    min-width: 450px;
  }
}
@media (min-width: 1200px) {
  .statement-item .details {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.statement-item .details ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .statement-item .details ul {
    justify-content: flex-start;
  }
}
.statement-item .details ul li {
  margin-right: 0px;
}
@media (min-width: 768px) {
  .statement-item .details ul li {
    margin-right: 50px;
  }
}
.statement-item .controls {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.statement-item .controls a.btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .statement-item .controls {
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
  }
  .statement-item .controls a.btn {
    margin-left: 15px;
  }
}
@media (min-width: 1200px) {
  .statement-item .controls {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .statement-item .controls a.btn {
    padding: 0px 40px;
  }
}

.help-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .help-items {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.help-items .help-item {
  width: 100%;
  margin-top: 15px;
  margin-right: 0px;
}
.help-items .help-item:first-child {
  margin-right: 30px;
}

/* ====== BADGES ====== */
/* ======
BADGES
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
ul.interest-list {
  list-style: none;
  padding: 0;
}
ul.interest-list li.interest {
  background-color: #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  text-align: center;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
ul.interest-list li.interest input,
ul.interest-list li.interest label {
  display: inline-block;
  vertical-align: middle;
}
ul.interest-list li.interest label {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0;
  padding-right: 10px;
  z-index: 1;
}
ul.interest-list li.interest label:hover::after, ul.interest-list li.interest label:active::after, ul.interest-list li.interest label:focus::after {
  background-color: #735F3A;
}
ul.interest-list li.interest input:checked + label::after {
  background-color: #735F3A;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.account-sidebar-container {
  position: absolute;
  transition: all ease-out 0.2s;
  transform: translateX(-1200px);
  z-index: 3;
  background: white;
  width: 100%;
  left: 0px;
  top: 5rem;
}
@media screen and (max-width: 599px) {
  .account-sidebar-container {
    top: 10rem;
  }
}
@media (min-width: 992px) {
  .account-sidebar-container {
    flex: 0 0 25%;
    max-width: 25%;
    position: static;
    transform: translateX(0px);
    border-top: 0px none;
    padding-left: 15px;
    padding-right: 15px;
    background: none;
  }
}
.account-sidebar-container .card.sml {
  border: none;
  box-shadow: none;
}
.account-sidebar-container .card ul.list-group li {
  box-shadow: none;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0 auto;
  text-transform: uppercase;
  width: 90%;
}
.account-sidebar-container .card ul.list-group li:first-child {
  box-shadow: none;
  margin: 0 auto;
  padding-top: 1rem;
  padding-left: 10px;
  width: 90%;
}
.account-sidebar-container .card ul.list-group li:first-child span {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
.account-sidebar-container .card ul.list-group li:first-child p {
  color: #0B0A1D;
  display: inline;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
.account-sidebar-container .card ul.list-group li:nth-child(2) {
  margin-top: 1rem;
  padding-left: 10px;
}
.account-sidebar-container .card ul.list-group li:nth-child(2) h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: none;
}
@media screen and (max-width: 1199px) {
  .account-sidebar-container .card ul.list-group li:nth-child(2) h3 {
    font-size: 32px;
  }
}
.account-sidebar-container .card ul.list-group li h4 {
  font-size: 36px;
}
.account-sidebar-container .card ul.list-group li a {
  color: #0B0A1D;
  width: 90%;
  margin: 0 auto;
  margin-left: 0rem;
  padding-left: 10px;
  box-shadow: none;
  border-radius: 5px;
}
.account-sidebar-container .card ul.list-group li:last-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}
.account-sidebar-container .card ul.list-group li:last-child button {
  color: #982065;
  font-family: "Arial", serif;
  font-weight: 400;
  padding-left: 0rem;
  text-transform: uppercase;
  padding-left: 11px;
  border-radius: 5px;
}

.main-section {
  border-radius: 5px;
  opacity: 1;
  margin-bottom: 8rem;
  transition: all ease-out 0.2s;
}
@media screen and (max-width: 599px) {
  .main-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
  }
}
.main-section .h4 {
  padding-bottom: 20px;
}
.main-section .marketing__sub-heading {
  font-size: 18px;
  font-family: "Arial", serif;
  font-weight: 400;
  margin-bottom: 2rem;
}

.sideBarOpen .account-sidebar-container {
  transform: translateX(0px);
}
.sideBarOpen .main-section {
  opacity: 0;
}
@media (min-width: 992px) {
  .sideBarOpen .main-section {
    opacity: 1;
  }
}

.sideBarToggle {
  padding: 15px;
  padding-left: 45px;
  cursor: pointer;
  position: relative;
  width: calc(100% + 30px);
  height: auto;
  border-bottom: 1px solid #939393;
}
@media (min-width: 576px) {
  .sideBarToggle {
    border-bottom: 0px none;
    width: 100%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 599px) {
  .sideBarToggle {
    margin-top: 1rem;
    z-index: 15;
  }
}
.sideBarToggle a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}
.sideBarToggle .hideMenu {
  display: none;
}
.sideBarToggle .showMenu {
  display: block;
}
.sideBarToggle::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #222E5B;
  position: absolute;
  top: 24px;
  left: 10px;
  transform-origin: center;
  transform: rotate(0deg);
  transition: all ease-in-out 0.2s;
}
.sideBarToggle::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-left: 2px solid #222E5B;
  border-bottom: 2px solid #222E5B;
  transform: rotate(45deg);
  transform-origin: center;
  left: 10px;
  top: 20px;
  transition: all ease-in-out 0.2s;
}

.sideBarOpen .sideBarToggle .hideMenu {
  display: block;
}
.sideBarOpen .sideBarToggle .showMenu {
  display: none;
}
.sideBarOpen .sideBarToggle::after {
  transform: rotate(180deg);
}
.sideBarOpen .sideBarToggle::before {
  transform: rotate(225deg);
  left: 21px;
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.popOverBG {
  transition: all ease-in-out 0.2s;
  position: fixed;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
}

body.countDown {
  position: relative;
}
body.countDown .popOverBG {
  opacity: 1;
  pointer-events: all;
}
body.countDown .popOverBG .popOverWrapper {
  margin: 15px;
  position: absolute;
  background: white;
  color: black;
  background-size: contain;
  background-position: center top;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  top: 15%;
}
@media (min-width: 576px) {
  body.countDown .popOverBG .popOverWrapper {
    margin-right: 0px;
    margin-bottom: 0px;
    width: 504px;
    height: 470px;
    margin-left: -252px;
    top: 50%;
    left: 50%;
    margin-top: -235px;
  }
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner {
  background: linear-gradient(0deg, rgba(2, 8, 30, 0.76), rgba(2, 8, 30, 0.76));
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading {
  text-align: right;
  padding: 0px 10px;
  width: 100%;
  height: 40px;
  line-height: 40px;
  position: relative;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading .close {
  right: 20px;
  top: 20px;
  position: absolute;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading .close::before {
  background: white;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading .close::after {
  background: white;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading .close:hover::before {
  background: #F8F8F8;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverHeading .close:hover::after {
  background: #F8F8F8;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverBody {
  width: 100%;
  text-align: center;
  min-height: 175px;
  padding: 10px 55px;
  color: white;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverBody h3 {
  font-size: 24px;
  line-height: 28px;
  color: white;
  text-transform: uppercase;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverBody p {
  font-size: 16px;
  line-height: 22px;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverCounter {
  width: 100%;
  background: black;
  height: 120px;
  color: white;
  text-align: center;
  display: flex;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverCounter > div {
  width: 100%;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverCounter h4 {
  color: #A68F65;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverCounter .countdownlist li {
  width: 50px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverCounter .countdownlist li span {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
}
body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverControls {
  width: 100%;
  background: white;
  padding: 15px;
}
@media (min-width: 576px) {
  body.countDown .popOverBG .popOverWrapper .popOverWrapperInner .popOverControls {
    padding: 40px;
  }
}

/* ====== CATALOGUE ====== */
/* ======
CATALOGUE
    - General
    - Highlight Sections
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.catalogue {
  width: 100%;
}
.catalogue .catalogue-view-container {
  background-color: #FFFFFF;
  width: 100%;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
}
.catalogue .catalogue-view-container .container {
  max-width: 1200px;
}
.catalogue .catalogue-view-container .container.filters-row {
  max-width: 1300px;
}
.catalogue .catalogue-view-container .container-fluid .gridView, .catalogue .catalogue-view-container .container-sm .gridView, .catalogue .catalogue-view-container .container-md .gridView, .catalogue .catalogue-view-container .container-lg .gridView, .catalogue .catalogue-view-container .container-xl .gridView, .catalogue .catalogue-view-container .container-xxl .gridView {
  max-width: 1700px;
  margin: 0 auto;
}
.catalogue .catalogue-view-container .container-fluid .listView, .catalogue .catalogue-view-container .container-sm .listView, .catalogue .catalogue-view-container .container-md .listView, .catalogue .catalogue-view-container .container-lg .listView, .catalogue .catalogue-view-container .container-xl .listView, .catalogue .catalogue-view-container .container-xxl .listView {
  max-width: 1200px;
  margin: 0 auto;
}
.catalogue .telephoneNumber {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  height: 45px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: 700;
  z-index: 10;
  line-height: 45px;
}
@media screen and (max-width: 572px) {
  .catalogue .telephoneNumber {
    display: none !important;
  }
}

.fixedHeader {
  background: #F8F8F8;
}
.fixedHeader .sml {
  padding-top: 85px;
}
@media (min-width: 576px) {
  .fixedHeader .sml {
    padding-top: 85px;
  }
}
@media (min-width: 768px) {
  .fixedHeader .sml {
    padding-top: 200px;
  }
}
@media (min-width: 992px) {
  .fixedHeader .sml {
    padding-top: 200px;
  }
}
@media (min-width: 1200px) {
  .fixedHeader .sml {
    padding-top: 143px;
  }
}

.auction-banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 390px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1599px) {
  .auction-banner {
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .auction-banner {
    height: 700px;
  }
}
@media screen and (max-width: 377px) {
  .auction-banner {
    height: 700px;
  }
}
.auction-banner.sml {
  align-items: flex-start;
  display: flex;
  height: 440px;
  justify-content: center;
}
@media screen and (max-width: 1599px) {
  .auction-banner.sml {
    height: 400px;
  }
}
@media screen and (max-width: 416px) {
  .auction-banner.sml {
    height: 500px;
  }
}
.auction-banner.sml .overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  /*================================================================================
  $ SCROLL DOWN - Upcoming / Past Auctions
  ================================================================================*/
}
@media screen and (max-width: 1599px) {
  .auction-banner.sml .overlay {
    height: 400px;
  }
}
@media screen and (max-width: 416px) {
  .auction-banner.sml .overlay {
    height: 500px;
  }
}
.auction-banner.sml .overlay .information {
  margin-top: 50px;
  max-width: 450px;
}
@media screen and (max-width: 1599px) {
  .auction-banner.sml .overlay .information {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .auction-banner.sml .overlay .information {
    margin-top: 120px;
  }
}
@media screen and (max-width: 766px) {
  .auction-banner.sml .overlay .information {
    margin-top: 30px;
  }
}
.auction-banner.sml .overlay .scroll-down-container {
  bottom: 50px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1199px) {
  .auction-banner.sml .overlay .scroll-down-container {
    bottom: 34px;
  }
}
@media screen and (max-width: 1199px) {
  .auction-banner.sml .overlay .scroll-down-container {
    bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .auction-banner.sml .overlay .scroll-down-container {
    bottom: 7px;
  }
}
@media screen and (max-width: 416px) {
  .auction-banner.sml .overlay .scroll-down-container {
    bottom: 20px;
  }
}
.auction-banner.sml .overlay .scroll-down-container .arrowInfo .arrow-link-down {
  color: #808080;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.auction-banner.sml .overlay .scroll-down-container .arrowInfo .arrow-link-down::after {
  background: url(../../../images/icons/scroll-down.png) right top no-repeat transparent;
  content: "";
  display: block;
  margin: 0 auto;
  height: 36px;
  width: 36px;
}
.auction-banner.sml .overlay .scroll-down-container .arrowInfo .arrow-link-down:hover {
  color: black;
  text-decoration: none;
}
.auction-banner .overlay {
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 390px;
  background: rgba(2, 8, 30, 0.7);
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /*================================================================================
  $ SCROLL DOWN - Catalogue Page
  ================================================================================*/
}
@media screen and (max-width: 1599px) {
  .auction-banner .overlay {
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .auction-banner .overlay {
    height: 700px;
  }
}
@media screen and (max-width: 377px) {
  .auction-banner .overlay {
    height: 700px;
  }
}
.auction-banner .overlay .countdown {
  width: 100%;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  line-height: 45px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .auction-banner .overlay .countdown {
    width: auto;
    padding: 0px 20px;
    margin-top: 70px;
    margin-bottom: -90px;
  }
}
.auction-banner .overlay .countdown span {
  margin-left: 5px;
  display: inline-block;
}
.auction-banner .overlay .countdown span + span {
  font-weight: 400;
  font-size: 12px;
}
.auction-banner .overlay .information {
  width: 100%;
  padding: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1599px) {
  .auction-banner .overlay .information {
    margin-top: 30px;
  }
}
@media screen and (max-width: 416px) {
  .auction-banner .overlay .information {
    margin-top: 10px;
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 377px) {
  .auction-banner .overlay .information {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 362px) {
  .auction-banner .overlay .information {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .auction-banner .overlay .information {
    max-width: 1000px;
  }
}
.auction-banner .overlay .information h2 {
  text-transform: uppercase;
}
.auction-banner .overlay .scroll-down-container {
  bottom: 50px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .auction-banner .overlay .scroll-down-container {
    bottom: 135px;
  }
}
@media screen and (max-width: 377px) {
  .auction-banner .overlay .scroll-down-container {
    bottom: 130px;
  }
}
@media screen and (max-width: 362px) {
  .auction-banner .overlay .scroll-down-container {
    bottom: 124px;
  }
}
@media screen and (max-width: 322px) {
  .auction-banner .overlay .scroll-down-container {
    bottom: 110px;
  }
}
.auction-banner .overlay .scroll-down-container .arrowInfo .arrow-link-down {
  color: #808080;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.auction-banner .overlay .scroll-down-container .arrowInfo .arrow-link-down::after {
  background: url(../../../images/icons/scroll-down.png) right top no-repeat transparent;
  content: "";
  display: block;
  margin: 0 auto;
  height: 36px;
  width: 36px;
}
.auction-banner .overlay .scroll-down-container .arrowInfo .arrow-link-down:hover {
  color: black;
  text-decoration: none;
}
.auction-banner .overlay .infoBar {
  background: white;
  color: #808080;
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  max-width: 1100px;
  display: flex;
  align-content: center;
  margin-bottom: -32px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}
.auction-banner .overlay .infoBar span {
  font-size: 23px;
  margin-right: 15px;
}
@media screen and (max-width: 416px) {
  .auction-banner .overlay .infoBar {
    min-height: 140px;
  }
}
@media screen and (max-width: 416px) {
  .auction-banner .overlay .infoBar ul {
    margin-top: 20px;
  }
}
.auction-banner .overlay .infoBar ul li {
  margin-right: 20px;
  width: auto;
}
@media screen and (max-width: 991px) {
  .auction-banner .overlay .infoBar ul li {
    margin-bottom: 10px;
    margin-right: 20px;
  }
}
.auction-banner .overlay .infoBar ul li a {
  color: #808080;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.auction-banner .overlay .infoBar ul li a:hover, .auction-banner .overlay .infoBar ul li a:active, .auction-banner .overlay .infoBar ul li a:focus {
  color: black;
}

.auctionBreadCrumb {
  width: 100%;
  background: #FBF8F8;
}
.auctionBreadCrumb .container h1 {
  font-size: 50px;
  line-height: 100%;
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
}
@media (max-width: 575.98px) {
  .auctionBreadCrumb .container h1 {
    font-size: 32px;
  }
}
.auctionBreadCrumb .container p.live-auctions {
  font-family: "Arial", serif;
}
.auctionBreadCrumb .container p.auction-description {
  font-family: "Arial", serif;
}
.auctionBreadCrumb .container p.auction-date {
  color: #0B0A1D;
  opacity: 0.5;
}
.auctionBreadCrumb .container a.back-to-cal {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 12px;
  opacity: 0.5;
}
.auctionBreadCrumb .container a.back-to-cal::before {
  position: relative;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/icons/back-to-auction-icon.svg) right top no-repeat transparent;
  margin-right: 10px;
  display: inline-flex;
}
.auctionBreadCrumb .container a.add-calendar, .auctionBreadCrumb .container a.view-auction-archive {
  color: #982065;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.auctionBreadCrumb .container a.view-auction-archive {
  font-size: 16px;
}
.auctionBreadCrumb .container a.view-auction-archive::after {
  position: relative;
  content: "";
  width: 9px;
  height: 12px;
  background: url(../images/icons/continue-reading-icon.svg) right top no-repeat transparent;
  margin-left: 10px;
  display: inline-flex;
}
.auctionBreadCrumb .container a.login-to-bid {
  height: 42px;
  line-height: 42px;
}
.auctionBreadCrumb .container a.add-calendar {
  display: flex;
  align-items: center;
}
.auctionBreadCrumb .container a.add-calendar::before {
  position: relative;
  content: "";
  width: 23px;
  height: 23px;
  background: url(../images/icons/add-calendar-icon.svg) right top no-repeat transparent;
  margin-right: 10px;
  display: inline-flex;
}
.auctionBreadCrumb .container button.btnRegisterToBidLive {
  width: 100%;
}
.auctionBreadCrumb .container #accordionInfos {
  width: 48%;
}
@media (max-width: 575.98px) {
  .auctionBreadCrumb .container #accordionInfos {
    width: 100%;
  }
}
.auctionBreadCrumb .container #accordionInfos.accordion {
  --bs-accordion-bg:transparent;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-btn-icon: url(../images/icons/arrow-accordion.svg);
  --bs-accordion-btn-active-icon: url(../images/icons/arrow-accordion.svg);
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item {
  border: none;
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item .accordion-button {
  font-weight: 700;
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item .accordion-button::after {
  margin-top: 10px;
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: inherit;
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  margin-top: 0px;
}
.auctionBreadCrumb .container #accordionInfos.accordion .accordion-item button:focus:not(:focus-visible) {
  box-shadow: none;
}

@media screen and (max-width: 991px) {
  .auction-image-container {
    margin: 15px auto 0;
    max-width: 600px;
    width: 100%;
  }
}
.auction-image-container img {
  object-fit: cover;
  max-height: 290px;
  width: 100%;
}

.featuredAuction {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .featuredAuction {
    flex-direction: row;
  }
}
.featuredAuction .image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
}
@media (min-width: 992px) {
  .featuredAuction .image {
    width: 25%;
    height: auto;
  }
}
.featuredAuction .image img {
  min-height: 100%;
}
.featuredAuction .info {
  width: 100%;
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .featuredAuction .info {
    width: 75%;
  }
}

.filters {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
@media (max-width: 575.98px) {
  .filters {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .filters {
    margin-top: 0px;
    width: auto;
    justify-content: flex-end;
  }
}
.filters.calendar {
  justify-content: space-between;
  background: none;
}
@media (min-width: 768px) {
  .filters.calendar {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .filters.calendar {
    overflow-x: scroll;
    height: 40px;
  }
}
.filters.calendar input[type=radio].saleYears {
  display: none;
}
.filters.calendar input[type=radio].saleYears + label {
  background: #fff;
  color: #939393;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  font-weight: 700;
  font-size: 1rem;
  padding: 5px;
}
.filters.calendar input[type=radio].saleYears:checked + label {
  border-bottom: 3px solid #982065;
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
}

.displayFilters {
  height: 30px;
  line-height: 30px;
}
.displayFilters span {
  border-radius: 4px;
  transition: all ease-in-out 0.2s;
  font-size: 30px;
}
.displayFilters li a {
  transition: all ease-in-out 0.2s;
  color: #C4C4C4;
  text-decoration: none;
  cursor: pointer;
}
.displayFilters li a:hover {
  color: #222E5B;
}
.displayFilters li a:hover span {
  border: 1px solid #0B0A1D;
  transition: all ease-in-out 0.2s;
}
.displayFilters li a:not([href]):not([class]) {
  color: #C4C4C4;
  text-decoration: none;
}
.displayFilters li.active a:not([href]):not([class]) {
  color: #222E5B;
  text-decoration: none;
}

.lotListing .image {
  position: relative;
  transition: all ease-in-out 0.5s;
}
.lotListing .image img {
  max-height: 400px;
  transition: all ease-in-out 0.5s;
  object-fit: contain;
}
@media screen and (max-width: 599px) {
  .lotListing .image img {
    max-height: 300px;
  }
}
.lotListing .image .watchCount {
  left: 0;
  position: absolute;
  top: 10px;
}
.lotListing .image .watchCount span {
  align-items: center;
  background: white;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  font-size: 20px;
  height: 35px;
  justify-content: center;
  line-height: 35px;
  text-align: center;
  transition: all ease-in-out 0.5s;
  width: 35px;
}
.lotListing .image .watchCount span.ss-heart-outline {
  margin-right: 2px;
}
.lotListing .image .watchCount span.ss-heart-outline:hover::before {
  transform: scale(1.2);
  transition: 0.2s ease-in;
}
.lotListing .image .watchCount span.ss-heart-outline::before {
  transition: 0.2s ease-out;
}
.lotListing .info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 15px 0;
  transition: all ease-in-out 0.5s;
}
.lotListing .info .lot-no {
  color: #982065;
}
.lotListing .info h4 {
  transition: all ease-in-out 0.5s;
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  min-height: 43px;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .lotListing .info h4 {
    font-size: 18px;
    line-height: 24px;
  }
}
.lotListing .info p.description {
  transition: all ease-in-out 0.5s;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 1200px) {
  .lotListing .info p.description {
    font-size: 14px;
    line-height: 1.5;
  }
}
.lotListing .controls {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all ease-in-out 0.5s;
}
.lotListing .controls .btn.btn-md {
  line-height: 44px;
}
.lotListing .controls span a {
  color: #222E5B;
}

.gridView {
  display: grid;
  gap: 15px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 991px) {
  .gridView {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 799px) {
  .gridView {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 474px) {
  .gridView {
    grid-template-columns: 1fr;
  }
}
.gridView .acupdate-block.acupdate-block {
  padding: 0;
  position: relative;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock {
  height: 100%;
  padding: 0;
  width: 100%;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock img,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__content,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__content {
  background-color: rgba(12, 12, 12, 0.5);
  height: 100%;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
  left: 50%;
  max-width: 80%;
  position: absolute;
  text-align: center;
  top: 42.5%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
  .gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
    max-width: 82.5%;
  }
}
@media screen and (max-width: 599px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
  .gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
    max-width: 85%;
  }
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails p,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails p {
  color: #FFFFFF;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
  border-bottom: 1px solid #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 40px;
  display: block;
  line-height: 1.25;
  margin-bottom: 30px;
  padding-bottom: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
  .gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 599px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
  .gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-lots-length,
.gridView .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-lots-length {
  margin-bottom: 0;
  text-transform: uppercase;
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle {
  bottom: 15px;
  left: 50%;
  padding: 0 10px;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 599px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle {
    bottom: 10px;
  }
}
.gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .gridView .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle > .block-auctiontitle {
    display: none;
  }
}
.gridView .block-size-1-2 {
  grid-area: span 1/span 2;
}
@media screen and (max-width: 474px) {
  .gridView .block-size-1-2 {
    grid-area: span 1/span 1;
  }
}
.gridView .block-size-2-1 {
  grid-area: span 2/span 1;
}
@media screen and (max-width: 474px) {
  .gridView .block-size-2-1 {
    grid-area: span 1/span 1;
  }
}
.gridView .block-size-2-1 .image img {
  max-height: 800px !important;
  min-height: 800px !important;
}
@media screen and (max-width: 899px) {
  .gridView .block-size-2-1 .image img {
    max-height: 725px !important;
    min-height: 725px !important;
  }
}
@media screen and (max-width: 474px) {
  .gridView .block-size-2-1 .image img {
    max-height: 250px !important;
    min-height: 250px !important;
  }
}
.gridView .block-size-2-2 {
  grid-area: span 2/span 2;
}
@media screen and (max-width: 474px) {
  .gridView .block-size-2-2 {
    grid-area: span 1/span 1;
  }
}
.gridView .block-size-2-2 .image img {
  max-height: 800px !important;
  min-height: 800px !important;
}
@media screen and (max-width: 899px) {
  .gridView .block-size-2-2 .image img {
    max-height: 725px !important;
    min-height: 725px !important;
  }
}
@media screen and (max-width: 799px) {
  .gridView .block-size-2-2 .image img {
    max-height: 500px !important;
    min-height: 500px !important;
  }
}
@media screen and (max-width: 599px) {
  .gridView .block-size-2-2 .image img {
    max-height: 450px !important;
    min-height: 450px !important;
  }
}
@media screen and (max-width: 474px) {
  .gridView .block-size-2-2 .image img {
    max-height: 250px !important;
    min-height: 250px !important;
  }
}
.gridView .lotListing {
  padding: 0 10px;
  transition: all ease-in-out 0.5s;
  width: 100%;
}
.gridView .lotListing.card {
  box-shadow: none;
  border-radius: 0;
}
.gridView .lotListing.card:has(.currentBid--winning) {
  border: 2px solid #578B45;
}
.gridView .lotListing.card:has(.currentBid--losing) {
  border: 2px solid #A60000;
}
.gridView .lotListing a.view-details {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gridView .lotListing p.description {
  display: none;
}
.gridView .lotListing .image-holder {
  display: block;
  padding-top: 10px;
}
.gridView .lotListing .image {
  width: 100%;
}
.gridView .lotListing .image img {
  max-height: 300px;
  min-height: 300px;
  max-width: 100%;
  object-fit: contain;
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .gridView .lotListing .image img {
    max-height: 275px;
    min-height: 275px;
  }
}
@media screen and (max-width: 899px) {
  .gridView .lotListing .image img {
    max-height: 250px;
    min-height: 250px;
  }
}
.gridView .lotListing .info {
  margin-top: auto;
  width: 100%;
}
.gridView .lotListing .info p.currentBid--winning {
  color: #578B45;
}
.gridView .lotListing .info p.currentBid--losing {
  color: #A60000;
}
.gridView .lotListing .info p:last-child {
  margin-bottom: 0px;
}
.gridView .lotListing .controls {
  border-left: 0px none;
  border-top: 1px solid #D2D2D2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .gridView .lotListing .controls {
    padding: 7px 0;
  }
}
@media screen and (max-width: 767px) {
  .gridView .lotListing .controls {
    padding: 7px 0;
  }
}
.gridView .lotListing .controls p {
  margin-bottom: 0;
}
.gridView .lotListing .controls .control-1 {
  font-size: 14px;
  line-height: 20px;
}
.gridView .lotListing .controls .control-1 a {
  color: #222E5B;
}
.gridView .lotListing .controls .watchCount {
  display: none;
}

.listView {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.listView p.showing-lots {
  font-family: "Arial", serif;
  font-weight: 400;
  font-size: 18px;
  color: #2D2D2D;
}
.listView .acupdate-block.acupdate-block {
  display: none !important;
}
.listView .lotListing {
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: all ease-in-out 0.5s;
  margin: 20px 0px;
  min-height: 250px;
}
.listView .lotListing.card {
  box-shadow: none;
  border-radius: 0;
  padding: 0 10px;
}
.listView .lotListing.card:has(.currentBid--winning) {
  border: 2px solid #578B45;
}
.listView .lotListing.card:has(.currentBid--losing) {
  border: 2px solid #A60000;
}
.listView .lotListing a.view-details {
  display: flex;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  letter-spacing: 2px;
  transition: 0.3s ease;
  justify-content: center;
}
@media (max-width: 576px) {
  .listView .lotListing a.view-details {
    right: 30px;
    bottom: 30px;
  }
}
.listView .lotListing .image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .listView .lotListing .image {
    border-right: 0;
  }
}
.listView .lotListing .image img {
  height: 100%;
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}
@media screen and (max-width: 599px) {
  .listView .lotListing .image img {
    border: 1px solid #E5E5E5;
  }
}
.listView .lotListing .info p.lot-no {
  font-weight: 300;
  font-size: 14px;
  color: #982065;
}
.listView .lotListing .info p.estimate-price {
  color: #0B0A1D;
}
.listView .lotListing .info p:last-child {
  margin-bottom: 0px;
}
.listView .lotListing .controls {
  border-top: 0px none;
}
.listView .lotListing .controls .control-2 {
  align-self: flex-start;
}
@media screen and (max-width: 1199px) {
  .listView .lotListing .controls .control-3 a {
    height: auto;
    line-height: 1.5;
    padding: 7px 10px;
  }
}
@media (max-width: 576px) {
  .listView .lotListing .controls .control-3 a {
    padding: 11px 10px;
  }
}
.listView .lotListing .controls p.currentBid {
  font-weight: 600;
}
.listView .lotListing .controls button.btn_place_bid {
  background: #982065;
  color: #FFFFFF;
}
.listView .lotListing .controls button.btn_place_bid:hover {
  color: #982065;
  background: #FFFFFF;
  border: 1px solid #982065;
}
.listView .lotListing .controls button.btnLoginToBid, .listView .lotListing .controls button.btn_place_bid, .listView .lotListing .controls button.view-details, .listView .lotListing .controls button.reduceMaxBid, .listView .lotListing .controls button.cancelBid,
.listView .lotListing .controls a.btnLoginToBid,
.listView .lotListing .controls a.btn_place_bid,
.listView .lotListing .controls a.view-details,
.listView .lotListing .controls a.reduceMaxBid,
.listView .lotListing .controls a.cancelBid {
  min-width: 48%;
  min-height: 44px;
  height: 44px;
}

.auctionTime {
  width: 100%;
  border: 1px dashed #C4C4C4;
  padding: 20px;
  text-align: center;
  margin: 20px 0px;
  font-weight: bold;
  color: #808080;
}

.goToPage {
  max-width: 170px;
}
.goToPage input {
  width: 50px;
  border-radius: 0px;
  border: 0.5px solid #C4C4C4;
}
.goToPage a.btn {
  padding: 0px 10px;
  line-height: 26px;
  min-height: 26px;
  margin-left: -5px;
  margin-top: -3px;
}

.pagination ul li a {
  display: inline-block;
  padding: 10px 20px;
  color: #D2D2D2;
  transition: all ease-in-out 0.2s;
  background: transparent;
  text-decoration: none;
}
.pagination ul li a:hover {
  background: #D2D2D2;
  color: white;
}

.auction {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .auction {
    flex-direction: row;
  }
}
.auction .image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .auction .image {
    max-width: 330px;
  }
}
@media (min-width: 992px) {
  .auction .image {
    max-width: 330px;
  }
}
@media (min-width: 1200px) {
  .auction .image {
    max-width: 330px;
  }
}
.auction .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .auction .info {
    flex-direction: row;
  }
}
.auction .info .text {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .auction .info .text {
    max-width: 540px;
    padding: 0px 15px;
  }
}
.auction .info .text p.auction-date {
  font-weight: 600;
  color: #982065;
  letter-spacing: 1px;
}
.auction .info .text p.lot-description {
  font-size: 14px;
  line-height: 150%;
}
.auction .info .text h3 {
  margin-top: 0px;
}
@media (min-width: 1200px) {
  .auction .info .text h3 {
    margin-top: 40px;
  }
}
.auction .info .text .medium-text {
  margin-bottom: 0px;
}
@media (min-width: 1200px) {
  .auction .info .text .medium-text {
    margin-bottom: 40px;
  }
}
.auction .info .controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .auction .info .controls {
    max-width: 255px;
    padding-right: 40px;
  }
}
.auction .info .controls a.btn {
  width: 100%;
  padding: 0px 10px;
}
.auction .info .controls a.btn:first-child {
  margin-top: auto;
}
.auction .info .controls a.btn:last-child {
  margin-bottom: auto;
}
.auction .info .controls button.btn {
  width: 100%;
  padding: 0px 10px;
}

/*================================================================================
- AUCTION SLIDER
================================================================================*/
body.layout-catalogue .catalogue-view-container .auction-sessions {
  background-color: #F8F8F8;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider {
  margin-bottom: 30px;
  margin-top: 0px;
  position: relative;
  padding-top: 40px;
  width: 100%;
}
@media screen and (max-width: 416px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider {
    margin-bottom: 20px;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .slick-track {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .slick-track {
    width: 100% !important;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session {
  margin-top: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  -webkit-box-shadow: 0px 0px 7px 0px #000000;
  -moz-box-shadow: 0px 0px 7px 0px #000000;
  box-shadow: 0px 0px 7px 0px #000000;
  background: #EFEFEF;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session {
    min-height: 120px;
  }
}
@media screen and (max-width: 599px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session {
    min-height: 70px;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session:focus {
  background-color: #FFFFFF;
  outline: none;
}
@media screen and (max-width: 599px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session.slick-slide {
    width: 100% !important;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session.bg-white {
  background: #fff;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session.bg-white .auction-slide h5 {
  color: #222E5B;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide {
  cursor: pointer;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h5 {
  color: #808080;
  font-size: 17px;
  font-weight: 700;
  padding-bottom: 0px;
  text-transform: uppercase;
}
@media screen and (max-width: 416px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h5 {
    font-size: 12px;
    line-height: 1.2;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 {
  color: #808080;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 416px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 span {
  text-transform: uppercase;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 span.separator {
  color: #808080;
  font-weight: 400;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 span.lotsInfo {
  color: #A68F65;
  text-decoration: underline;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-list .rdo-session .auction-slide h4 span.lotsInfoHighlighted {
  color: #A68F65;
  text-decoration: underline;
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev {
  background-color: #222E5B;
  border: 1px solid #222E5B;
  color: #FFFFFF;
  font-size: 13px;
  left: -7.5%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 20px;
  position: absolute;
  text-transform: uppercase;
  top: 66%;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev {
    left: -3%;
    padding-right: 10px;
    top: 78%;
  }
}
@media screen and (max-width: 992px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev {
    left: -5%;
  }
}
@media screen and (max-width: 766px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev {
    left: -7%;
  }
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev span {
    display: none;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 15px;
  width: 15px;
  height: 18px;
  background: url(../images/icons/arrow-left.png) right top no-repeat transparent;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev:after {
    left: 15px;
    top: 5px;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev:focus {
  outline: none;
}
@media screen and (max-width: 599px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-prev {
    display: none !important;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next {
  background-color: #222E5B;
  border: 1px solid #222E5B;
  color: #FFFFFF;
  font-size: 13px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 30px;
  position: absolute;
  right: -7.5%;
  text-transform: uppercase;
  top: 66%;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next span {
    display: none;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 15px;
  width: 12px;
  height: 16px;
  background: url(../images/icons/arrow-right.png) right top no-repeat transparent;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next:after {
    top: 5px;
    right: 9px;
  }
}
body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next:focus {
  outline: none;
}
@media screen and (max-width: 1259px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next {
    padding-right: 20px;
    right: -4%;
    top: 78%;
  }
}
@media screen and (max-width: 992px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next {
    right: -6%;
  }
}
@media screen and (max-width: 599px) {
  body.layout-catalogue .catalogue-view-container .auction-sessions .auction-slick-slider .slick-slider .slick-next {
    display: none !important;
  }
}
body.layout-catalogue .catalogue-view-container .session-header-container .sessionHeader {
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 416px) {
  body.layout-catalogue .catalogue-view-container .session-header-container .sessionHeader {
    margin-bottom: 0rem !important;
  }
}
body.layout-catalogue .catalogue-view-container .session-header-container .sessionHeader #session_total_lots span {
  color: #A68F65;
}
body.layout-catalogue .catalogue-view-container .filters .input-group {
  width: 130px;
  flex-wrap: nowrap;
  height: 41px;
}
body.layout-catalogue .catalogue-view-container .filters .input-group .input-group-text {
  background: #FFFFFF;
  border: 1px solid #0B0A1D;
}
body.layout-catalogue .catalogue-view-container .filters select.lotNo {
  background-color: #FFFFFF;
  background-image: url("../images/icons/select-dropdown-arrow.svg") !important;
  background-size: contain !important;
  background-size: 23px !important;
  background-position: 102% center !important;
  background-repeat: no-repeat !important;
  color: #0B0A1D;
  font-size: 12px;
  margin-left: -2px !important;
  padding-left: 0;
  font-weight: 600;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #0B0A1D;
}
body.layout-catalogue .catalogue-view-container .filters select.lotNo:focus {
  box-shadow: none;
}
body.layout-catalogue .catalogue-view-container .grid-shortcuts li.active .display-gridView,
body.layout-catalogue .catalogue-view-container .grid-shortcuts li.active .display-listView {
  border: 1px solid #0B0A1D;
  border-radius: 3px;
}

.com_calendar.view-upcoming .auction-banner,
.com_calendar.view-archive .auction-banner {
  height: 145px;
}
.com_calendar.view-upcoming .auction-banner .overlay,
.com_calendar.view-archive .auction-banner .overlay {
  height: 145px;
}
.com_calendar.view-upcoming .upcoming-auctions-info span.horizontal-divider,
.com_calendar.view-archive .upcoming-auctions-info span.horizontal-divider {
  width: 100%;
  height: 1px;
  background: #2D2D2D;
  display: flex;
}
.com_calendar.view-upcoming .upcoming-auctions-info p,
.com_calendar.view-archive .upcoming-auctions-info p {
  font-size: 16px;
  color: #2D2D2D;
}
.com_calendar.view-upcoming .upcoming-auctions-info #auction-list .auction .info,
.com_calendar.view-archive .upcoming-auctions-info #auction-list .auction .info {
  display: flex;
  flex-direction: column;
}
.com_calendar.view-upcoming .upcoming-auctions-info #auction-list .auction .info .text,
.com_calendar.view-archive .upcoming-auctions-info #auction-list .auction .info .text {
  max-width: 100%;
}
.com_calendar.view-upcoming .upcoming-auctions-info #auction-list .auction .info .controls,
.com_calendar.view-archive .upcoming-auctions-info #auction-list .auction .info .controls {
  max-width: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 575.98px) {
  .com_calendar.view-upcoming .upcoming-auctions-info #auction-list .auction .info .controls,
  .com_calendar.view-archive .upcoming-auctions-info #auction-list .auction .info .controls {
    flex-direction: column;
  }
}

.text-uppercase {
  text-transform: uppercase;
}

/* Filters left all views */
.auction-filters .filters-wrapper p.filter-lots {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  color: #000;
  font-family: "Georgia", sans-serif;
}
.auction-filters .filters-wrapper a.clear-filters {
  font-size: 12px;
  text-align: right;
  color: #982065;
  cursor: pointer;
}
.auction-filters .filters-wrapper a.icon-collapse {
  background: url("../images/icons/filter-open-icon.svg") no-repeat;
  width: 16px;
  height: 16px;
  display: inline-flex;
  position: relative;
  margin-right: 0;
  margin-top: 25px;
  float: right;
  box-shadow: none;
  border: none;
  padding: 0 8px;
}
.auction-filters .filters-wrapper h3.title {
  font-size: 14px;
  color: #3C3C3B;
  font-weight: 400;
  border-top: 1px solid #5A5A5A;
  padding: 10px 0;
}
.auction-filters .filters-wrapper .type-filter input[type=checkbox],
.auction-filters .filters-wrapper .category-filter input[type=checkbox] {
  margin-right: 7px;
  border: 1px solid #D3D2D3;
  border-radius: 0;
  width: 21px;
  height: 21px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auction-filters .filters-wrapper .type-filter input[type=checkbox]:checked,
.auction-filters .filters-wrapper .category-filter input[type=checkbox]:checked {
  background-color: #982065;
}
.auction-filters .filters-wrapper .type-filter input[type=checkbox]:checked::after,
.auction-filters .filters-wrapper .category-filter input[type=checkbox]:checked::after {
  content: "";
  background: url("../images/icons/filter-checked-checkbox-icon.svg") no-repeat;
  background-size: cover;
  width: 12px;
  height: 9px;
  display: flex;
  color: white;
  position: relative;
}
.auction-filters .filters-wrapper .type-filter input[type=checkbox] + label,
.auction-filters .filters-wrapper .category-filter input[type=checkbox] + label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #3C3C3B;
  text-transform: capitalize;
}
.auction-filters .filters-wrapper .category-filter a.view-more-categories {
  color: #982065;
  font-size: 12px;
}
.auction-filters .filters-wrapper .jump-to-lot input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  position: relative;
  top: 1px;
}
.auction-filters .filters-wrapper .auction-search .auction-search-content {
  width: 100%;
}
.auction-filters .filters-wrapper .auction-search .auction-search-content input#search_keyword {
  width: 100%;
}

.filters-toggler span {
  background: url("../images/icons/filters-icon.svg") no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  display: inline-flex;
  position: relative;
  margin-left: 5px;
  transition: 0.2s;
}
.filters-toggler:hover span, .filters-toggler.active span {
  filter: brightness(0) invert(1);
  transition: 0.2s;
}

@media (max-width: 575.98px) {
  .auction-search {
    width: 100%;
    border: 1px solid #F3EDEA;
  }
}
.auction-search .auction-search-content {
  position: relative;
  width: 200px;
  border: 1px solid #0B0A1D;
  border-radius: 4px;
}
@media (max-width: 575.98px) {
  .auction-search .auction-search-content {
    width: 100%;
  }
}
.auction-search .auction-search-content span.search-auctions-icon {
  cursor: pointer;
  background: url("../images/icons/search-auctions-icon.svg") no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  display: inline-flex;
  color: white;
  margin-left: 10px;
  position: absolute;
  right: 15px;
  top: 13px;
}
.auction-search .auction-search-content input {
  border: none;
  padding: 5px 10px 5px 15px;
  border-radius: 3px;
  width: 100%;
  outline: none;
  background: #FBF8F8;
  height: 40px;
}
.auction-search .auction-search-content input#search_keyword {
  background: #FBF8F8;
  border: #FBF8F8;
  border-radius: 3px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  width: 240px;
  margin: 0 10px;
}

.form-group.sort-show-limit {
  top: 0;
  position: relative;
  float: left;
  z-index: 9;
}
.form-group.sort-show-limit span {
  font-weight: 500;
  font-size: 14px;
  color: #6D6D6D;
}
.form-group.sort-show-limit select {
  border: 1px solid #D8D8D8;
  padding-left: 7px;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/icons/arrow-down-filter.svg) no-repeat;
  background-position: 85% center;
  padding-right: 20px;
  width: 60px;
  display: block;
}
.form-group.sort-show-limit select:hover, .form-group.sort-show-limit select:focus {
  background: url(../images/icons/arrow-down-filter.svg) no-repeat;
  background-position: 85% center;
}

/*Price range*/
#price-range {
  width: 100%;
  margin: 0 auto;
  color: #982065;
  font-weight: 400;
  font-size: 14px;
}

.vue-range-slider.slider-component .slider .slider-dot {
  top: -7px !important;
  background-color: #982065 !important;
}

.vue-range-slider.slider-component .slider {
  height: 2px !important;
}

.slider-price,
.slider-price2 {
  font-weight: 400;
}

.flat-slider.ui-corner-all,
.flat-slider .ui-corner-all {
  border-radius: 0;
}

.flat-slider.ui-slider {
  border: 0;
  background: #982065;
  border-radius: 6px;
}
.flat-slider.ui-slider-horizontal {
  height: 2px;
}
.flat-slider.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 2px;
  outline: none;
}
.flat-slider.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  margin-top: -7px;
  outline: none;
}
.flat-slider.ui-slider-vertical {
  height: 15em;
  width: 50px;
}
.flat-slider.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 6px;
}
.flat-slider.ui-slider-vertical .ui-slider-handle {
  left: 50%;
  margin-left: -11px;
}
.flat-slider .ui-slider-range {
  border: 0;
  border-radius: 6;
  background: #982065;
  outline: none;
}
.flat-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  background: #982065;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.flat-slider .ui-slider-handle:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}

.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

hr.hr-margin30 {
  margin: 30px 0;
}

hr.hr-margin10 {
  margin: 10px 0;
}

.com_timed_auction .container {
  max-width: 1400px;
}
.com_timed_auction #written_telephone.container-fluid, .com_timed_auction #written_telephone.container-sm, .com_timed_auction #written_telephone.container-md, .com_timed_auction #written_telephone.container-lg, .com_timed_auction #written_telephone.container-xl, .com_timed_auction #written_telephone.container-xxl {
  background: #F7F7F7;
}
.com_timed_auction .header .auction-name .title {
  font-weight: 400 !important;
  font-family: "Arial", serif;
  font-size: 28px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  .com_timed_auction .header .auction-name .title {
    font-size: 18px !important;
  }
}
.com_timed_auction .auction-calendar-header .header .breadcrumbs .arrow-breadcrumb {
  margin-top: -3px;
}
.com_timed_auction .auction-calendar-header .header .breadcrumbs p {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  color: #6D6D6D;
}
.com_timed_auction .auction-calendar-header .header h1 {
  color: #000000;
  font-weight: normal;
  font-size: 38px;
}
.com_timed_auction .auction-calendar-header .header .auction-date p {
  font-weight: normal;
  font-size: 14px;
  color: #3C3C3B;
}
.com_timed_auction .auction-calendar-header .header .auction-description a {
  color: #982065;
}
.com_timed_auction .auction-calendar-header .header a.add-to-calendar {
  font-weight: 500;
  font-size: 14px;
  color: #471753;
  display: inline-flex;
  align-items: center;
}
.com_timed_auction .auction-calendar-header .header a.add-to-calendar::after {
  content: "";
  display: inline-flex;
  background: url("../images/icons/add-to-calendar-icon.svg") no-repeat;
  width: 20px;
  height: 23px;
  margin-left: 10px;
}
.com_timed_auction .auction-calendar-header .header a.registered-to-bid {
  font-weight: 700;
  font-size: 14px;
  color: #471753;
}
.com_timed_auction .vertical-divider {
  border-left: 1px solid #D8D8D8;
}
.com_timed_auction .main-section .auction-content p.showing-lots {
  font-weight: normal;
  font-size: 20px;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .sorting-section .sort-total-lots h4 {
  font-weight: normal;
  font-size: 14px;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .auction-wrapper {
  display: flex;
  flex-direction: row;
  background: white;
  margin-bottom: 10px;
  border: 1px solid #F7F7F7;
}
@media screen and (max-width: 574.99px) {
  .com_timed_auction .main-section .auction-content .auction-wrapper {
    flex-direction: column;
    height: auto;
  }
}
.com_timed_auction .main-section .auction-content .auction-wrapper img {
  width: -webkit-fill-available;
  width: 100%;
  height: 232px;
  padding: 15px;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details-right a {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-flex;
  background: #982065;
  padding: 12px 30px;
  margin-top: 5px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details {
  padding: 25px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details p {
  margin-bottom: 0;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details p.auction-id {
  color: #3C3C3B;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details p.auction-title {
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #3C3C3B;
  margin-bottom: 10px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details p.your-bid-title {
  font-weight: 500;
  font-size: 14px;
  color: #3C3C3B;
  display: inline-flex;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details p.your-bid-title span {
  color: #982065;
  padding-left: 5px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details a.view-details {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #982065;
  display: flex;
  margin-top: 15px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details button.btn-login-to-bid {
  background: #982065;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 25px;
  line-height: 38px;
  width: 250px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper .auction-details button.btn-place-bid {
  background: #982065;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 25px;
  line-height: 38px;
  width: 250px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper span.add-to-wishlist {
  background: url("../images/icons/add-watchlist-icon.svg") no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  display: inline-flex;
  position: absolute;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}
.com_timed_auction .main-section .auction-content .auction-wrapper span.remove-to-wishlist {
  background: url("../images/icons/remove-watchlist-icon2.svg") no-repeat;
  background-size: cover;
  width: 35px;
  height: 35px;
  display: inline-flex;
  position: absolute;
}
.com_timed_auction .main-section .auction-content .auction-wrapper span.lot-sold {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F7F7F7;
  background: #982065;
  padding: 5px 11px;
  position: relative;
  left: -17px;
  top: -14px;
}
.com_timed_auction .main-section .auction-content .auction-wrapper span.lot-unsold {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F7F7F7;
  background: #6D6D6D;
  padding: 5px 11px;
  position: relative;
  left: -17px;
  top: -14px;
}
.com_timed_auction .main-section .auction-content .sort-select-by select {
  border: 1px solid #471753;
  padding: 5px 20px;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/icons/sort-by-icon.svg) no-repeat;
  background-position: 92% center;
  padding-right: 25px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  color: #3D3D3B;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading {
  background-color: #70b534;
  text-align: center;
  padding: 8px;
  border-radius: 3px;
  margin-bottom: 0;
  float: left;
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading .icon-container {
  display: inline-block;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading .icon-container > svg {
  height: auto;
  position: relative;
  top: 2px;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading .icon-container > svg path {
  stroke: white;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading .message {
  display: inline-block;
}
.com_timed_auction .main-section .auction-content .view-list .lots-loading .message .text {
  color: white;
  font-size: 15px;
  font-weight: bold;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot.no-pagination {
  border-top: none;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .no-lots-text {
  color: red;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  padding-top: 15px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-image {
  width: 30%;
  float: left;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-image img {
  border-radius: 0px;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-image {
    width: 100%;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info {
  width: 45%;
  padding: 0 15px;
  float: left;
  position: relative;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info {
    width: 100%;
    padding-top: 15px;
  }
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info h2 {
    margin-top: 15px;
    text-align: left;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p {
  padding-bottom: 0px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.lot-number a {
  font-size: 12px;
  font-weight: 600;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.current-bid {
  font-weight: 600;
  font-size: 14px;
  color: #982065;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.current-bid.highest_bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.current-bid.won_bid {
  color: #00998B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.current-bid_info {
  font-size: 14px;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.current-bid_info a {
  color: #982065;
  text-decoration: underline;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.max-bid {
  color: #CB9E00;
  font-weight: 600;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.winning-message {
  color: green;
  font-weight: 600;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info p.outbid-message {
  color: #c1272d;
  font-weight: 600;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info h2 {
  font-family: "Georgia", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  text-transform: capitalize;
  color: #3C3C3B;
  margin-bottom: 10px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .auction-estimate {
  font-weight: 500;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .auction-estimate span:nth-of-type(2), .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .auction-estimate span:nth-of-type(3) {
  color: #982065;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .unfortunately-not-win-wrapper .unfortunately-not-win span {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .congratulations-you-won-wrapper .congratulations-you-won {
  line-height: 16px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .congratulations-you-won-wrapper .congratulations-you-won span {
  font-weight: 600;
  font-size: 14px;
  color: #3C3C3B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding {
  padding-top: 20px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding .current-bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding .starting-bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding .full-details {
  font-weight: 600;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .timed-bidding .full-details {
  color: #982065;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices {
  position: absolute;
  top: 0;
  right: 0;
  padding-right: 15px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices {
    top: 15px;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices .notice-holder {
  display: inline-block;
  position: relative;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-item {
  cursor: pointer;
  padding: 1px 3px;
  border-radius: 3px;
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  font-size: 13px;
  color: #9e9e9e;
  border: 1px solid #9e9e9e;
  line-height: 1;
  margin-left: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-item:hover {
  -webkit-box-shadow: 0 0 5px 0 #b9b9b9;
  -moz-box-shadow: 0 0 5px 0 #b9b9b9;
  -ms-box-shadow: 0 0 5px 0 #b9b9b9;
  -o-box-shadow: 0 0 5px 0 #b9b9b9;
  box-shadow: 0 0 5px 0 #b9b9b9;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-message {
  position: absolute;
  top: 20px;
  left: 0;
  width: 200px;
  pointer-events: none;
  z-index: 9;
  background-color: white;
  padding: 8px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 0 #e3e3e3;
  -moz-box-shadow: 0 0 10px 0 #e3e3e3;
  -ms-box-shadow: 0 0 10px 0 #e3e3e3;
  -o-box-shadow: 0 0 10px 0 #e3e3e3;
  box-shadow: 0 0 10px 0 #e3e3e3;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-message {
    left: inherit;
    right: 0;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions {
  width: 25%;
  float: left;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions {
    width: 100%;
    margin: 15px 0 0 0;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .primary-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-submit, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .primary-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-submit, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button {
    min-height: 40px;
  }
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .wishlist-button {
  margin-bottom: 10px;
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .bid-box {
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .auction-login {
  background-color: #982065;
  border-color: #982065;
  border: none;
  color: #fff;
  display: block;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  z-index: 20;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .auction-login:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .auction-login:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .auction-login:hover {
  background-color: #982065;
  color: #fff;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .application-pending {
  background-color: #3E3E3E;
  border-color: #3E3E3E;
  border: none;
  color: #fff;
  z-index: 20;
  font-size: 12px;
  padding: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Arial", serif;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .application-pending:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .application-pending:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .application-pending:hover {
  background-color: #982065;
  color: #fff;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .register-to-bid {
  background-color: #CB9E00;
  border-color: #CB9E00;
  border: none;
  color: #fff;
  z-index: 20;
  font-size: 12px;
  padding: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Arial", serif;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .register-to-bid:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .register-to-bid:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .register-to-bid:hover {
  background-color: #982065;
  color: #fff;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-won_bid {
  background-color: #982065 !important;
  border-color: #982065 !important;
  border: none;
  color: #fff;
  z-index: 20;
  font-size: 12px;
  padding: 12px;
  letter-spacing: 2px;
  font-family: "Arial", serif;
  text-transform: uppercase;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:hover {
  color: inherit;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-another_bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-outbid {
  background-color: #982065 !important;
  border-color: #982065 !important;
  font-family: "Arial", serif;
  border: none;
  color: #fff;
  z-index: 20;
  font-size: 12px;
  padding: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-outbid:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-outbid:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .btn-outbid:hover {
  background-color: #fff;
  color: #982065;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button {
  background-color: #982065;
  border-color: #982065;
  z-index: 20;
  font-family: "Arial", serif;
  font-family: 12px;
  letter-spacing: 2px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:active, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:focus, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:focus, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:hover, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit:hover, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover {
  background-color: #982065;
  color: #fff;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button {
  background-color: #00BCBC;
  border-color: #00BCBC;
  z-index: 20;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover {
  background-color: #fff;
  color: #00BCBC;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button {
  background-color: #c1272d;
  border-color: #c1272d;
  z-index: 20;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus {
  color: #fff;
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover {
  background-color: #fff;
  color: #c1272d;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container {
  width: 100%;
  position: relative;
  margin-bottom: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .symbol {
  border-radius: 0;
  background-color: #e3e3e3;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 8px 10px;
  height: 100%;
  font-weight: normal;
  font-size: 16px;
  color: #4d4d4d;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .bid-amount {
  padding: 7px;
  font-weight: normal;
  font-size: 15px;
  color: #4d4d4d;
  box-shadow: none;
  height: auto;
  display: block;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  padding-left: 40px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .bid-amount:focus {
  outline: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information {
  width: 100%;
  border-radius: 3px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item {
  padding: 0px 20px;
  zoom: 1;
  background: #F7F7F7;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:before, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:after {
  content: "";
  display: table;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:after {
  clear: both;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:first-child {
  border-top: none;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.next-bid {
  background-color: #F7F7F7;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.next-bid .title {
  color: #982065;
  font-weight: 600;
  font-size: 16px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p {
  font-weight: 600;
  font-size: 16px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title {
  color: #982065;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title.highest_bid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title.won_bid {
  color: #00998B;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item .title {
  font-weight: normal;
  font-size: 14px;
  color: #0D0D0D;
  float: left;
  margin-bottom: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item .value {
  float: right;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  text-align: center;
  float: none;
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title {
  padding-bottom: 5px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages {
  float: left;
  width: 70%;
  margin-left: 30%;
  margin-top: 10px;
  padding-left: 15px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message {
  width: 100%;
  float: left;
  padding: 10px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message .title {
  font-weight: bold;
  font-size: 16px;
  color: white;
  padding-bottom: 10px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message .text {
  color: white;
  font-weight: normal;
  font-size: 15px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message .text > strong {
  color: white;
  font-weight: normal;
  font-weight: bold;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message.type-winning, .com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message.type-won {
  background-color: #41a940;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message.type-outbid, .com_timed_auction .main-section .auction-content .view-list .auction-lot .bidding-messages .message.type-lost {
  background-color: #c1272d;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay {
  width: 100%;
  position: absolute;
  top: -300px;
  pointer-events: none;
  left: 0;
  z-index: -100;
  background-color: #fff;
  z-index: 10;
  padding: 40px 15px;
  opacity: 0;
  border: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay.loginActive {
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: inherit;
  z-index: 60;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay input {
  width: 100%;
  min-height: auto;
  height: auto;
  padding: 2px 5px;
  margin: 0 0 10px 0;
  box-shadow: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #efefef;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .login-form {
  width: 100%;
  height: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .remember-me #rememberme {
  width: 12%;
  float: left;
  margin-top: 4px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .remember-me label {
  width: 88%;
  float: left;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .forgot-password-link {
  float: left;
  width: 100%;
  margin-top: 8px;
  font-size: 14px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable {
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable h3 {
  display: none;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form {
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form .add-on, .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form .icon-arrow-right {
  display: none;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form .input-prepend {
  width: 100%;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember input {
  width: 20px;
  margin-top: 3px;
  height: 30px;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember input, .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember label {
  display: inline-block;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form .unstyled li {
  text-align: center;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .moduletable form .unstyled li:nth-child(2) {
  display: none;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .primary-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .remove-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .remove-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .remove-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .bidup-button, body.view-timed.layout-catalogue #bidding_timed .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .btn-submit, .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .bidup-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .remove-button, .com_timed_auction .main-section .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .remove-button {
  margin-top: 5px;
  margin-bottom: 0;
}
.com_timed_auction .main-section .auction-content .view-list .auction-lot .loginClose {
  right: 10px;
  position: absolute;
  top: 10px;
  color: #333;
  cursor: pointer;
  color: #982065;
}

.com_bidding.view-commission.layout-catalogue #bidModal,
.com_bidding.view-commission.layout-catalogue #cancelBidModal,
.com_bidding.view-commission.layout-details #bidModal,
.com_bidding.view-commission.layout-details #cancelBidModal,
.com_bidding.view-timed.layout-catalogue #bidModal,
.com_bidding.view-timed.layout-catalogue #cancelBidModal,
.com_bidding.view-timed.layout-details #bidModal,
.com_bidding.view-timed.layout-details #cancelBidModal,
.com_advsearch.view-results #bidModal,
.com_advsearch.view-results #cancelBidModal,
.com_account.view-my_bids #bidModal,
.com_account.view-my_bids #cancelBidModal {
  background: rgba(10, 13, 39, 0.75);
}
.com_bidding.view-commission.layout-catalogue #bidModal button,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button,
.com_bidding.view-commission.layout-details #bidModal button,
.com_bidding.view-commission.layout-details #cancelBidModal button,
.com_bidding.view-timed.layout-catalogue #bidModal button,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button,
.com_bidding.view-timed.layout-details #bidModal button,
.com_bidding.view-timed.layout-details #cancelBidModal button,
.com_advsearch.view-results #bidModal button,
.com_advsearch.view-results #cancelBidModal button,
.com_account.view-my_bids #bidModal button,
.com_account.view-my_bids #cancelBidModal button {
  transition: 200ms ease;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.close,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.close,
.com_bidding.view-commission.layout-details #bidModal button.close,
.com_bidding.view-commission.layout-details #cancelBidModal button.close,
.com_bidding.view-timed.layout-catalogue #bidModal button.close,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.close,
.com_bidding.view-timed.layout-details #bidModal button.close,
.com_bidding.view-timed.layout-details #cancelBidModal button.close,
.com_advsearch.view-results #bidModal button.close,
.com_advsearch.view-results #cancelBidModal button.close,
.com_account.view-my_bids #bidModal button.close,
.com_account.view-my_bids #cancelBidModal button.close {
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  z-index: 999;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.close_modal,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.close_modal,
.com_bidding.view-commission.layout-details #bidModal button.close_modal,
.com_bidding.view-commission.layout-details #cancelBidModal button.close_modal,
.com_bidding.view-timed.layout-catalogue #bidModal button.close_modal,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.close_modal,
.com_bidding.view-timed.layout-details #bidModal button.close_modal,
.com_bidding.view-timed.layout-details #cancelBidModal button.close_modal,
.com_advsearch.view-results #bidModal button.close_modal,
.com_advsearch.view-results #cancelBidModal button.close_modal,
.com_account.view-my_bids #bidModal button.close_modal,
.com_account.view-my_bids #cancelBidModal button.close_modal {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0px;
  zoom: 1;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.close_modal:hover,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.close_modal:hover,
.com_bidding.view-commission.layout-details #bidModal button.close_modal:hover,
.com_bidding.view-commission.layout-details #cancelBidModal button.close_modal:hover,
.com_bidding.view-timed.layout-catalogue #bidModal button.close_modal:hover,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.close_modal:hover,
.com_bidding.view-timed.layout-details #bidModal button.close_modal:hover,
.com_bidding.view-timed.layout-details #cancelBidModal button.close_modal:hover,
.com_advsearch.view-results #bidModal button.close_modal:hover,
.com_advsearch.view-results #cancelBidModal button.close_modal:hover,
.com_account.view-my_bids #bidModal button.close_modal:hover,
.com_account.view-my_bids #cancelBidModal button.close_modal:hover {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  opacity: 1;
  zoom: 1.1;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog,
.com_advsearch.view-results #bidModal .modal-dialog,
.com_advsearch.view-results #cancelBidModal .modal-dialog,
.com_account.view-my_bids #bidModal .modal-dialog,
.com_account.view-my_bids #cancelBidModal .modal-dialog {
  max-width: 440px;
  pointer-events: all;
  display: flex;
  justify-content: center;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content {
  background: #FBF8F8;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body h3,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body h3,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body h3,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body h3,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body h3 {
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 28px;
  color: #0B0A1D;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body p,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body p,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body p,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body p,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body p {
  font-size: 14px;
  color: #0B0A1D;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper {
  display: flex;
  flex-direction: column;
  background: white;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper img,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper img {
  width: -webkit-fill-available;
  max-height: 80px;
  object-fit: contain;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details-right a {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-flex;
  background: #982065;
  padding: 12px 30px;
  margin-top: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details {
  padding: 0;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p {
  margin-bottom: 0;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-id {
  color: #3C3C3B;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.auction-title {
  font-family: "Georgia", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: #0B0A1D;
  margin-bottom: 10px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlay_lot_number,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p#overlayLotNumber {
  color: #982065;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title {
  font-weight: 600;
  color: #3C3C3B;
  display: inline-flex;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .auction-wrapper .auction-details p.your-bid-title span {
  color: #00570D;
  padding-left: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .bidHeader.selected {
  background: #F6F4F4;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper {
  border: 1px solid #F7F7F7;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h5 {
  font-weight: 600;
  font-size: 14px;
  color: #535353;
  font-family: "Georgia", sans-serif;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label {
  font-weight: 600;
  background: #F7F7F7;
  border: 1px solid #D8D8D8;
  padding: 10px 15px;
  height: 44px;
  font-size: 16px;
  color: #982065;
  display: inline-flex;
  float: left;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper label.field-error {
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: red;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid {
  height: 44px;
  width: 52%;
  border: 1px solid #D8D8D8;
  margin-left: -1px;
  padding-left: 15px;
  float: left;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid:focus-visible {
  box-shadow: none;
  outline: none;
}
@media (max-width: 576px) {
  .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid {
    width: 80%;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input#written_bid.field-error {
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: red;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label {
  font-weight: 400;
  font-size: 12px;
  color: #535353;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-bid-label {
  font-weight: 600;
  background: #F7F7F7;
  border: 1px solid #D8D8D8;
  padding: 10px 15px;
  height: 44px;
  font-size: 16px;
  color: #982065;
  display: inline-flex;
  float: left;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.field-error {
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: red;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper label.phone-info {
  text-transform: none;
  letter-spacing: normal;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid {
  height: 45px;
  width: 52%;
  border: 1px solid #D8D8D8;
  margin-left: -2px;
  padding-left: 15px;
  float: left;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid:focus-visible {
  box-shadow: none;
  outline: none;
}
@media (max-width: 576px) {
  .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid {
    width: 80%;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#telephone_bid.field-error {
  border-width: 1px 1px 1px 0px;
  border-style: solid;
  border-color: red;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid {
  display: inline-flex;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin: 0px;
  outline: 0px none;
  height: 44px;
  padding: 0px 8px;
  transition: all ease-in-out 0.2s;
  margin-left: -1px;
  border: 1px solid #D8D8D8;
  float: left;
}
@media (max-width: 575.98px) {
  .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#cover_bid {
    width: 85%;
    float: left;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input#alt-phone {
  border: 1px solid #D8D8D8;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid {
  width: 100%;
  border: 1px solid #D8D8D8;
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  padding: 8px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper textarea#message-bid::placeholder {
  opacity: 0.6;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h5 {
  font-size: 12px;
  color: #535353;
  letter-spacing: 1px;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper {
  border: 1px solid #F7F7F7;
}
@media (max-width: 575.98px) {
  .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper .bidHeader,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper .bidHeader {
    display: flex;
    align-items: center;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4 {
  font-family: "Georgia", sans-serif;
  color: #0B0A1D;
  font-size: 20px;
  line-height: 20px;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper h4,
  .com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper h4 {
    width: 85%;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p {
  color: #4D4D4D;
  font-size: 14px;
  font-weight: 500;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.text-danger,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper p.error,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.text-danger,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper p.error {
  color: #EB5757;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox], .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox],
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox],
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] {
  margin-right: 7px;
  border: 1px solid #D3D2D3;
  border-radius: 0;
  width: 21px;
  height: 21px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked {
  background-color: #FBF8F8;
  border: 1px solid #939393;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox]:checked::after,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox]:checked::after {
  content: "";
  background: url("../images/icons/filter-checked-checkbox-icon.svg") no-repeat;
  background-size: contain;
  width: 13px;
  height: 21px;
  display: inline-flex;
  color: white;
  position: relative;
  background-position-y: center;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label, .com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .absenteeBid_wrapper input[type=checkbox] + label,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right .telephoneBid_wrapper input[type=checkbox] + label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #3C3C3B;
}
.com_bidding.view-commission.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-commission.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-commission.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-timed.layout-catalogue #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_bidding.view-timed.layout-details #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_advsearch.view-results #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_advsearch.view-results #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_account.view-my_bids #bidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper,
.com_account.view-my_bids #cancelBidModal .modal-dialog .modal-content .modal-body .bidding-panel-right #cancel_absenteeBid_wrapper {
  border: 1px solid #982065;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.btn,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn,
.com_bidding.view-commission.layout-details #bidModal button.btn,
.com_bidding.view-commission.layout-details #cancelBidModal button.btn,
.com_bidding.view-timed.layout-catalogue #bidModal button.btn,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn,
.com_bidding.view-timed.layout-details #bidModal button.btn,
.com_bidding.view-timed.layout-details #cancelBidModal button.btn,
.com_advsearch.view-results #bidModal button.btn,
.com_advsearch.view-results #cancelBidModal button.btn,
.com_account.view-my_bids #bidModal button.btn,
.com_account.view-my_bids #cancelBidModal button.btn {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 43px;
  width: auto;
}
@media (max-width: 575.98px) {
  .com_bidding.view-commission.layout-catalogue #bidModal button.btn,
  .com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn,
  .com_bidding.view-commission.layout-details #bidModal button.btn,
  .com_bidding.view-commission.layout-details #cancelBidModal button.btn,
  .com_bidding.view-timed.layout-catalogue #bidModal button.btn,
  .com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn,
  .com_bidding.view-timed.layout-details #bidModal button.btn,
  .com_bidding.view-timed.layout-details #cancelBidModal button.btn,
  .com_advsearch.view-results #bidModal button.btn,
  .com_advsearch.view-results #cancelBidModal button.btn,
  .com_account.view-my_bids #bidModal button.btn,
  .com_account.view-my_bids #cancelBidModal button.btn {
    width: 100%;
  }
}
.com_bidding.view-commission.layout-catalogue #bidModal button.btn.btn-bordered,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn.btn-bordered,
.com_bidding.view-commission.layout-details #bidModal button.btn.btn-bordered,
.com_bidding.view-commission.layout-details #cancelBidModal button.btn.btn-bordered,
.com_bidding.view-timed.layout-catalogue #bidModal button.btn.btn-bordered,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn.btn-bordered,
.com_bidding.view-timed.layout-details #bidModal button.btn.btn-bordered,
.com_bidding.view-timed.layout-details #cancelBidModal button.btn.btn-bordered,
.com_advsearch.view-results #bidModal button.btn.btn-bordered,
.com_advsearch.view-results #cancelBidModal button.btn.btn-bordered,
.com_account.view-my_bids #bidModal button.btn.btn-bordered,
.com_account.view-my_bids #cancelBidModal button.btn.btn-bordered {
  min-width: 100px;
  border: 1px solid #6D6D6D;
  font-size: 12px;
  line-height: 38px;
  min-height: 40px;
  padding: 0 32px;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.btn.pink,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn.pink,
.com_bidding.view-commission.layout-details #bidModal button.btn.pink,
.com_bidding.view-commission.layout-details #cancelBidModal button.btn.pink,
.com_bidding.view-timed.layout-catalogue #bidModal button.btn.pink,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn.pink,
.com_bidding.view-timed.layout-details #bidModal button.btn.pink,
.com_bidding.view-timed.layout-details #cancelBidModal button.btn.pink,
.com_advsearch.view-results #bidModal button.btn.pink,
.com_advsearch.view-results #cancelBidModal button.btn.pink,
.com_account.view-my_bids #bidModal button.btn.pink,
.com_account.view-my_bids #cancelBidModal button.btn.pink {
  min-width: 120px;
  border: 1px solid #982065;
  height: 44px;
  max-height: 44px;
  line-height: 100%;
  border-radius: 5px;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.btn.pink:hover,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn.pink:hover,
.com_bidding.view-commission.layout-details #bidModal button.btn.pink:hover,
.com_bidding.view-commission.layout-details #cancelBidModal button.btn.pink:hover,
.com_bidding.view-timed.layout-catalogue #bidModal button.btn.pink:hover,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn.pink:hover,
.com_bidding.view-timed.layout-details #bidModal button.btn.pink:hover,
.com_bidding.view-timed.layout-details #cancelBidModal button.btn.pink:hover,
.com_advsearch.view-results #bidModal button.btn.pink:hover,
.com_advsearch.view-results #cancelBidModal button.btn.pink:hover,
.com_account.view-my_bids #bidModal button.btn.pink:hover,
.com_account.view-my_bids #cancelBidModal button.btn.pink:hover {
  background: #578B45;
  border-color: #578B45;
  color: #fff;
}
.com_bidding.view-commission.layout-catalogue #bidModal button.btn:hover,
.com_bidding.view-commission.layout-catalogue #cancelBidModal button.btn:hover,
.com_bidding.view-commission.layout-details #bidModal button.btn:hover,
.com_bidding.view-commission.layout-details #cancelBidModal button.btn:hover,
.com_bidding.view-timed.layout-catalogue #bidModal button.btn:hover,
.com_bidding.view-timed.layout-catalogue #cancelBidModal button.btn:hover,
.com_bidding.view-timed.layout-details #bidModal button.btn:hover,
.com_bidding.view-timed.layout-details #cancelBidModal button.btn:hover,
.com_advsearch.view-results #bidModal button.btn:hover,
.com_advsearch.view-results #cancelBidModal button.btn:hover,
.com_account.view-my_bids #bidModal button.btn:hover,
.com_account.view-my_bids #cancelBidModal button.btn:hover {
  background: #982065;
  border-color: #982065;
  color: #fff;
}
.com_bidding.view-commission.layout-catalogue #bidPlacedModal button.close,
.com_bidding.view-commission.layout-details #bidPlacedModal button.close,
.com_bidding.view-timed.layout-catalogue #bidPlacedModal button.close,
.com_bidding.view-timed.layout-details #bidPlacedModal button.close,
.com_advsearch.view-results #bidPlacedModal button.close,
.com_account.view-my_bids #bidPlacedModal button.close {
  top: 20px;
  right: 20px;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal,
.com_bidding.view-commission.layout-details #reduceBidModal,
.com_bidding.view-timed.layout-catalogue #reduceBidModal,
.com_bidding.view-timed.layout-details #reduceBidModal,
.com_advsearch.view-results #reduceBidModal,
.com_account.view-my_bids #reduceBidModal {
  background: rgba(10, 13, 39, 0.75);
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal button,
.com_bidding.view-commission.layout-details #reduceBidModal button,
.com_bidding.view-timed.layout-catalogue #reduceBidModal button,
.com_bidding.view-timed.layout-details #reduceBidModal button,
.com_advsearch.view-results #reduceBidModal button,
.com_account.view-my_bids #reduceBidModal button {
  transition: 200ms ease;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal button.close,
.com_bidding.view-commission.layout-details #reduceBidModal button.close,
.com_bidding.view-timed.layout-catalogue #reduceBidModal button.close,
.com_bidding.view-timed.layout-details #reduceBidModal button.close,
.com_advsearch.view-results #reduceBidModal button.close,
.com_account.view-my_bids #reduceBidModal button.close {
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  z-index: 999;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal button.closeReduceModal,
.com_bidding.view-commission.layout-details #reduceBidModal button.closeReduceModal,
.com_bidding.view-timed.layout-catalogue #reduceBidModal button.closeReduceModal,
.com_bidding.view-timed.layout-details #reduceBidModal button.closeReduceModal,
.com_advsearch.view-results #reduceBidModal button.closeReduceModal,
.com_account.view-my_bids #reduceBidModal button.closeReduceModal {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0px;
  zoom: 1;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal button.closeReduceModal:hover,
.com_bidding.view-commission.layout-details #reduceBidModal button.closeReduceModal:hover,
.com_bidding.view-timed.layout-catalogue #reduceBidModal button.closeReduceModal:hover,
.com_bidding.view-timed.layout-details #reduceBidModal button.closeReduceModal:hover,
.com_advsearch.view-results #reduceBidModal button.closeReduceModal:hover,
.com_account.view-my_bids #reduceBidModal button.closeReduceModal:hover {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  opacity: 1;
  zoom: 1.1;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog,
.com_advsearch.view-results #reduceBidModal .modal-dialog,
.com_account.view-my_bids #reduceBidModal .modal-dialog {
  max-width: 440px;
  pointer-events: all;
  display: flex;
  justify-content: center;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content {
  background: #FBF8F8;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body h3,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body h3,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content .modal-body h3,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content .modal-body h3 {
  font-weight: normal;
  font-size: 16px;
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content .modal-body p,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content .modal-body p {
  color: #0B0A1D;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayLotNumber {
  color: #982065;
  font-weight: 700;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content .modal-body p#red_overlayBid {
  color: #982065;
  font-size: 16px;
  font-family: "Arial", serif;
}
.com_bidding.view-commission.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-commission.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-catalogue #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_bidding.view-timed.layout-details #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_advsearch.view-results #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper,
.com_account.view-my_bids #reduceBidModal .modal-dialog .modal-content .modal-body .auction-wrapper {
  display: flex;
  flex-direction: column;
  background: white;
}

body.com_bidding.view-commission.layout-catalogue .catalogue-view-container #mobile-pagination-top a.btn,
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container #mobile-pagination a.btn {
  margin-left: 10px;
  padding: 5px;
  width: 115px;
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container #mobile-pagination-top a.btn:first-child,
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container #mobile-pagination a.btn:first-child {
  margin-left: 0;
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .auction-filters {
  position: absolute;
  left: -300px;
  width: 300px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .auction-filters {
    top: inherit;
    bottom: 0;
    height: 50vh;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 576px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .auction-filters {
    height: 100vh;
    top: 0;
    border-top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .auction-filters {
    width: 100%;
    position: absolute;
    left: -300px;
    width: 300px;
    height: 100vh;
    top: 50px;
    border-top: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler {
  display: none;
  margin: 0;
  z-index: 90;
  background-color: white;
  padding: 10px;
  font-size: 20px;
  border-top: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler {
    display: block;
    top: 50vh;
    left: 0;
    position: fixed;
  }
}
@media (min-width: 576px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler {
    display: block;
    top: 22%;
    left: 0;
    position: fixed;
  }
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler:hover {
    cursor: pointer;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler {
    display: block;
    position: fixed;
    left: 0;
    top: 22%;
    background-color: white;
    padding: 10px;
    font-size: 20px;
    border-top: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler .fa-sliders,
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler .fa-times {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  color: #982065;
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filter-toggler .fa-sliders.fa-times::before {
  content: "\f00d";
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened {
  left: 0;
  position: fixed;
  background-color: #fff;
  border-right: 1px solid #e3e3e3;
  padding: 15px;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened.filter-toggler {
  left: 299px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened {
    border-top: 2px solid #e3e3e3;
  }
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened .filters-wrapper {
    margin-top: 70px;
  }
}
@media (min-width: 576px) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened .filters-wrapper {
    margin-top: 165px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.com_bidding.view-commission.layout-catalogue .catalogue-view-container .filters_opened.filter-toggler {
    left: 299px;
  }
}

/*================================================================================
$ HIGHLIGHT SECTIONS
================================================================================*/
.nav.nav-layout-headers {
  border-bottom: none;
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
  white-space: nowrap;
  overflow-x: hidden;
}
.nav.nav-layout-headers:hover {
  overflow-x: auto;
}
.nav.nav-layout-headers:hover::-webkit-scrollbar {
  width: 10px;
}
.nav.nav-layout-headers:hover::-webkit-scrollbar:horizontal {
  height: 7px;
}
.nav.nav-layout-headers:hover::-webkit-scrollbar-track, .nav.nav-layout-headers:hover::-webkit-scrollbar-track:horizontal {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.nav.nav-layout-headers:hover::-webkit-scrollbar-thumb, .nav.nav-layout-headers:hover::-webkit-scrollbar-thumb:horizontal {
  background-color: #939393;
  outline: 1px solid transparent;
}

.os-scrollbar-track {
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  max-width: 100%;
  margin: 0;
}
.os-scrollbar-track::before {
  position: absolute;
  inset: 0;
  height: 1px;
  margin: auto;
  background-color: #dee2e6;
  content: "";
}
.os-scrollbar-track .os-scrollbar-handle {
  background-color: #982065 !important;
  border-radius: 0 !important;
  cursor: grab;
  transition: background-color 0.3s;
}
.os-scrollbar-track .os-scrollbar-handle.active {
  cursor: grabbing;
}

#nav-layout-headers {
  width: 100%;
  height: 70px;
  margin-bottom: 20px;
}

.left-arrow-nav-layout-headers {
  position: absolute;
  left: -40px;
  bottom: 3px;
}
.left-arrow-nav-layout-headers:hover {
  transform: scale(1.2);
}
.left-arrow-nav-layout-headers .ss-angle-left {
  font-size: 22px;
}

.right-arrow-nav-layout-headers {
  position: absolute;
  right: -30px;
  bottom: 3px;
}
.right-arrow-nav-layout-headers:hover {
  transform: scale(1.2);
}
.right-arrow-nav-layout-headers .ss-angle-right {
  font-size: 22px;
}

@media screen and (max-width: 799px) {
  body.view-timed.layout-catalogue #bidding_timed {
    padding: 20px 30px;
  }
}
@media (max-width: 575.98px) {
  body.view-timed.layout-catalogue #bidding_timed {
    padding: 0 30px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .container-fluid, body.view-timed.layout-catalogue #bidding_timed .container-sm, body.view-timed.layout-catalogue #bidding_timed .container-md, body.view-timed.layout-catalogue #bidding_timed .container-lg, body.view-timed.layout-catalogue #bidding_timed .container-xl, body.view-timed.layout-catalogue #bidding_timed .container-xxl {
  background: #FBF8F8;
  box-shadow: none;
}
body.view-timed.layout-catalogue #bidding_timed .header {
  overflow: auto;
}
body.view-timed.layout-catalogue #bidding_timed .header .auction-name .title {
  color: #982065;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-left,
body.view-timed.layout-catalogue #bidding_timed .header .header-right {
  float: left;
}
@media screen and (max-width: 799px) {
  body.view-timed.layout-catalogue #bidding_timed .header .header-left,
  body.view-timed.layout-catalogue #bidding_timed .header .header-right {
    width: 100%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .header .header-left p,
body.view-timed.layout-catalogue #bidding_timed .header .header-right p {
  font-size: 16px;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-left {
  padding-right: 100px;
  width: 70%;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-left.auction-description .content p {
  color: #4d4d4d;
  font-size: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-right {
  width: 30%;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-right.viewing-times .heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .header .header-right.viewing-times .content p {
  color: #4d4d4d;
  font-size: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters {
  float: left;
  width: 25%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 300px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-filters {
    border-top: 0;
    height: 100vh;
    left: -300px;
    position: absolute;
    top: 0;
    width: 300px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.view-timed.layout-catalogue #bidding_timed .auction-filters {
    border-top: 0;
    height: 100vh;
    left: -300px;
    position: absolute;
    top: 50px;
    width: 100%;
    width: 300px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-filtersclear {
  float: left;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-filtersclear .btn-clearfilters {
  background-color: #c1272d;
  border: 1px solid #c1272d;
  border-radius: 3px;
  color: white;
  float: left;
  font-family: "Georgia", sans-serif;
  font-size: 15px;
  font-weight: normal;
  padding: 6px 20px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-filtersclear .btn-clearfilters:hover {
  background-color: transparent;
  color: #c1272d;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range-content,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby-content,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-bidsbasket-content,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-bids-basket,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 3px;
  margin-bottom: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search .auction-filter-header,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-bids-basket .auction-filter-header,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-filter-header,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby .auction-filter-header,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency .auction-filter-header,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories .auction-filter-header {
  cursor: pointer;
  padding: 10px;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search .auction-filter-header .fa-minus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-bids-basket .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-bids-basket .auction-filter-header .fa-minus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-filter-header .fa-minus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby .auction-filter-header .fa-minus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency .auction-filter-header .fa-minus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories .auction-filter-header .fa-plus,
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories .auction-filter-header .fa-minus {
  font-size: 12px;
  padding-top: 4px;
  position: absolute;
  right: 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .lots-per-per {
  float: left;
  margin-bottom: 15px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .lots-per-per > label {
  float: left;
  font-size: 16px;
  padding-right: 10px;
  padding-top: 4px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .lots-per-per > select {
  border: 1px solid;
  border-radius: 2px;
  float: left;
  font-size: 16px;
  width: auto;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content.filters-opened {
  padding: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content .vue-slider-tooltip {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content .estimate-information .estimate-text {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content #vue-estimate-slider {
  border: 1px solid #e3e3e3;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content #vue-estimate-slider .ui-slider-range {
  background-color: #41a940;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-range .auction-range-content #vue-estimate-slider .ui-slider-handle {
  background-color: white;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .filters-opened {
  border-top: 1px solid #eee;
  height: auto;
  opacity: 1;
  padding: 10px 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content input[type=text] {
  margin-bottom: 0;
  margin-right: 10px;
  min-height: 25px;
  text-indent: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content input[type=submit] {
  background-color: #982065;
  border: 0;
  border-radius: 0;
  color: white;
  float: left;
  font-size: 16px;
  margin: 0;
  min-height: 25px;
  padding: 0;
  width: 20%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .btn-submit {
  display: inline-block;
  margin-top: 7px;
  padding: 3px 25px;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder {
  zoom: 1;
  float: left;
  list-style: none;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder:before, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder:after {
  content: "";
  display: table;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder:after {
  clear: both;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item {
  float: left;
  padding: 8px 0;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .preview-icon {
  float: left;
  width: 20%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .preview-icon > img {
  max-width: 50px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information {
  float: left;
  width: 80%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .lot-name {
  color: #3C3C3B;
  font-family: "Georgia", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 26px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder {
  color: #848484;
  font-size: 14px;
  font-weight: bold;
  zoom: 1;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder:before, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder:after {
  content: "";
  display: table;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder:after {
  clear: both;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder > span {
  float: left;
  margin: 0;
  padding: 0;
  width: auto;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .results-holder .result-item .information .estimate-holder > span.divider {
  padding: 0 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list {
  zoom: 1;
  list-style: none;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list:before, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list:after {
  content: "";
  display: table;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list:after {
  clear: both;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list li {
  cursor: pointer;
  float: left;
  font-size: 16px;
  padding: 5px;
  width: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list li:hover, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-categories-content .categories-list li.active {
  background-color: #7ca2ab;
  color: #fff;
  padding-left: 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby-content {
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby-content .view-box {
  align-items: center;
  cursor: pointer;
  display: flex;
  float: left;
  justify-content: flex-start;
  width: 50%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-viewby-content .view-box .view-img {
  padding: 10px;
  width: 30%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content {
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items {
  list-style: none;
  zoom: 1;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items:before, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items:after {
  content: "";
  display: table;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items:after {
  clear: both;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items .currency-item {
  color: #a5a5a5;
  cursor: pointer;
  float: left;
  font-size: 14px;
  font-weight: normal;
  font-weight: bold;
  margin-bottom: 5px;
  width: 25%;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items .currency-item.active, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-currency-content .currency-items .currency-item:hover {
  color: #4d4d4d;
}
body.view-timed.layout-catalogue #bidding_timed .filter-toggler {
  display: none;
  margin: 0;
  z-index: 90;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (min-width: 300px) {
  body.view-timed.layout-catalogue #bidding_timed .filter-toggler {
    background-color: white;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    display: block;
    font-size: 20px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 22%;
  }
  body.view-timed.layout-catalogue #bidding_timed .filter-toggler:hover {
    cursor: pointer;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.view-timed.layout-catalogue #bidding_timed .filter-toggler {
    background-color: white;
    border-bottom: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    display: block;
    font-size: 20px;
    left: 0;
    padding: 10px;
    position: fixed;
    top: 22%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .filter-toggler .fa-sliders,
body.view-timed.layout-catalogue #bidding_timed .filter-toggler .fa-times {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  color: #982065;
}
body.view-timed.layout-catalogue #bidding_timed .filter-toggler .fa-sliders.fa-times::before {
  content: "\f00d";
}
@media screen and (min-width: 300px) {
  body.view-timed.layout-catalogue #bidding_timed .filters_opened {
    background-color: #fff;
    border-right: 1px solid #e3e3e3;
    left: 0;
    padding: 15px;
    position: fixed;
    z-index: 100;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  body.view-timed.layout-catalogue #bidding_timed .filters_opened.filter-toggler {
    left: 299px;
  }
  body.view-timed.layout-catalogue #bidding_timed .filters_opened .filters-wrapper {
    margin-top: 165px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  body.view-timed.layout-catalogue #bidding_timed .filters_opened.filter-toggler {
    left: 299px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper {
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper a.icon-collapse {
  margin-top: -33px;
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item {
  background-color: white;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 15px;
  padding: 7px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px -2px #eee;
  -moz-box-shadow: 0 0 15px -2px #eee;
  -ms-box-shadow: 0 0 15px -2px #eee;
  -o-box-shadow: 0 0 15px -2px #eee;
  box-shadow: 0 0 15px -2px #eee;
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item > .text {
  color: #4d4d4d;
  font-size: 16px;
  font-weight: normal;
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item.active, body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item:hover {
  background-color: #e3e3e3;
}
body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item.active > .text, body.view-timed.layout-catalogue #bidding_timed .filters-wrapper .tabination .tab-item:hover > .text {
  font-weight: bold;
}
@media screen and (max-width: 799px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content {
    margin-left: 0;
    width: 100%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination {
  border-top: 1px solid #e3e3e3;
  margin: 0;
  padding: 0;
  padding: 3px 10px;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item {
  cursor: pointer;
  display: inline-block;
  min-width: 24px;
  outline: none;
  padding: 5px 5px;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item > i, body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item > p {
  color: #4d4d4d;
  font-size: 15px;
  outline: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item > i {
  position: relative;
  top: 2px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item.item-number {
  margin: 0 2px;
  position: relative;
  top: 1px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item.active, body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item:hover {
  background-color: #e3e3e3;
  outline: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item.active > i, body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item.active > p, body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item:hover > i, body.view-timed.layout-catalogue #bidding_timed .auction-content .pagination .paginate-item:hover > p {
  color: white;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .lots-list .auction-paused-col .auction-lot {
  border: none;
  display: block;
  float: none;
  margin: 20px auto 0;
  max-width: 400px;
  text-align: center;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .lots-list .auction-paused-col .auction-lot p {
  color: #BA2B2B;
  font-size: 16px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading {
  background-color: #982065;
  border-radius: 3px;
  float: left;
  margin-bottom: 0;
  padding: 8px;
  text-align: center;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading .icon-container {
  display: inline-block;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading .icon-container > svg {
  height: auto;
  position: relative;
  top: 2px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading .icon-container > svg path {
  stroke: white;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading .message {
  display: inline-block;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .lots-loading .message .text {
  color: white;
  font-size: 15px;
  font-weight: bold;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot {
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-direction: row;
  float: left;
  margin-bottom: 20px;
  padding-top: 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (max-width: 575.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot {
    flex-direction: column;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot.no-pagination {
  border-top: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .no-lots-text {
  color: red;
  font-size: 18px;
  font-weight: normal;
  padding-top: 15px;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image {
  float: left;
  position: relative;
  width: 22%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image img {
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image {
    width: 100%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image .wishlist-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  height: 35px;
  left: 15px;
  position: absolute;
  top: 10px;
  width: 35px;
  z-index: 999;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image .wishlist-wrapper a {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 16px;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image .wishlist-wrapper span.add-to-wishlist {
  background: url("../images/icons/watchlist-inactive.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image .wishlist-wrapper span.remove-wishlist {
  background: url("../images/icons/watchlist-active.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 13px;
  position: absolute;
  width: 14px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image p.bid-message__highest_bid {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-image p.bid-message__outbid_bid {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info {
  float: left;
  padding: 0 35px;
  position: relative;
  width: 49%;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info {
    padding-top: 15px;
    width: 100%;
  }
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info h2 {
    margin-top: 15px;
    text-align: center;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p {
  padding-bottom: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.lot-number {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid {
  color: #0B0A1D;
  font-size: 14px;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid span:nth-of-type(2), body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid span:nth-of-type(3) {
  font-family: "Arial", serif;
  font-size: 16px;
  font-weight: 700;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid.highest_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid.won_bid {
  color: #00998B;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.bid-message__highest_bid {
  color: #578B45;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.bid-message__outbid_bid {
  color: #C73154;
  color: #C73154;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid_info {
  color: #3C3C3B;
  font-size: 15px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info p.current-bid_info a {
  color: #982065;
  text-decoration: underline;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info h2 {
  -webkit-box-orient: vertical;
  color: #0B0A1D;
  display: -webkit-box;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: normal;
  -webkit-line-clamp: 2;
  line-height: 26px;
  margin-bottom: 10px;
  max-width: 100%;
  min-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .auction-estimate,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .maximum-bid {
  font-size: 14px;
  font-weight: 400;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .auction-estimate span,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .maximum-bid span {
  font-family: "Arial", serif;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .auction-estimate span:first-child,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .maximum-bid span:first-child {
  display: inline-flex;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .auction-estimate span:nth-of-type(2), body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .auction-estimate span:nth-of-type(3),
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .maximum-bid span:nth-of-type(2),
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .maximum-bid span:nth-of-type(3) {
  color: #0B0A1D;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .unfortunately-not-win-wrapper .unfortunately-not-win span {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .congratulations-you-won-wrapper .congratulations-you-won {
  line-height: 16px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .congratulations-you-won-wrapper .congratulations-you-won span {
  color: #00570D;
  font-size: 14px;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding {
  padding-top: 8px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .current-bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .starting-bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .full-details {
  font-weight: 700;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .current-bid span:first-child, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .starting-bid span:first-child, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid span:first-child, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .full-details span:first-child {
  display: inline-flex;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid span.max-bid-value {
  font-size: 14px;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid span.max-bid-value.isWinning {
  color: #00570D;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding .maximum-bid span.max-bid-value.isOutbid {
  color: #C73154;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details {
  align-items: center;
  color: #982065;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
@media (max-width: 576px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details {
    bottom: 30px;
    right: 30px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details::before {
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat transparent;
  content: "";
  display: inline-flex;
  height: 28px;
  margin-right: 10px;
  position: relative;
  width: 28px;
}
@media (max-width: 576px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details::before {
    background-size: contain;
    height: 39px;
    margin-right: 10px;
    width: 39px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details:hover::before {
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
}
@media (max-width: 576px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .timed-bidding a.view-details:hover::before {
    background-size: contain;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices {
  padding-right: 15px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices {
    top: 15px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices .notice-holder {
  display: inline-block;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-item {
  border: 1px solid #9e9e9e;
  border-radius: 3px;
  color: #9e9e9e;
  cursor: pointer;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin-left: 2px;
  padding: 1px 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-item:hover {
  -webkit-box-shadow: 0 0 5px 0 #b9b9b9;
  -moz-box-shadow: 0 0 5px 0 #b9b9b9;
  -ms-box-shadow: 0 0 5px 0 #b9b9b9;
  -o-box-shadow: 0 0 5px 0 #b9b9b9;
  box-shadow: 0 0 5px 0 #b9b9b9;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-message {
  background-color: white;
  border-radius: 5px;
  left: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: 20px;
  width: 200px;
  z-index: 9;
  -webkit-box-shadow: 0 0 10px 0 #e3e3e3;
  -moz-box-shadow: 0 0 10px 0 #e3e3e3;
  -ms-box-shadow: 0 0 10px 0 #e3e3e3;
  -o-box-shadow: 0 0 10px 0 #e3e3e3;
  box-shadow: 0 0 10px 0 #e3e3e3;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-info .notices .notice-holder .notice-message {
    left: inherit;
    right: 0;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions {
  align-items: center;
  float: left;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 29%;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions {
    margin: 15px 0 0 0;
    width: 100%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .btn-submit {
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .btn-submit {
    min-height: 40px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .wishlist-button {
  margin-bottom: 10px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .bid-box {
  display: flex;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-login {
  background-color: #982065;
  border: none;
  border-color: #982065;
  color: #fff;
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-login:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-login:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .auction-login:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .application-pending {
  background-color: #3E3E3E;
  border: none;
  border-color: #3E3E3E;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .application-pending:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .application-pending:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .application-pending:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .register-to-bid {
  background-color: #CB9E00;
  border: none;
  border-color: #CB9E00;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .register-to-bid:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .register-to-bid:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .register-to-bid:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-won_bid {
  background-color: #982065 !important;
  border: none;
  border-color: #982065 !important;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-highest_bid:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-won_bid:hover {
  color: inherit;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-another_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-outbid {
  background-color: #C73154 !important;
  border: none;
  border-color: #C73154 !important;
  color: #fff;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px;
  text-transform: uppercase;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-outbid:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-outbid:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-another_bid:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .btn-outbid:hover {
  background-color: #fff;
  color: #982065;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit {
  align-items: center;
  background-color: #982065;
  border-color: #982065;
  display: flex;
  flex: 1;
  font-family: "Work Sans", sans-serif;
  font-family: 12px;
  height: 45px;
  justify-content: center;
  letter-spacing: 2px;
  z-index: 10;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:focus, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:hover, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-submit:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button.btn-highest_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-highest_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-highest_bid.btn-submit {
  background-color: #578B45 !important;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .primary-button.btn-another_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-another_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .auction-actions .place-bid .btn-another_bid.btn-submit {
  background-color: #A60000 !important;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button {
  background-color: #00BCBC;
  border-color: #00BCBC;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .bidup-button:hover {
  background-color: #fff;
  color: #00BCBC;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button {
  background-color: #c1272d;
  border-color: #c1272d;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .remove-button:hover {
  background-color: #fff;
  color: #c1272d;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container {
  margin-bottom: 0;
  position: relative;
  width: 66%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .symbol {
  align-items: center;
  background-color: #e3e3e3;
  border-radius: 0;
  color: #000000;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  left: 0px;
  padding: 10px 18px;
  position: absolute;
  top: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .bid-amount {
  border: 1px solid #e3e3e3;
  border-radius: 0;
  box-shadow: none;
  color: #4d4d4d;
  display: block;
  font-size: 15px;
  font-weight: normal;
  height: 45px;
  padding: 7px;
  padding-left: 50px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .amount-container .bid-amount:focus {
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information {
  border-radius: 3px;
  margin-top: 10px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  zoom: 1;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:before, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:after {
  content: "";
  display: table;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:after {
  clear: both;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item:first-child {
  border-top: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.next-bid {
  box-shadow: none;
  display: flex;
  justify-content: center;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.next-bid .title {
  font-size: 16px;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.bidders {
  box-shadow: none;
  display: flex;
  justify-content: center;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p {
  font-size: 16px;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title {
  color: #982065;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title.highest_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.current-bid p.title.won_bid {
  color: #00998B;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item .title {
  color: #0D0D0D;
  float: left;
  margin-bottom: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time {
  margin-bottom: 10px;
  padding: 10px 15px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  float: none;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  color: #4D4D4D;
  font-size: 16px;
  font-weight: 700;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title {
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding-bottom: 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages {
  float: left;
  margin-left: 30%;
  margin-top: 10px;
  padding-left: 15px;
  width: 70%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message {
  float: left;
  padding: 10px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message .title {
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message .text {
  color: white;
  font-size: 15px;
  font-weight: normal;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message .text > strong {
  color: white;
  font-weight: normal;
  font-weight: bold;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message.type-winning, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message.type-won {
  background-color: #41a940;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message.type-outbid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .bidding-messages .message.type-lost {
  background-color: #c1272d;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay {
  align-items: center;
  background-color: #fff;
  border: 1px solid #efefef;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 0;
  opacity: 0;
  padding: 40px 15px;
  pointer-events: none;
  position: absolute;
  top: -300px;
  width: 100%;
  z-index: -100;
  z-index: 10;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay.loginActive {
  height: 100%;
  opacity: 1;
  pointer-events: inherit;
  top: 0;
  width: 100%;
  z-index: 60;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay input {
  border: 1px solid #efefef;
  box-shadow: none;
  font-size: 14px;
  height: auto;
  margin: 0 0 10px 0;
  min-height: auto;
  padding: 2px 5px;
  width: 100%;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .login-form {
  height: 100%;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .remember-me #rememberme {
  float: left;
  margin-top: 4px;
  width: 12%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .remember-me label {
  float: left;
  font-size: 14px;
  width: 88%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .forgot-password-link {
  float: left;
  font-size: 14px;
  margin-top: 8px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable h3 {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form .add-on, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form .icon-arrow-right {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form .input-prepend {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember input {
  height: 30px;
  margin-top: 3px;
  width: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember input, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form #form-login-remember label {
  display: inline-block;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form .unstyled li {
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .moduletable form .unstyled li:nth-child(2) {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-list .auction-lot .loginOverlay .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginOverlay .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .auction-actions .place-bid .loginOverlay .remove-button {
  margin-bottom: 0;
  margin-top: 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-list .auction-lot .loginClose {
  color: #982065;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid * {
  -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;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading {
  background-color: #982065;
  border-radius: 3px;
  display: flex;
  float: left;
  justify-content: center;
  margin-bottom: 0;
  padding: 8px;
  text-align: center;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading .icon-container {
  display: inline-flex;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading .icon-container > svg {
  height: auto;
  margin-right: 10px;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading .icon-container > svg path {
  stroke: white;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading .message {
  align-items: center;
  display: inline-flex;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .lots-loading .message .text {
  color: white;
  font-family: "Arial", serif;
  font-weight: bold;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
  display: grid;
  gap: 15px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1399.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1199.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 575.98px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block {
  padding: 0;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-1-2 {
  grid-area: span 1/span 2;
}
@media screen and (max-width: 449px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-1-2 {
    grid-area: span 1/span 1;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-2-1 {
  grid-area: span 2/span 1;
}
@media screen and (max-width: 449px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-2-1 {
    grid-area: span 1/span 1;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-2-2 {
  grid-area: span 2/span 2;
}
@media screen and (max-width: 449px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block.block-size-2-2 {
    grid-area: span 1/span 1;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock {
  height: 100%;
  padding: 0;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock img,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__content,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__content {
  background-color: rgba(12, 12, 12, 0.5);
  height: 100%;
  left: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
  left: 50%;
  max-width: 80%;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
    max-width: 82.5%;
  }
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails,
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails {
    max-width: 85%;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails p,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails p {
  color: #FFFFFF;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
  border-bottom: 1px solid #FFFFFF;
  display: block;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  line-height: 1.25;
  margin-bottom: 50px;
  padding-bottom: 12px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
    font-size: 40px;
    margin-bottom: 40px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-title,
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-title {
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__blockdetails .block-lots-length,
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__buttonblock__blockdetails .block-lots-length {
  margin-bottom: 0;
  text-transform: uppercase;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle {
  bottom: 30px;
  left: 50%;
  padding: 0 10px;
  position: absolute;
  text-align: center;
  width: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 991px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle {
    bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle {
    bottom: 20px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle p {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle p {
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .acupdate-block.acupdate-block .acupdate-block__infoblock__auctiontitle p {
    font-size: 16px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot {
  border: 1px solid #D2D2D2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .no-lots-text {
  color: red;
  font-size: 18px;
  font-weight: normal;
  padding-top: 15px;
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image {
  position: relative;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image img {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  max-height: 375px;
  max-width: 100%;
  min-height: 375px;
  object-fit: contain;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image .wishlist-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 40px;
  left: 15px;
  line-height: 40px;
  position: absolute;
  top: 10px;
  width: 40px;
  z-index: 9;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image .wishlist-wrapper a {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 19px;
  position: relative;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image .wishlist-wrapper span.add-to-wishlist {
  background: url("../images/icons/watchlist-inactive.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 18px;
  position: absolute;
  width: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image .wishlist-wrapper span.remove-wishlist {
  background: url("../images/icons/watchlist-active.svg") no-repeat;
  background-size: cover;
  display: inline-flex;
  height: 18px;
  position: absolute;
  width: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image p.bid-message {
  position: absolute;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image p.bid-message__highest_bid {
  bottom: 50px;
  color: #578B45;
  font-weight: 700;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image p.bid-message__highest_bid span {
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image p.bid-message__outbid_bid {
  bottom: 50px;
  color: #A60000;
  color: #C73154;
  font-weight: 700;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-image p.bid-message__outbid_bid span {
  background: #FFFFFF;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info {
  margin-bottom: auto;
  padding: 0;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info h2 {
  -webkit-box-orient: vertical;
  color: #0B0A1D;
  display: -webkit-box;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  -webkit-line-clamp: 2;
  line-height: 110%;
  margin: 5px 0;
  max-width: 100%;
  min-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p {
  margin: 5px 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.lot-number {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 110%;
  text-transform: uppercase;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.bid-message {
  order: 2;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.bid-message__highest_bid {
  color: #578B45;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.bid-message__highest_bid span.bid-message--message {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.bid-message__outbid_bid {
  color: #C73154;
  color: #C73154;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.bid-message__outbid_bid span.bid-message--message {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info p.next-min-bid {
  color: #982065;
  font-weight: 600;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .auction-estimate {
  font-weight: 400;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .lot-information {
  align-items: center;
  background: #FAF7F7;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .lot-information .lot-number {
  color: #982065;
  line-height: 100%;
  text-transform: uppercase;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .lot-information .timed-item p.value {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 100%;
  margin-top: 0;
  text-transform: uppercase;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .info-wrapper {
  padding: 10px 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-info .info-wrapper a {
  text-decoration: underline;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions {
  margin: 20px 0;
  padding: 0 20px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay {
  align-items: center;
  background-color: #fff;
  border: 1px solid #efefef;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 30px 15px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
  z-index: -10;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay.loginActive {
  height: 100%;
  opacity: 1;
  top: 0;
  width: 100%;
  z-index: 60;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay input {
  box-shadow: none;
  height: auto;
  height: 44px;
  margin: 0 0 10px 0;
  min-height: auto;
  padding: 5px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay input[type=checkbox] {
  width: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable h3 {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form .add-on, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form .icon-arrow-right {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form .input-prepend {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form #form-login-remember input {
  margin-top: 3px;
  width: 20px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form #form-login-remember input, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form #form-login-remember label {
  display: inline-block;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form .unstyled li {
  text-align: center;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .moduletable form .unstyled li:nth-child(2) {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .loginOverlay .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .loginOverlay .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .loginOverlay .btn-submit {
  margin-bottom: 0;
  margin-top: 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .loginClose {
  color: #982065;
  position: absolute;
  right: 10px;
  top: 10px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .btn-submit {
  background-color: #982065;
  border: none;
  border-color: #982065;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 20;
  z-index: 20;
}
@media screen and (max-width: 599px) {
  body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .btn-submit {
    min-height: 40px;
  }
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .primary-button.btn-highest_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-highest_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-highest_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-filters .auction-search-content .btn-highest_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .btn-highest_bid.btn-submit {
  background-color: #578B45 !important;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .primary-button.btn-another_bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-another_bid.remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-another_bid.bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-filters .auction-search-content .btn-another_bid.btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .btn-another_bid.btn-submit {
  background-color: #A60000 !important;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .bid-box {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .bid-box a.btn {
  align-items: center;
  height: 42px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-login {
  height: 42px;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-login:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-login:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .auction-login:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid {
  display: flex;
  order: 1;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .primary-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-submit {
  align-items: center;
  background-color: #982065;
  border-bottom-right-radius: 0;
  border-color: #982065;
  border-top-right-radius: 0;
  display: inline-flex;
  flex: 1;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  height: 44px;
  justify-content: center;
  letter-spacing: 2px;
  max-width: 100%;
  width: 110px;
  z-index: 10;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .primary-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-submit:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .primary-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:focus, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:focus, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-submit:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .primary-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:hover, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .auction-filters .auction-search-content .btn-submit:hover, body.view-timed.layout-catalogue #bidding_timed .auction-filters .auction-search-content .auction-content .view-grid .auction-lot .auction-actions .place-bid .btn-submit:hover {
  background-color: #982065;
  color: #fff;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button {
  background-color: #00BCBC;
  border-color: #00BCBC;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .bidup-button:hover {
  background-color: #fff;
  color: #00BCBC;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button {
  background-color: #c1272d;
  border-color: #c1272d;
  z-index: 20;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:active, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:focus {
  color: #fff;
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .remove-button:hover {
  background-color: #fff;
  color: #c1272d;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .amount-container {
  float: left;
  margin-bottom: 0;
  position: relative;
  width: 66%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .amount-container .symbol {
  align-items: center;
  background-color: #e3e3e3;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  color: #000000;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100%;
  left: 0px;
  padding: 10px 18px;
  position: absolute;
  top: 0px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .amount-container .bid-amount {
  border: 1px solid #e3e3e3;
  border-radius: 0;
  box-shadow: none;
  color: #4d4d4d;
  display: inline-flex;
  font-size: 15px;
  font-weight: bold;
  height: 30px;
  height: 44px;
  margin-left: 30px;
  padding: 7px;
  padding-left: 30px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .amount-container .bid-amount::placeholder {
  font-weight: normal;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .place-bid .amount-container .bid-amount:focus {
  outline: 0;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information {
  order: 3;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.next-bid, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.bidders {
  display: none;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.remaining-time {
  border-top: 1px solid #D2D2D2;
  margin-top: 10px;
  padding-top: 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title, body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  color: #982065;
  float: none;
  font-weight: 700;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.remaining-time .value {
  font-size: 14px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .timed-information .timed-item.remaining-time .title {
  font-size: 12px;
  letter-spacing: 1px;
  padding-bottom: 5px;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .full-details {
  margin-top: 7px;
  order: 4;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .auction-content .view-grid .auction-lot .auction-actions .full-details .btn {
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 201;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container {
  background-color: rgba(255, 255, 255, 0.9);
  left: 50%;
  max-width: 420px;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner {
  float: left;
  position: relative;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner span.close-overlay {
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  right: 0;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-title {
  float: left;
  padding-bottom: 20px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-title > h2 {
  font-size: 31px;
  font-weight: 400;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-content {
  float: left;
  padding-bottom: 20px;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-content > p {
  font-size: 16px;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-buttons {
  float: left;
  width: 100%;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-buttons > a {
  background-color: #2FB400;
  border: 1px solid #2FB400;
  color: #ffffff;
  float: left;
  font-size: 16px;
  padding: 8px 20px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body.view-timed.layout-catalogue #bidding_timed .terms-and-conditions-overlay .overlay-container .overlay-inner .overlay-buttons > a:hover {
  background-color: #ffffff;
  color: #2FB400;
}

.background-light-gray {
  background: #F7F7F7;
}

.layout-catalogue #bidding_timed .container {
  max-width: 1560px;
}
.layout-catalogue #bidding_timed .container .view-list {
  margin: 0 auto;
  max-width: 1200px;
}
.layout-catalogue #bidding_timed .container .auctionBreadCrumb {
  max-width: 1200px;
}
.layout-catalogue #bidding_timed .filters-panel {
  max-width: 100%;
}
.layout-catalogue #bidding_timed .filters-panel .auction-estimate-price #lotStatus label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .layout-catalogue #bidding_timed .filters-panel .auction-estimate-price #lotStatus label {
    letter-spacing: 0;
  }
}
.layout-catalogue #bidding_timed .filters-panel .auction-estimate-price #lotStatus input.form-check-input:checked {
  background-color: #1D2253;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.layout-catalogue #bidding_timed .filters-panel .auction-search .auction-search-content {
  height: 42px;
}
@media (max-width: 575.98px) {
  .layout-catalogue #bidding_timed .filters-panel .auction-estimate-price {
    margin: 10px 0;
  }
  .layout-catalogue #bidding_timed .filters-panel .auction-estimate-price #lotStatus .form-check {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .layout-catalogue #bidding_timed .filters-panel .sort-total-lots {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .layout-catalogue #bidding_timed .filters-panel .auction-search {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .layout-catalogue #bidding_timed .filters-panel .auction-search .auction-search-content {
    border-radius: 0;
    width: 100%;
  }
}
.layout-catalogue #bidding_timed .filters-panel .filters-toggler {
  gap: 10px;
  justify-content: center;
  max-width: 250px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .layout-catalogue #bidding_timed .filters-panel .filters-toggler {
    max-width: 100%;
  }
}
.layout-catalogue #bidding_timed .filters-panel .filters-toggler span {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 6.00085V4.00085M12 6.00085C10.8954 6.00085 10 6.89628 10 8.00085C10 9.10542 10.8954 10.0009 12 10.0009M12 6.00085C13.1046 6.00085 14 6.89628 14 8.00085C14 9.10542 13.1046 10.0009 12 10.0009M6 18.0009C7.10457 18.0009 8 17.1054 8 16.0009C8 14.8963 7.10457 14.0009 6 14.0009M6 18.0009C4.89543 18.0009 4 17.1054 4 16.0009C4 14.8963 4.89543 14.0009 6 14.0009M6 18.0009V20.0009M6 14.0009V4.00085M12 10.0009V20.0009M18 18.0009C19.1046 18.0009 20 17.1054 20 16.0009C20 14.8963 19.1046 14.0009 18 14.0009M18 18.0009C16.8954 18.0009 16 17.1054 16 16.0009C16 14.8963 16.8954 14.0009 18 14.0009M18 18.0009V20.0009M18 14.0009V4.00085" stroke="%238D1D5A" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: contain;
  height: 24px;
  height: 42px;
  width: 24px;
}
.layout-catalogue #bidding_timed .filters-panel .grid-shortcuts li span {
  border-radius: 0;
}
@media (max-width: 991.98px) {
  .layout-catalogue #bidding_timed .filters-panel .filters {
    justify-content: flex-end;
  }
}
.layout-catalogue #bidding_timed .filters-panel .filters .input-group {
  flex-wrap: nowrap;
  height: 42px;
  max-width: 290px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .layout-catalogue #bidding_timed .filters-panel .filters .input-group {
    max-width: 280px;
  }
}
@media (max-width: 767.98px) {
  .layout-catalogue #bidding_timed .filters-panel .filters .input-group {
    max-width: 100%;
    width: 100%;
  }
}
.layout-catalogue #bidding_timed .filters-panel .filters .input-group .input-group-text {
  background: #FFFFFF;
  border: 1px solid #0B0A1D;
  border-right: none;
}
.layout-catalogue #bidding_timed .filters-panel .filters select.lotNo {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FFFFFF;
  background-image: url("../images/icons/select-dropdown-arrow-timed.svg") !important;
  background-position: 101% center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-size: 42px !important;
  border: 1px solid #0B0A1D;
  color: #0B0A1D;
  font-size: 12px;
  font-weight: 600;
  height: 42px;
  margin-left: -2px;
  padding-left: 0;
  width: auto;
}
@media (max-width: 1199.98px) {
  .layout-catalogue #bidding_timed .filters-panel .filters select.lotNo {
    padding-right: 45px;
  }
}
.layout-catalogue #bidding_timed .filters-panel .filters select.lotNo:focus {
  box-shadow: none;
}
.layout-catalogue #bidding_timed .filters-panel .grid-shortcuts li.active .display-gridView,
.layout-catalogue #bidding_timed .filters-panel .grid-shortcuts li.active .display-listView {
  border: 1px solid #0B0A1D;
  border-radius: 0;
}
.layout-catalogue #bidding_timed .main-section .sort-show-limit select {
  display: inline-flex;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper {
  height: auto;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper .unfortunately-not-win-border {
  position: absolute;
  z-index: 9;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper .unfortunately-not-win-border .unfortunately-not-win span {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper .congratulations-you-won-border {
  background: #F7F7F7;
  position: absolute;
  z-index: 9;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper .congratulations-you-won-border .congratulations-you-won {
  line-height: 16px;
}
.layout-catalogue #bidding_timed .main-section .auction-content .auction-wrapper .congratulations-you-won-border .congratulations-you-won span {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: 600;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-grid .auction-wrapper .unfortunately-not-win-border {
  background-color: #A60000;
  bottom: 0;
  height: 13px;
  left: 0;
  width: 100%;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-grid .auction-wrapper .congratulations-you-won-border {
  background-color: #578B45;
  bottom: 0;
  height: 13px;
  left: 0;
  width: 100%;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-list .auction-wrapper .unfortunately-not-win-border {
  border-right: 13px solid #A60000;
  height: 100%;
  padding: 20px 0px;
  right: 0;
  top: 0;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-list .auction-wrapper .unfortunately-not-win-border .unfortunately-not-win span {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-list .auction-wrapper .congratulations-you-won-border {
  border-right: 13px solid #578B45;
  height: 100%;
  padding: 20px 0px;
  right: 0;
  top: 0;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-list .auction-wrapper .congratulations-you-won-border .congratulations-you-won {
  line-height: 16px;
}
.layout-catalogue #bidding_timed .main-section .auction-content .view-list .auction-wrapper .congratulations-you-won-border .congratulations-you-won span {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: 600;
}
.layout-catalogue #bidding_timed .main-section .auction-content .sort-total-lots h4 {
  font-size: 18px;
}
.layout-catalogue #bidding_timed .main-section .auction-content .filters select.lotNo {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FFFFFF;
  background-image: url("../../../images/icons/arrow-down.png") !important;
  background-position: 95% center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-size: 15px !important;
  color: #808080;
  font-size: 14px;
  margin-left: 0px;
  padding-left: 40px;
  padding-right: 55px;
  width: auto;
}

#termsConditions-modal.show {
  display: block;
  opacity: 1;
}
#termsConditions-modal .modal-content {
  background: #F7F7F7;
  padding: 60px 80px;
  width: 565px;
}
@media (max-width: 575.98px) {
  #termsConditions-modal .modal-content {
    padding: 10px 20px;
    width: 100%;
  }
}
#termsConditions-modal .modal-content .modal-header {
  border-bottom: 1px solid #3C3C3B;
}
#termsConditions-modal .modal-content .modal-header h5.modal-title {
  color: #3C3C3B;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
}
#termsConditions-modal .modal-content .modal-body p {
  color: #3C3C3B;
}
#termsConditions-modal .modal-content button.close {
  position: absolute;
  right: 30px;
  top: 30px;
}
#termsConditions-modal .modal-content hr.hr-margin30 {
  border-top: 1px solid #0B0A1D;
}
#termsConditions-modal input[type=checkbox] {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 1px solid #D3D2D3;
  border-radius: 0;
  display: inline-flex;
  font-size: 2em;
  height: 21px;
  justify-content: center;
  margin-right: 7px;
  position: relative;
  top: 5px;
  width: 21px;
}
#termsConditions-modal input[type=checkbox]:checked {
  border: 1px solid #982065;
}
#termsConditions-modal input[type=checkbox]:checked::after {
  background: url("../images/icons/filter-checked-checkbox-icon.svg") no-repeat;
  background-position-y: center;
  background-size: contain;
  color: white;
  content: "";
  display: inline-flex;
  height: 21px;
  position: relative;
  width: 15px;
}
#termsConditions-modal input[type=checkbox] + label {
  color: #3C3C3B;
  display: inline-flex;
  line-height: 16px;
  margin-bottom: 0;
  width: auto;
}
@media (max-width: 575.98px) {
  #termsConditions-modal input[type=checkbox] + label {
    width: 88%;
  }
}
#termsConditions-modal a.forgot-pass {
  color: #982065;
  display: inline-flex;
  float: right;
}

.btn.continue-button {
  background: #982065;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  height: 45px;
  letter-spacing: 0.1em;
  line-height: 14px;
  text-transform: uppercase;
  width: 280px;
}
.btn.cancel-button {
  background: #fff;
  border: 1px solid #982065;
  color: white;
  font-size: 12px;
  font-weight: 500;
  height: 45px;
  letter-spacing: 0.1em;
  line-height: 14px;
  text-transform: uppercase;
  width: 280px;
}

/* ====== CATALOGUE ====== */
/* ======
CATALOGUE
    - General
    - Lot Image
    - Modals
    - Future Lots
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.com_bidding.view-commission .container-fluid.main-container, body.com_bidding.view-commission .main-container.container-sm, body.com_bidding.view-commission .main-container.container-md, body.com_bidding.view-commission .main-container.container-lg, body.com_bidding.view-commission .main-container.container-xl, body.com_bidding.view-commission .main-container.container-xxl,
body.com_bidding.view-timed.layout-details .container-fluid.main-container,
body.com_bidding.view-timed.layout-details .main-container.container-sm,
body.com_bidding.view-timed.layout-details .main-container.container-md,
body.com_bidding.view-timed.layout-details .main-container.container-lg,
body.com_bidding.view-timed.layout-details .main-container.container-xl,
body.com_bidding.view-timed.layout-details .main-container.container-xxl {
  padding-left: 0;
  padding-right: 0;
}
body.com_bidding.view-commission .detail-view-container .container,
body.com_bidding.view-timed.layout-details .detail-view-container .container {
  border-bottom: none;
}
body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this,
body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this {
  max-width: 450px;
  border-radius: 5px;
}
@media (max-width: 767.98px) {
  body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this,
  body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this,
  body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this {
    text-align: center;
  }
}
body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this .sell-like-this,
body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this .sell-like-this {
  background: transparent;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  padding: 10px 20px;
}
body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this .sell-like-this:hover,
body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this .sell-like-this:hover {
  background: #982065;
  color: #FFFFFF;
}
body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this h3,
body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this h3 {
  font-family: "Georgia", sans-serif;
}
body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this a.find-more,
body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this a.find-more {
  color: #2D2D2D;
  text-decoration: none;
  padding-left: 70px;
  margin-top: 5px;
  float: left;
  font-family: "Georgia", sans-serif;
}
@media screen and (max-width: 599px) {
  body.com_bidding.view-commission .detail-view-container .container .sell-one-like-this a.find-more,
  body.com_bidding.view-timed.layout-details .detail-view-container .container .sell-one-like-this a.find-more {
    float: left;
    line-height: 14px;
    font-size: 14px;
    margin-top: 5px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 599px) {
  body.com_bidding.view-commission .detail-view-container .container .upcoming-lots-title h2,
  body.com_bidding.view-timed.layout-details .detail-view-container .container .upcoming-lots-title h2 {
    font-size: 32px;
  }
}
body.com_bidding.view-commission .detail-view-container .container a.lot-nav-left, body.com_bidding.view-commission .detail-view-container .container a.lot-nav-right,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-left,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-right {
  display: inline-flex;
  width: 41px;
  height: 41px;
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat transparent;
  background-size: cover;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission .detail-view-container .container a.lot-nav-left, body.com_bidding.view-commission .detail-view-container .container a.lot-nav-right,
  body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-left,
  body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-right {
    width: 31px;
    height: 31px;
  }
}
body.com_bidding.view-commission .detail-view-container .container a.lot-nav-left:hover, body.com_bidding.view-commission .detail-view-container .container a.lot-nav-right:hover,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-left:hover,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-right:hover {
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
  background-size: contain;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  width: 41px;
  height: 41px;
  background-size: contain;
}
body.com_bidding.view-commission .detail-view-container .container a.lot-nav-left,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.lot-nav-left {
  transform: rotate(180deg);
}
body.com_bidding.view-commission .detail-view-container .container a.more-btn,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.more-btn {
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat #fff;
  border-radius: 50%;
  background-size: contain;
  transition: 0.3s ease;
  display: flex;
  width: 42px;
  height: 42px;
}
body.com_bidding.view-commission .detail-view-container .container a.more-btn:hover,
body.com_bidding.view-timed.layout-details .detail-view-container .container a.more-btn:hover {
  transform: scale(1.15);
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
  background-size: contain;
}
body.com_bidding.view-commission .detail-view-container .container p.lot-no,
body.com_bidding.view-timed.layout-details .detail-view-container .container p.lot-no {
  font-size: 16px;
  color: #982065;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.com_bidding.view-commission .detail-view-container .container p.lot-no,
  body.com_bidding.view-timed.layout-details .detail-view-container .container p.lot-no {
    font-size: 18px;
  }
}

.fixedHeader.details {
  background: white;
}
.fixedHeader.details .auctionBreadCrumb {
  margin-top: 30px;
  width: 100%;
}
@media (min-width: 1200px) {
  .fixedHeader.details .auctionBreadCrumb {
    margin-top: 70px;
  }
}
.fixedHeader.details .auctionBreadCrumb a.return-catalogue {
  text-transform: uppercase;
  color: #0B0A1D;
  opacity: 0.5;
  letter-spacing: 1px;
  font-weight: 400;
}

.lot-information-container h1,
.lot-details-container h1 {
  color: #0B0A1D;
  font-size: 30px;
  line-height: 1.3 !important;
}
@media (min-width: 1200px) {
  .lot-information-container h1,
  .lot-details-container h1 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
  }
}
@media screen and (max-width: 599px) {
  .lot-information-container h1,
  .lot-details-container h1 {
    font-size: 2rem;
  }
}
.lot-information-container h2,
.lot-details-container h2 {
  color: #0B0A1D;
  font-size: 30px;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .lot-information-container h2,
  .lot-details-container h2 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
  }
}
@media screen and (max-width: 599px) {
  .lot-information-container h2,
  .lot-details-container h2 {
    font-size: 2rem;
  }
}
.lot-information-container h4,
.lot-details-container h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lot-information-container hr,
.lot-details-container hr {
  border-top-color: #0B0A1D;
  opacity: 1;
}
.lot-information-container p.lot-no,
.lot-details-container p.lot-no {
  color: #0B0A1D;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.lot-information-container p.no-reserve, .lot-information-container p.estimate,
.lot-details-container p.no-reserve,
.lot-details-container p.estimate {
  font-size: 20px;
  color: #0B0A1D;
}
.lot-information-container .lot-description-container ul,
.lot-information-container .lot-description-container li,
.lot-information-container .lot-description-container p,
.lot-information-container .lot-description-container span,
.lot-information-container .lot-description-container strong,
.lot-information-container .lot-summary-container ul,
.lot-information-container .lot-summary-container li,
.lot-information-container .lot-summary-container p,
.lot-information-container .lot-summary-container span,
.lot-information-container .lot-summary-container strong,
.lot-information-container .lot-strapline-container ul,
.lot-information-container .lot-strapline-container li,
.lot-information-container .lot-strapline-container p,
.lot-information-container .lot-strapline-container span,
.lot-information-container .lot-strapline-container strong,
.lot-details-container .lot-description-container ul,
.lot-details-container .lot-description-container li,
.lot-details-container .lot-description-container p,
.lot-details-container .lot-description-container span,
.lot-details-container .lot-description-container strong,
.lot-details-container .lot-summary-container ul,
.lot-details-container .lot-summary-container li,
.lot-details-container .lot-summary-container p,
.lot-details-container .lot-summary-container span,
.lot-details-container .lot-summary-container strong,
.lot-details-container .lot-strapline-container ul,
.lot-details-container .lot-strapline-container li,
.lot-details-container .lot-strapline-container p,
.lot-details-container .lot-strapline-container span,
.lot-details-container .lot-strapline-container strong {
  background-color: transparent !important;
  color: #0B0A1D !important;
  font-family: "Georgia", sans-serif !important;
}
.lot-information-container .lot-description-container ul,
.lot-information-container .lot-description-container p,
.lot-information-container .lot-summary-container ul,
.lot-information-container .lot-summary-container p,
.lot-information-container .lot-strapline-container ul,
.lot-information-container .lot-strapline-container p,
.lot-details-container .lot-description-container ul,
.lot-details-container .lot-description-container p,
.lot-details-container .lot-summary-container ul,
.lot-details-container .lot-summary-container p,
.lot-details-container .lot-strapline-container ul,
.lot-details-container .lot-strapline-container p {
  margin-top: 12px !important;
}
.lot-information-container .lot-description-container ul:first-child,
.lot-information-container .lot-description-container p:first-child,
.lot-information-container .lot-summary-container ul:first-child,
.lot-information-container .lot-summary-container p:first-child,
.lot-information-container .lot-strapline-container ul:first-child,
.lot-information-container .lot-strapline-container p:first-child,
.lot-details-container .lot-description-container ul:first-child,
.lot-details-container .lot-description-container p:first-child,
.lot-details-container .lot-summary-container ul:first-child,
.lot-details-container .lot-summary-container p:first-child,
.lot-details-container .lot-strapline-container ul:first-child,
.lot-details-container .lot-strapline-container p:first-child {
  margin-top: 0 !important;
}

.featured-auction-image > img {
  max-height: 175px;
  max-width: 100%;
}

/*================================================================================
$ LOT IMAGE
================================================================================*/
.image-gallery {
  height: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
.image-gallery .favourite {
  color: #FFFFFF;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 55px;
  height: 55px;
  float: left;
  background: #fff;
  border: 1px solid #FBF8F8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-gallery .favourite::before {
  width: 26px;
  height: 22px;
  background-size: contain;
  left: auto;
  top: auto;
  transition: 0.2s ease-out;
}
.image-gallery .favourite:hover::before {
  transition: 0.2s ease-in;
  transform: scale(1.2);
}
.image-gallery .slides-list {
  height: 70px;
  margin-top: 15px;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list {
    height: 95px;
  }
}
@media screen and (max-width: 399px) {
  .image-gallery .slides-list {
    height: 70px;
  }
}
.image-gallery .slides-list img {
  height: 65px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .image-gallery .slides-list img {
    height: 42px;
  }
}
@media screen and (max-width: 990px) {
  .image-gallery .slides-list img {
    height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list img {
    height: 90px;
  }
}
@media screen and (max-width: 399px) {
  .image-gallery .slides-list img {
    height: 65px;
  }
}
.image-gallery .slides-list img:focus, .image-gallery .slides-list img:focus-within, .image-gallery .slides-list img:active {
  outline: 0px none;
}
.image-gallery .slides-list .slide {
  height: 68px;
  padding: 0 5px;
}
@media screen and (max-width: 1199px) {
  .image-gallery .slides-list .slide {
    height: 45px;
  }
}
@media screen and (max-width: 990px) {
  .image-gallery .slides-list .slide {
    height: 39px;
  }
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list .slide {
    height: 93px;
  }
}
@media screen and (max-width: 399px) {
  .image-gallery .slides-list .slide {
    height: 68px;
  }
}
.image-gallery .slides-list .slide:focus, .image-gallery .slides-list .slide:focus-within, .image-gallery .slides-list .slide:active {
  outline: 0px none;
}
.image-gallery .slides-list .slide .slide__inner {
  border: 1px solid #D2D2D2;
}
.image-gallery .slides {
  position: relative;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}
.image-gallery .slides .slick-prev {
  text-indent: -9000px;
  width: 20%;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 2;
  background: transparent;
  outline: none;
  border: 0px none;
}
.image-gallery .slides .slick-prev::after {
  text-indent: 0px;
  font-family: "Silverstone-Auctions" !important;
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  content: "\e921";
  color: white;
}
.image-gallery .slides .slick-next {
  text-indent: -9000px;
  width: 20%;
  position: absolute;
  right: 8px;
  top: 0px;
  bottom: 0px;
  z-index: 2;
  background: transparent;
  outline: none;
  border: 0px none;
}
.image-gallery .slides .slick-next::after {
  text-indent: 0px;
  font-family: "Silverstone-Auctions" !important;
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  content: "\e920";
  color: white;
}

.detail-wrapper .details-info {
  margin-top: -50px;
  height: 100px;
  width: 100%;
  margin-bottom: 60px;
}
.detail-wrapper .details-info span[class^=ss-] {
  font-size: 40px;
  margin-right: 10px;
  margin-top: 5px;
  width: 80px;
  text-align: center;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  cursor: pointer;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

#specifications dl dt {
  color: black;
}
#specifications dl dl {
  color: #939393;
}

.infoCard {
  align-content: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .infoCard {
    max-width: 320px;
  }
}
@media (min-width: 992px) {
  .infoCard {
    flex-direction: row;
    max-width: 900px;
  }
}
.infoCard .image {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-content: center;
  width: 100%;
}
@media (min-width: 992px) {
  .infoCard .image {
    width: 40%;
  }
}
.infoCard .image img {
  height: 160px;
  padding-left: 20px;
  padding-top: 20px;
  padding-right: 20px;
  cursor: pointer;
}
.infoCard .content {
  align-content: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .infoCard .content {
    width: 60%;
  }
}
@media screen and (max-width: 766px) {
  .infoCard .content {
    height: auto;
  }
}
.infoCard .content > h4,
.infoCard .content > div {
  margin-top: 15px;
}
.infoCard .content > h4:first-child,
.infoCard .content > div:first-child {
  margin-top: 0;
}
.infoCard .content .small {
  font-size: 14px;
  padding-bottom: 5px;
}
.infoCard .content .small a {
  color: #000000;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.infoCard .content .small a:hover, .infoCard .content .small a:active, .infoCard .content .small a:focus {
  color: #D2D2D2;
}
.infoCard .content span[class^=ss-]::before {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  text-align: center;
  width: 30px;
}
.infoCard .content ul {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .infoCard .content ul {
    margin-bottom: 0px;
  }
}
.infoCard .content p {
  display: block;
}

.iconList li {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}
.iconList li:last-child {
  margin-right: 0px;
}
.iconList li:hover {
  transition: 0.3s ease;
  transform: scale(1.2);
}
.iconList span {
  font-size: 25px;
}

.nav.nav-tabs.details {
  width: calc(100% + 30px);
  border-bottom: 1px solid #E5E5E5;
  list-style: none;
  padding: 0px;
  margin: 0px -15px;
  display: flex;
}
@media (min-width: 576px) {
  .nav.nav-tabs.details {
    width: 100%;
    margin: 0px;
  }
}
.nav.nav-tabs.details li:first-child {
  margin-left: 15px;
}
@media (min-width: 576px) {
  .nav.nav-tabs.details li:first-child {
    margin-left: 0px;
  }
}

.video-player {
  width: 100%;
}
.video-player mediaelementwrapper {
  width: 100%;
}
.video-player mediaelementwrapper video {
  width: 100%;
  height: auto;
}

/*================================================================================
$ MODALS
================================================================================*/
body.com_bidding.view-commission #registerModal .rtb-dropzone .dropzone.ss-upload .dz-message {
  align-content: center;
  display: flex;
  flex-direction: row;
  padding: 0 30px;
  width: 100% !important;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone .dz-message__left,
body.com_bidding.view-commission #registerModal .rtb-dropzone .dz-message__right {
  width: 50%;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone label.btn-app {
  background-color: #0B0A1D;
  color: #FFFFFF;
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  max-width: 200px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone .form-group {
  display: none;
}

/*================================================================================
$ SHIPPING / FEES DETAILS
================================================================================*/
.detail-view-container #shipping-costs h5,
.detail-view-container #fees h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-top: 1rem;
}

/*================================================================================
$ MOTORCYCLE ICON
================================================================================*/
.detail-view-container .detail-wrapper img.motorcycleIcon {
  height: 65px;
  width: 65px;
  margin-right: 15px;
}
.detail-view-container .detail-wrapper img.numberplateIcon {
  height: 50px;
  width: 50px;
  margin-right: 15px;
}

.light-gray-bg {
  background: #FBF8F8;
}

.other-lots {
  width: 100%;
  max-width: 150%;
  display: inline-flex;
  flex-flow: nowrap;
}

body.com_bidding.view-commission.layout-details hr.hr-margin30 {
  border-top: 1px solid #0B0A1D;
}
body.com_bidding.view-commission.layout-details .detail-view-container .container {
  max-width: 1320px;
}
body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-fluid, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-sm, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-md, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-lg, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-xl, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-xxl {
  padding: 9px;
  box-shadow: none;
}
@media (max-width: 576px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-fluid, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-sm, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-md, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-lg, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-xl, body.com_bidding.view-commission.layout-details .detail-view-container .auctionBreadCrumb .container-xxl {
    background: #fff;
  }
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .amount-container {
  position: relative;
  margin-bottom: 0;
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .amount-container .symbol {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-color: #e3e3e3;
  position: absolute;
  top: 0px;
  left: 12px;
  padding: 12px 18px;
  height: 45px;
  font-weight: 600;
  font-size: 16px;
  color: #4d4d4d;
  display: flex;
  align-items: center;
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .amount-container .bid-amount {
  padding: 7px;
  font-weight: normal;
  font-size: 15px;
  color: #4d4d4d;
  box-shadow: none;
  height: auto;
  display: block;
  width: 100%;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
  padding-left: 40px;
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .amount-container .bid-amount:focus {
  outline: 0;
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .unfortunately-not-win-border-horizontal {
  border-top: 8px solid #A60000;
  position: relative;
  width: 100%;
  z-index: 9;
  margin-left: 13px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .unfortunately-not-win-border-horizontal {
    margin-left: 0;
  }
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .congratulations-you-won-border-horizontal {
  border-top: 8px solid #578B45;
  position: relative;
  width: 100%;
  z-index: 9;
  margin-left: 13px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .congratulations-you-won-border-horizontal {
    margin-left: 0;
  }
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .lot-page-info__expand {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
body.com_bidding.view-commission.layout-details .detail-view-container .lot-details-container .lot-page-info__expand span::before {
  content: "";
  display: inline-flex;
  background: url("../images/icons/click-to-expand-icon.svg") no-repeat;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.btn-place-bid {
  height: 45px;
  font-weight: 400;
  font-size: 12px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .btn.btn-place-bid {
    padding: 0 15px;
    width: 100%;
  }
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn {
  height: 45px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #982065;
  font-family: "Arial", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #982065;
  min-width: 125px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn {
    padding: 0 15px;
    width: 100%;
  }
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist:hover, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn:hover {
  color: #982065;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist.active, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn.active {
  color: #FFFFFF;
  background: #982065;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist.active span, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn.active span {
  filter: brightness(0) invert(1);
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.wishlist span, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shareBtn span {
  font-family: "Arial", serif;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.shippinBtn {
  min-height: 44px;
  height: 44px;
  line-height: 100%;
  border: none;
  min-width: 40%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.shippinBtn {
  border: 1px solid #982065;
  color: #982065;
  text-decoration: none;
  min-width: 180px;
  height: 44px;
}
body.com_bidding.view-commission.layout-details .detail-view-container .btn.shippinBtn:active, body.com_bidding.view-commission.layout-details .detail-view-container .btn.shippinBtn:hover {
  text-decoration: none;
  color: #FFFFFF;
  background: #982065;
}
body.com_bidding.view-commission.layout-details .detail-view-container .shareThisLot {
  display: none;
  transition: 0.3s ease;
}
body.com_bidding.view-commission.layout-details .detail-view-container .shareThisLot.active {
  transition: 0.3s ease;
  margin: 15px;
  display: flex;
  width: 600px;
  height: 150px;
  background: #FFFFFF;
  border: 1px solid #982065;
  border-radius: 10px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-commission.layout-details .detail-view-container .shareThisLot.active {
    width: 100%;
  }
}

/*================================================================================
$ FUTURE LOTS
================================================================================*/
.future-lots-container.future-lots-container .future-lots__inner {
  max-width: 1560px !important;
}
.future-lots-container.future-lots-container .future-lots__title {
  margin-bottom: 75px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .future-lots-container.future-lots-container .future-lots__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .future-lots-container.future-lots-container .future-lots__title {
    margin-bottom: 40px;
  }
}
.future-lots-container.future-lots-container .future-lots__title h2 {
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 899px) {
  .future-lots-container.future-lots-container .future-lots__title h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .future-lots-container.future-lots-container .future-lots__title h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .future-lots-container.future-lots-container .future-lots__title h2 {
    font-size: 36px;
    margin-bottom: 15px;
  }
}
.future-lots-container.future-lots-container .future-lots__title p {
  font-size: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.future-lots-container.future-lots-container .future-lots__title p a {
  text-decoration: none;
}
.future-lots-container.future-lots-container .future-lots__title p a:hover span {
  margin-right: 10px;
  -webkit-transition: margin 0.1s linear 0s;
  -moz-transition: margin 0.1s linear 0s;
  -ms-transition: margin 0.1s linear 0s;
  -o-transition: margin 0.1s linear 0s;
  transition: margin 0.1s linear 0s;
}
.future-lots-container.future-lots-container .future-lots__title p span,
.future-lots-container.future-lots-container .future-lots__title p img {
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
}
.future-lots-container.future-lots-container .future-lots__title p span {
  margin-right: 5px;
  -webkit-transition: margin 0.1s linear 0s;
  -moz-transition: margin 0.1s linear 0s;
  -ms-transition: margin 0.1s linear 0s;
  -o-transition: margin 0.1s linear 0s;
  transition: margin 0.1s linear 0s;
}
.future-lots-container.future-lots-container .gridView .lot-no {
  color: #982065 !important;
  font-size: 14px !important;
  font-weight: normal !important;
}
.future-lots-container.future-lots-container .gridView .estimate-price {
  font-size: 16px !important;
  letter-spacing: 0 !important;
}
@media screen and (max-width: 599px) {
  .future-lots-container.future-lots-container .gridView .estimate-price span {
    margin-left: 5px;
  }
}
.future-lots-container.future-lots-container .gridView .controls {
  margin-top: auto;
}
.future-lots-container.future-lots-container .gridView .controls .btn-futurelot {
  color: #982065;
  font-weight: 700;
  line-height: 1.25;
  min-height: 0;
  padding: 15px 10px;
  width: 100%;
}
.future-lots-container.future-lots-container .future-lots__buttons {
  margin-top: 75px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .future-lots-container.future-lots-container .future-lots__buttons {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .future-lots-container.future-lots-container .future-lots__buttons {
    margin-bottom: 40px;
  }
}
.future-lots-container.future-lots-container .future-lots__buttons .btn {
  line-height: 1.25;
  max-width: 250px;
  min-height: 0;
  padding: 12px 7px;
  width: 100%;
}

.condition-images-slider .slick-slide {
  min-height: 100px;
}
.condition-images-slider .slick-slide img {
  transition: all 0.2s ease-in-out;
  object-fit: cover;
}
.condition-images-slider .slick-slide:hover {
  background-color: #FBF8F8;
}
.condition-images-slider:not(.slick-initialized) {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
}
.condition-images-slider:not(.slick-initialized) .slide {
  display: none;
}
.condition-images-slider:not(.slick-initialized) .slide:nth-child(-n+3) {
  display: flex;
  flex-basis: 33.4%;
  flex-shrink: 0;
}

/* ====== CATALOGUE ====== */
/* ======
CATALOGUE
    - General
    - Lot Image
    - Modals
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.lot-information-container .lot-description-container ul,
.lot-information-container .lot-description-container li,
.lot-information-container .lot-description-container p,
.lot-information-container .lot-description-container span,
.lot-information-container .lot-description-container strong,
.lot-information-container .lot-summary-container ul,
.lot-information-container .lot-summary-container li,
.lot-information-container .lot-summary-container p,
.lot-information-container .lot-summary-container span,
.lot-information-container .lot-summary-container strong,
.lot-information-container .lot-strapline-container ul,
.lot-information-container .lot-strapline-container li,
.lot-information-container .lot-strapline-container p,
.lot-information-container .lot-strapline-container span,
.lot-information-container .lot-strapline-container strong,
.lot-details-container .lot-description-container ul,
.lot-details-container .lot-description-container li,
.lot-details-container .lot-description-container p,
.lot-details-container .lot-description-container span,
.lot-details-container .lot-description-container strong,
.lot-details-container .lot-summary-container ul,
.lot-details-container .lot-summary-container li,
.lot-details-container .lot-summary-container p,
.lot-details-container .lot-summary-container span,
.lot-details-container .lot-summary-container strong,
.lot-details-container .lot-strapline-container ul,
.lot-details-container .lot-strapline-container li,
.lot-details-container .lot-strapline-container p,
.lot-details-container .lot-strapline-container span,
.lot-details-container .lot-strapline-container strong {
  background-color: transparent !important;
  color: #0B0A1D;
  font-family: "Georgia", sans-serif !important;
}
.lot-information-container .lot-description-container ul,
.lot-information-container .lot-description-container p,
.lot-information-container .lot-summary-container ul,
.lot-information-container .lot-summary-container p,
.lot-information-container .lot-strapline-container ul,
.lot-information-container .lot-strapline-container p,
.lot-details-container .lot-description-container ul,
.lot-details-container .lot-description-container p,
.lot-details-container .lot-summary-container ul,
.lot-details-container .lot-summary-container p,
.lot-details-container .lot-strapline-container ul,
.lot-details-container .lot-strapline-container p {
  margin-top: 12px !important;
}
.lot-information-container .lot-description-container ul:first-child,
.lot-information-container .lot-description-container p:first-child,
.lot-information-container .lot-summary-container ul:first-child,
.lot-information-container .lot-summary-container p:first-child,
.lot-information-container .lot-strapline-container ul:first-child,
.lot-information-container .lot-strapline-container p:first-child,
.lot-details-container .lot-description-container ul:first-child,
.lot-details-container .lot-description-container p:first-child,
.lot-details-container .lot-summary-container ul:first-child,
.lot-details-container .lot-summary-container p:first-child,
.lot-details-container .lot-strapline-container ul:first-child,
.lot-details-container .lot-strapline-container p:first-child {
  margin-top: 0 !important;
}

.auction-paused-container .auction-paused {
  border: none;
  display: block;
  float: none;
  margin: 20px auto 0;
  max-width: 400px;
  text-align: center;
  width: 100%;
}
.auction-paused-container .auction-paused p {
  color: #BA2B2B;
  font-size: 16px;
}

.details-top {
  padding-bottom: 30px;
}
.details-top a.link-desc-mobile {
  color: #982065;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-decoration-line: underline;
}
@media (min-width: 1200px) {
  .details-top {
    padding-bottom: 30px;
  }
}

.details-bottom #estimated-shipping-cost p, .details-bottom .lot-description-container p {
  color: #0B0A1D;
  font-family: "Arial", serif !important;
}
.details-bottom #estimated-shipping-cost p span, .details-bottom .lot-description-container p span {
  font-family: "Arial", serif !important;
}
.details-bottom #estimated-shipping-cost a, .details-bottom .lot-description-container a {
  color: #982065;
  font-size: 14px;
}

.featured-auction-image > img {
  max-height: 175px;
  max-width: 100%;
}

/*================================================================================
$ LOT IMAGE
================================================================================*/
.image-gallery {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .image-gallery {
    margin-left: 50px;
    max-height: 500px;
  }
}
@media (max-width: 575.98px) {
  .image-gallery {
    max-height: inherit;
  }
}
.image-gallery .zoom-info {
  font-size: 0.85rem;
  font-weight: 100;
  text-transform: uppercase;
}
.image-gallery .zoom-info span {
  align-items: center;
  display: flex;
}
.image-gallery .zoom-info span::before {
  align-items: center;
  background: url("../images/icons/search-icon.svg") no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  display: inline-flex;
  height: 20px;
  margin-right: 5px;
  width: 20px;
}
.image-gallery .favourite {
  align-items: center;
  background: #fff;
  border: 1px solid #FBF8F8;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  float: left;
  font-size: 30px;
  height: 55px;
  justify-content: center;
  left: 30px;
  position: absolute;
  top: 20px;
  width: 55px;
  z-index: 999;
}
.image-gallery .favourite::before {
  background-size: contain;
  height: 22px;
  left: auto;
  top: auto;
  transition: 0.2s ease-out;
  width: 24px;
}
.image-gallery .favourite:hover::before {
  transform: scale(1.2);
  transition: 0.2s ease-in;
}
.image-gallery .slides-list {
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list {
    height: 95px;
  }
}
@media (max-width: 575.98px) {
  .image-gallery .slides-list {
    height: 100px;
    margin-top: 0;
    width: 100%;
  }
}
.image-gallery .slides-list img {
  height: 80px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .image-gallery .slides-list img {
    height: 63px;
  }
}
@media screen and (max-width: 990px) {
  .image-gallery .slides-list img {
    height: 63px;
  }
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list img {
    height: 90px;
  }
}
@media screen and (max-width: 399px) {
  .image-gallery .slides-list img {
    height: 65px;
  }
}
.image-gallery .slides-list img:focus, .image-gallery .slides-list img:focus-within, .image-gallery .slides-list img:active {
  outline: 0px none;
}
.image-gallery .slides-list .slide {
  align-items: center;
  background: #FFFFFF;
  box-sizing: border-box;
  display: flex;
  height: 100px;
  justify-content: center;
  margin-bottom: 7px;
  max-width: 100px !important;
  min-width: 70px;
  padding: 0 0px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .image-gallery .slides-list .slide {
    height: 45px;
  }
}
@media screen and (max-width: 990px) {
  .image-gallery .slides-list .slide {
    height: 75px;
  }
}
@media screen and (max-width: 599px) {
  .image-gallery .slides-list .slide {
    height: 93px;
  }
}
@media screen and (max-width: 399px) {
  .image-gallery .slides-list .slide {
    height: 70px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .image-gallery .slides-list .slide {
    height: 75px;
    max-width: 75px !important;
  }
}
.image-gallery .slides-list .slide:focus, .image-gallery .slides-list .slide:focus-within, .image-gallery .slides-list .slide:active {
  outline: 0px none;
}
.image-gallery .slides-list .slide .slide__inner {
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  width: 96px;
}
.image-gallery .slides-list .slide.slick-current {
  background: #FFFFFF;
  border: 2px solid #982065;
}
.image-gallery .slides-list .slick-track {
  display: flex;
  flex-direction: column;
  float: left;
  min-width: 70px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .image-gallery .slides-list .slick-track {
    flex-direction: row;
  }
}
.image-gallery .slides-list--horizontal {
  width: 100%;
}
.image-gallery .slides-list--horizontal .slick-track {
  flex-direction: row;
  float: none;
  justify-content: center;
  padding: 0 5px;
}
.image-gallery .slides-list--horizontal .slide__inner {
  width: 90px;
}
.image-gallery .slides {
  align-items: center;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  max-height: 550px;
  max-width: 570px;
  min-height: 570px;
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .image-gallery .slides {
    max-width: 500px;
    min-height: 500px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  .image-gallery .slides {
    min-height: 370px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .image-gallery .slides {
    min-height: 370px;
  }
}
@media (max-width: 767.98px) {
  .image-gallery .slides {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .image-gallery .slides {
    min-height: 340px;
  }
}
.image-gallery .slides .slide {
  align-items: center;
  display: flex;
  height: 570px;
  padding: 0 2rem;
  width: 550px;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .image-gallery .slides .slide {
    height: 500px;
    max-width: 500px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  .image-gallery .slides .slide {
    height: 370px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .image-gallery .slides .slide {
    height: 370px;
  }
}
@media (max-width: 575.98px) {
  .image-gallery .slides .slide {
    height: 340px;
    justify-content: center;
    max-height: 350px;
  }
}
.image-gallery .slides .slide a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
}
.image-gallery .slides .slide #zoomGallery {
  display: flex;
  height: 100%;
  width: 100%;
}
.image-gallery .slides .slide #zoomGallery img {
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
.image-gallery .slides .slick-prev {
  background: transparent;
  border: 0px none;
  bottom: 0px;
  left: 0px;
  outline: none;
  position: absolute;
  text-indent: -9000px;
  top: 0px;
  width: 20%;
  z-index: 2;
}
.image-gallery .slides .slick-prev::after {
  color: #982065;
  content: "\e921";
  font-family: "Silverstone-Auctions" !important;
  font-size: 30px;
  height: 50px;
  left: 10px;
  line-height: 50px;
  position: absolute;
  text-align: center;
  text-indent: 0px;
  top: 50%;
  width: 50px;
}
.image-gallery .slides .slick-next {
  background: transparent;
  border: 0px none;
  bottom: 0px;
  outline: none;
  position: absolute;
  right: 8px;
  text-indent: -9000px;
  top: 0px;
  width: 20%;
  z-index: 2;
}
.image-gallery .slides .slick-next::after {
  color: #982065;
  content: "\e920";
  font-family: "Silverstone-Auctions" !important;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  right: 10px;
  text-align: center;
  text-indent: 0px;
  top: 50%;
  width: 50px;
}
.image-gallery .slides .winning-outbid-img-wrapper {
  background: #FFFFFF;
  bottom: 90px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  text-align: center;
  width: 90%;
  z-index: 9;
}
.image-gallery .slides .winning-outbid-img-wrapper p.winning-bidder, .image-gallery .slides .winning-outbid-img-wrapper p.outbid-bidder {
  background: #FFFFFF;
  font-size: 16px;
  width: 100%;
  z-index: 999;
}
.image-gallery .slick-prev, .image-gallery .slick-next {
  background: transparent;
  border: 0 none;
  display: block;
  height: 20px;
  outline: none;
  padding: 0.25rem 0;
  width: 100%;
  z-index: 20;
}
.image-gallery .slick-prev::after, .image-gallery .slick-next::after {
  background: url(../images/icons/arrow-accordion-lot-detail.svg) right top no-repeat transparent;
  background-size: contain;
  content: "";
  display: block;
  height: 10px;
  line-height: 20px;
  margin: 0 auto;
  text-align: center;
  transform-origin: center center;
  transition: all ease-in-out 0.2s;
  width: 15px;
}
.image-gallery .slick-next {
  transform: rotate(180deg);
}
.image-gallery .vertical-wrapper {
  flex-direction: column;
  max-height: 570px;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .image-gallery .vertical-wrapper {
    max-height: 500px;
  }
}
.image-gallery .vertical-wrapper .slick-outer-wrapper {
  flex: 1;
  overflow: hidden;
  width: 100%;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #982065;
}

.detail-wrapper .details-info {
  height: 100px;
  margin-bottom: 60px;
  margin-top: -50px;
  width: 100%;
}
.detail-wrapper .details-info span[class^=ss-] {
  font-size: 40px;
  margin-right: 10px;
  margin-top: 5px;
  text-align: center;
  width: 80px;
}

.slick-slider {
  box-sizing: border-box;
  display: block;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slick-list {
  display: block;
  height: 100%;
  margin: 0;
  max-height: 600px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  max-height: 550px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .slick-slide img {
    max-height: 350px;
  }
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

#specifications dl dt {
  color: black;
}
#specifications dl dl {
  color: #0B0A1D;
}

.infoCard {
  align-content: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .infoCard {
    max-width: 320px;
  }
}
@media (min-width: 992px) {
  .infoCard {
    flex-direction: row;
    max-width: 900px;
  }
}
.infoCard .image {
  align-content: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .infoCard .image {
    width: 40%;
  }
}
.infoCard .image img {
  cursor: pointer;
  height: 160px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}
.infoCard .content {
  align-content: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .infoCard .content {
    width: 60%;
  }
}
@media screen and (max-width: 766px) {
  .infoCard .content {
    height: auto;
  }
}
.infoCard .content > h4,
.infoCard .content > div {
  margin-top: 15px;
}
.infoCard .content > h4:first-child,
.infoCard .content > div:first-child {
  margin-top: 0;
}
.infoCard .content .small {
  font-size: 14px;
  padding-bottom: 5px;
}
.infoCard .content .small a {
  color: #000000;
  -webkit-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -ms-transition: all ease-in-out 0.2s;
  -o-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.infoCard .content .small a:hover, .infoCard .content .small a:active, .infoCard .content .small a:focus {
  color: #D2D2D2;
}
.infoCard .content span[class^=ss-]::before {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  text-align: center;
  width: 30px;
}
.infoCard .content ul {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .infoCard .content ul {
    margin-bottom: 0px;
  }
}
.infoCard .content p {
  display: block;
}

.iconList li {
  margin-bottom: 20px;
  margin-right: 20px;
  margin-top: 20px;
}
.iconList li:last-child {
  margin-right: 0px;
}
.iconList span {
  font-size: 25px;
}

.nav.nav-tabs.details {
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  list-style: none;
  margin: 0px -15px;
  padding: 0px;
  width: calc(100% + 30px);
}
@media (min-width: 576px) {
  .nav.nav-tabs.details {
    margin: 0px;
    width: 100%;
  }
}
.nav.nav-tabs.details li:first-child {
  margin-left: 15px;
}
@media (min-width: 576px) {
  .nav.nav-tabs.details li:first-child {
    margin-left: 0px;
  }
}

.video-player {
  width: 100%;
}
.video-player mediaelementwrapper {
  width: 100%;
}
.video-player mediaelementwrapper video {
  height: auto;
  width: 100%;
}

/*================================================================================
$ MODALS
================================================================================*/
body.com_bidding.view-commission #registerModal .rtb-dropzone .dropzone.ss-upload .dz-message {
  align-content: center;
  display: flex;
  flex-direction: row;
  padding: 0 30px;
  width: 100% !important;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone .dz-message__left,
body.com_bidding.view-commission #registerModal .rtb-dropzone .dz-message__right {
  width: 50%;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone label.btn-app {
  background-color: #D2D2D2;
  color: #FFFFFF;
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  max-width: 200px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
body.com_bidding.view-commission #registerModal .rtb-dropzone .form-group {
  display: none;
}

/*================================================================================
$ SHIPPING DETAILS
================================================================================*/
@media screen and (max-width: 770px) {
  .detail-view-container #shipping .carsShippingDetails {
    padding-top: 20px;
  }
}
.detail-view-container #shipping .carsShippingDetails h4 {
  padding-bottom: 10px;
  text-decoration: underline;
}
.detail-view-container #shipping .automobiliaDetails {
  padding-top: 40px;
}
.detail-view-container #shipping .automobiliaDetails h4 {
  padding-bottom: 10px;
  text-decoration: underline;
}

/*================================================================================
$ MOTORCYCLE ICON
================================================================================*/
.detail-view-container .detail-wrapper img.motorcycleIcon {
  height: 65px;
  margin-right: 15px;
  width: 65px;
}
.detail-view-container .detail-wrapper img.numberplateIcon {
  height: 50px;
  margin-right: 15px;
  width: 50px;
}

.catalogue .detail-view-container .container {
  max-width: 1400px;
}
.catalogue .detail-view-container .auctionBreadCrumb a {
  align-items: center;
  color: #0B0A1D;
  display: flex;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0.5;
  text-transform: uppercase;
}
.catalogue .detail-view-container .auctionBreadCrumb span.lot-id-nav-mobile {
  font-size: 18px;
  font-weight: 500;
}
.catalogue .detail-view-container .auctionBreadCrumb p {
  color: #3C3C3B;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}
.catalogue .detail-view-container h1 {
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 32px;
}
@media (min-width: 1200px) {
  .catalogue .detail-view-container h1 {
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
  }
}
@media (max-width: 576px) {
  .catalogue .detail-view-container h1 {
    font-size: 20px;
    line-height: 23px;
  }
}
.catalogue .detail-view-container input#bidAmount {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  height: 45px;
  padding: 15px 15px 15px 55px;
  width: 100%;
  z-index: 9;
}
.catalogue .detail-view-container input#bidAmount:focus {
  outline: none;
}
.catalogue .detail-view-container .congratulations-you-won-wrapper {
  background: #F7F7F7;
  border-top: 19px solid #982065;
  padding: 20px 25px;
}
.catalogue .detail-view-container .unfortunately-not-win-wrapper {
  background: #F7F7F7;
  border-top: 19px solid #982065;
  padding: 20px 25px;
}
.catalogue .detail-view-container .time-remaining-wrapper {
  margin-left: 12px;
  max-width: 500px;
}
@media (max-width: 575.98px) {
  .catalogue .detail-view-container .time-remaining-wrapper {
    margin-left: 0;
  }
}
.catalogue .detail-view-container .bidding-panel {
  flex-basis: 620px;
  max-width: 620px;
}
.catalogue .detail-view-container p.no-reserve, .catalogue .detail-view-container p.estimate-price {
  color: #0B0A1D;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container p.no-reserve, .catalogue .detail-view-container p.estimate-price {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .catalogue .detail-view-container p.estimate-price {
    display: flex;
  }
}
.catalogue .detail-view-container p.estimate-price--value {
  font-weight: 600;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container p.estimate-price span {
    float: right;
    font-size: 16px;
  }
}
.catalogue .detail-view-container p.estimate-price span.lot-sold {
  background: #982065;
  color: #fff;
  color: #F7F7F7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 14px;
  padding: 6px 7px;
  text-transform: uppercase;
}
.catalogue .detail-view-container p.find-more {
  font-size: 14px;
}
.catalogue .detail-view-container p.find-more a {
  color: #D2D2D2;
  text-decoration: underline;
}
.catalogue .detail-view-container p.winning-bidder {
  color: #578B45;
  font-size: 16px;
  font-weight: 700;
}
.catalogue .detail-view-container p.outbid-bidder {
  color: #982065;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
.catalogue .detail-view-container p.current-bid {
  font-size: 16px;
  font-weight: 700;
}
.catalogue .detail-view-container p.current-bid, .catalogue .detail-view-container p.time-remaining {
  color: #0B0A1D;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container p.current-bid, .catalogue .detail-view-container p.time-remaining {
    font-size: 14px;
  }
}
.catalogue .detail-view-container p.current-bid.value .winning-bidder, .catalogue .detail-view-container p.time-remaining.value .winning-bidder {
  color: #578B45;
}
.catalogue .detail-view-container p.current-bid.value .outbid-bidder, .catalogue .detail-view-container p.time-remaining.value .outbid-bidder {
  color: #A60000;
}
.catalogue .detail-view-container p.time-remaining-countdown {
  text-transform: uppercase;
}
.catalogue .detail-view-container p.bid-info_text {
  color: #3C3C3B;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.catalogue .detail-view-container p.bid-info_note {
  color: #939393;
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}
.catalogue .detail-view-container p.next-min-bid {
  color: #982065;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
.catalogue .detail-view-container p.bid-placed-currency {
  color: #0D0D0D;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.5;
}
.catalogue .detail-view-container p.bids-no, .catalogue .detail-view-container p.bidders-no {
  color: #0D0D0D;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.catalogue .detail-view-container p.lot-sold {
  background: #982065;
  color: #F7F7F7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 11px;
  position: relative;
  text-transform: uppercase;
}
.catalogue .detail-view-container p.lot-unsold {
  background: #6D6D6D;
  color: #F7F7F7;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 5px 11px;
  position: relative;
  text-transform: uppercase;
}
.catalogue .detail-view-container p.congratulations-you-won {
  color: #982065;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.catalogue .detail-view-container p.congratulations-you-won span {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.catalogue .detail-view-container p.unfortunately-not-win {
  color: #982065;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.catalogue .detail-view-container p.unfortunately-not-win span {
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
}
.catalogue .detail-view-container a.reduce-max-bid {
  color: #982065;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration-line: underline;
}
.catalogue .detail-view-container a.btn {
  line-height: 48px;
  min-height: 44px;
}
.catalogue .detail-view-container a.btn.login-to-bid, .catalogue .detail-view-container a.btn.btnRegisterToBidLive, .catalogue .detail-view-container a.btn.shippinBtn {
  align-items: center;
  border: none;
  display: flex;
  height: 44px;
  justify-content: center;
  line-height: 100%;
  min-height: 44px;
  min-width: 40%;
  width: auto;
}
.catalogue .detail-view-container a.btn.shippinBtn {
  border: 1px solid #982065;
  color: #982065;
  height: 44px;
  min-width: 180px;
  text-decoration: none;
}
.catalogue .detail-view-container a.btn.shippinBtn:active, .catalogue .detail-view-container a.btn.shippinBtn:hover {
  background: #982065;
  color: #FFFFFF;
  text-decoration: none;
}
.catalogue .detail-view-container a.btn.btn-wishlist {
  border: 1px solid #578B45;
  font-size: 12px;
  margin-bottom: 0;
  padding: 0 15px;
  width: 150px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container a.btn.btn-wishlist {
    width: 100%;
  }
}
.catalogue .detail-view-container a.btn.btn-wishlist::before {
  content: url(../images/icons/wishlist-icon.svg);
  display: inline-flex;
  height: 20px;
  left: -9px;
  padding: 0px;
  position: relative;
  top: 4px;
  width: 20px;
}
.catalogue .detail-view-container a.btn.btn-wishlist.remove-wishlist::before {
  content: url(../images/icons/remove-wishlist-lot-details.svg);
  display: inline-flex;
  height: 20px;
  left: -9px;
  padding: 0px;
  position: relative;
  top: 4px;
  width: 20px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container a.btn.btn-wishlist.remove-wishlist {
    width: 100%;
  }
}
.catalogue .detail-view-container a.btn.sell-like-this {
  line-height: 38px;
  min-height: 38px;
}
.catalogue .detail-view-container a.readMore {
  color: #982065;
  font-size: 14px;
}
.catalogue .detail-view-container #details h4 {
  color: #3C3C3B;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}
.catalogue .detail-view-container #details a.print-catalogue {
  align-items: center;
  color: #578B45;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
}
.catalogue .detail-view-container #details a.print-catalogue::before {
  background: url("../images/icons/print-catalogue-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  height: 23px;
  margin-right: 10px;
  width: 20px;
}
.catalogue .detail-view-container #details a.add-to-calendar {
  align-items: center;
  color: #578B45;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
}
.catalogue .detail-view-container #details a.add-to-calendar::before {
  background: url("../images/icons/add-to-calendar-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  height: 23px;
  margin-right: 10px;
  width: 20px;
}
.catalogue .detail-view-container #details a.set-alerts-lots {
  align-items: center;
  color: #578B45;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
}
.catalogue .detail-view-container #details a.set-alerts-lots::before {
  background: url("../images/icons/set-alerts-lots-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  height: 16px;
  margin-right: 10px;
  width: 20px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container #details a.set-alerts-lots::before {
    margin-right: 7px;
    width: 25px;
  }
}
.catalogue .detail-view-container .other-lots .other-lot-wrapper {
  border: 1px solid #F7F7F7;
  padding: 15px;
}
.catalogue .detail-view-container .other-lots .other-lot-wrapper a {
  text-align: center;
}
.catalogue .detail-view-container .other-lots .other-lot-wrapper a img {
  height: 270px;
  object-fit: contain;
  width: 100%;
}
.catalogue .detail-view-container .other-lots h3 {
  color: #3C3C3B;
  font-size: 28px;
  font-weight: normal;
}
.catalogue .detail-view-container .other-lots p.lot-no {
  color: #D2D2D2;
  font-size: 12px;
  font-weight: 600;
}
.catalogue .detail-view-container .other-lots p.asking-price {
  color: #D2D2D2;
  font-size: 14px;
  font-weight: 500;
}
.catalogue .detail-view-container .other-lots p.asking-price span {
  color: #982065;
}
.catalogue .detail-view-container .other-lots h4 {
  color: #D2D2D2;
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
}
@media (max-width: 576px) {
  .catalogue .detail-view-container .other-lots h4 {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 576px) {
  .catalogue .detail-view-container .other-lots {
    overflow-y: hidden;
    width: 108%;
  }
  .catalogue .detail-view-container .other-lots .row {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 450px;
    margin-left: -5px;
    overflow-x: auto;
    position: relative;
    width: 100%;
  }
  .catalogue .detail-view-container .other-lots .row .other-lot-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 5px 10px;
  }
}

#loginModal .modal-header h5.modal-title {
  color: #3C3C3B;
  font-size: 28px;
  font-weight: normal;
  text-align: center;
}
#loginModal input[type=checkbox] {
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 1px solid #D3D2D3;
  border-radius: 0;
  display: inline-flex;
  font-size: 2em;
  height: 21px;
  justify-content: center;
  margin-right: 7px;
  position: relative;
  top: 5px;
  width: 21px;
}
#loginModal input[type=checkbox]:checked {
  background-color: #982065;
  border: 1px solid #982065;
}
#loginModal input[type=checkbox]:checked::after {
  background: url("../images/icons/filter-checked-checkbox-icon.svg") no-repeat;
  background-position-y: center;
  background-size: contain;
  color: white;
  content: "";
  display: inline-flex;
  height: 21px;
  position: relative;
  width: 15px;
}
#loginModal input[type=checkbox] + label {
  color: #3C3C3B;
  display: inline-flex;
  font-size: 14px;
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0;
  width: auto;
}
#loginModal a.forgot-pass {
  color: #982065;
  display: inline-flex;
  float: right;
}

@media (min-width: 1024px) {
  #imageZoomModal .modal-dialog {
    max-width: 700px;
  }
}
#imageZoomModal .modal-header {
  border-bottom: none;
  padding: 0;
}
#imageZoomModal .modal-header .close {
  background: #fff;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 999;
}
#imageZoomModal .modal-content .modal-body {
  padding: 0;
}

body.com_bidding.view-timed.layout-details hr.hr-margin30 {
  border-top: 1px solid #CCC;
}
body.com_bidding.view-timed.layout-details .detail-view-container .container {
  max-width: 1320px;
}
body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-fluid, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-sm, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-md, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-lg, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-xl, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-xxl {
  box-shadow: none;
  padding: 9px;
}
@media (max-width: 576px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-fluid, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-sm, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-md, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-lg, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-xl, body.com_bidding.view-timed.layout-details .detail-view-container .auctionBreadCrumb .container-xxl {
    background: #fff;
  }
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .amount-container {
  margin-bottom: 0;
  position: relative;
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .amount-container .symbol {
  align-items: center;
  background-color: #e3e3e3;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  color: #4d4d4d;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  height: 45px;
  left: 12px;
  padding: 12px 18px;
  position: absolute;
  top: 0px;
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .amount-container .bid-amount {
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  box-shadow: none;
  color: #4d4d4d;
  display: block;
  font-size: 15px;
  font-weight: normal;
  height: auto;
  padding: 7px;
  padding-left: 40px;
  width: 100%;
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .amount-container .bid-amount:focus {
  outline: 0;
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .unfortunately-not-win-border-horizontal {
  border-top: 8px solid #A60000;
  margin-left: 13px;
  position: relative;
  width: 100%;
  z-index: 9;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .unfortunately-not-win-border-horizontal {
    margin-left: 0;
  }
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .congratulations-you-won-border-horizontal {
  border-top: 8px solid #578B45;
  margin-left: 13px;
  position: relative;
  width: 100%;
  z-index: 9;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .congratulations-you-won-border-horizontal {
    margin-left: 0;
  }
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .lot-page-info__expand {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
body.com_bidding.view-timed.layout-details .detail-view-container .lot-details-container .lot-page-info__expand span::before {
  background: url("../images/icons/click-to-expand-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  height: 24px;
  margin-right: 10px;
  width: 24px;
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.btn-place-bid {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  font-size: 12px;
  font-weight: 400;
  height: 45px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .btn.btn-place-bid {
    padding: 0 15px;
    width: 100%;
  }
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn {
  align-items: center;
  background: transparent;
  border: 1px solid #982065;
  color: #982065;
  display: flex;
  font-family: "Arial", serif;
  font-size: 12px;
  font-weight: 400;
  height: 45px;
  justify-content: center;
  letter-spacing: 1px;
  min-width: 125px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn {
    padding: 0 15px;
    width: 100%;
  }
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist:hover, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn:hover {
  color: #982065;
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist.active, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn.active {
  background: #982065;
  color: #FFFFFF;
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist.active span, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn.active span {
  filter: brightness(0) invert(1);
}
body.com_bidding.view-timed.layout-details .detail-view-container .btn.wishlist span, body.com_bidding.view-timed.layout-details .detail-view-container .btn.shareBtn span {
  align-items: center;
  display: flex;
  font-family: "Arial", serif;
  text-transform: uppercase;
}
body.com_bidding.view-timed.layout-details .detail-view-container .shareThisLot {
  display: none;
  transition: 0.3s ease;
}
body.com_bidding.view-timed.layout-details .detail-view-container .shareThisLot.active {
  background: #FFFFFF;
  border: 1px solid #982065;
  border-radius: 10px;
  display: flex;
  height: 150px;
  margin: 15px;
  transition: 0.3s ease;
  width: 600px;
}
@media (max-width: 575.98px) {
  body.com_bidding.view-timed.layout-details .detail-view-container .shareThisLot.active {
    width: 100%;
  }
}

body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing {
  padding: 0;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .watchCount {
  left: 20px;
  top: 20px;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .watchCount span {
  height: 40px;
  line-height: 40px;
  width: 40px;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .watchCount span::before {
  height: 18px;
  margin-right: 0;
  width: 20px;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .info {
  padding: 0;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .info .info-wrapper {
  padding: 10px 20px;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .info .info-wrapper a {
  text-decoration: underline;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .lot-information {
  align-items: center;
  background: #FAF7F7;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 10px 20px;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .lot-information .lot-number {
  color: #982065;
  line-height: 100%;
  text-transform: uppercase;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .lotListing .lot-information .timed-item p.value {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 100%;
  margin-top: 0;
  text-transform: uppercase;
}
body.view-timed.layout-details .future-lots-container.future-lots-container .gridView .controls {
  border-top: 0;
  margin: 20px 0;
  padding: 0 20px;
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.login-container {
  width: 100%;
  background-size: cover;
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/login-bg.jpg") center center no-repeat;
}
@media (max-width: 575.98px) {
  .login-container {
    background: #FFFFFF;
    min-height: auto;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  .login-container {
    min-height: auto;
  }
}
@media (min-width: 1920px) and (max-width: 3000px) {
  .login-container {
    min-height: 1000px;
  }
}
@media (min-width: 1441px) and (max-width: 1660px) {
  .login-container {
    min-height: 750px;
  }
}
.login-container.modal-content {
  min-height: 750px;
  background: #FFFFFF;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Landscape) {
  .login-container.modal-content {
    min-height: 580px;
  }
}
.login-container.modal-content .modal-body {
  max-width: 1230px;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .login-container.modal-content .modal-body > div.row > div[class^=col-] {
    padding: 2rem 2rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Landscape) {
  .login-container.modal-content .modal-body > div.row > div[class^=col-] {
    padding: 2rem 3rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Portrait) {
  .login-container.modal-content .modal-body > div.row > div[class^=col-] {
    padding: 2rem 3rem;
  }
}
.login-container.modal-content .modal-body .login-left .login-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-container .card {
  width: 1250px;
  min-height: 430px;
  margin-top: 160px;
  border: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 20px 0;
}
@media (min-width: 1441px) and (max-width: 3000px) {
  .login-container .card {
    padding: 50px;
  }
}
@media (min-width: 1000px) and (max-width: 1440px) {
  .login-container .card {
    width: 980px;
  }
}
@media (max-width: 991.98px) {
  .login-container .card {
    margin: 50px 0;
    width: 75%;
  }
}
@media screen and (max-width: 766px) {
  .login-container .card {
    width: auto;
    margin: 25px 0;
    max-width: 92%;
    margin-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  .login-container .card {
    box-shadow: none;
    margin: 10px 0;
    max-width: 100%;
  }
}
.login-container .card .login-Rlogo {
  display: flex;
  justify-content: center;
}
@media (min-width: 1000px) and (max-width: 1440px) {
  .login-container .card .login-Rlogo {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .login-container .card .login-Rlogo {
    display: none;
  }
}
.login-container a.small {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #808080;
}
.login-container .login-left {
  padding: 50px 0 0 50px;
}
@media (min-width: 1920px) and (max-width: 3000px) {
  .login-container .login-left {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1440px) {
  .login-container .login-left {
    max-width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 991.98px) {
  .login-container .login-left {
    max-width: 70%;
    padding: 0 25px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .login-container .login-left {
    padding: 0 10px;
    max-width: 100%;
  }
}
.login-container .login-left h1, .login-container .login-left h3 {
  font-size: 32px;
  line-height: 125%;
  font-family: "Georgia", sans-serif;
}
.login-container .login-left input {
  width: 100%;
}
.login-container .login-left input[type=password] {
  background: #FFFFFF;
}
.login-container .login-left .terms-checkbox {
  display: flex;
}
.login-container .login-left .terms-checkbox label {
  width: 90%;
  text-transform: none;
  font-size: 16px;
}
.login-container .login-left .terms-checkbox label a {
  text-decoration: underline;
  font-size: 16px;
  color: #000000;
}
.login-container .login-left .terms-checkbox input[type=checkbox] {
  border-radius: 0;
  width: 20px;
  height: 20px;
}
.login-container .login-left form label {
  letter-spacing: 1px;
  font-size: 12px;
  margin-bottom: 5px;
}
.login-container .login-left button#loginFormSubmitBtn, .login-container .login-left button#submitLoginFormBtn {
  width: 250px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.login-container .login-left .password-input-control {
  position: relative;
}
.login-container .login-left .password-input-control input {
  padding-right: 50px;
}
.login-container .login-left .password-input-control .btn {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.login-container .login-center {
  padding: 30px 0;
}
@media (min-width: 1000px) and (max-width: 1440px) {
  .login-container .login-center {
    margin: 0 -50px;
    padding: 20px 0;
  }
}
@media (max-width: 991.98px) {
  .login-container .login-center {
    max-width: 80%;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .login-container .login-center {
    max-width: 90%;
  }
}
.login-container .login-center span.vertical-divider {
  background: #0B0A1D;
  height: 100%;
  width: 1px;
}
@media (max-width: 991.98px) {
  .login-container .login-center span.vertical-divider {
    height: 2px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .login-container .login-center span.vertical-divider {
    height: 1px;
  }
}
.login-container .login-center p {
  font-size: 50px;
}
@media (max-width: 991.98px) {
  .login-container .login-center p {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .login-container .login-center p {
    font-size: 25px;
  }
}
.login-container .login-right {
  padding: 50px 50px 0 0;
}
@media (min-width: 1920px) and (max-width: 3000px) {
  .login-container .login-right {
    padding: 0;
  }
}
@media (min-width: 1000px) and (max-width: 1440px) {
  .login-container .login-right {
    max-width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 991.98px) {
  .login-container .login-right {
    max-width: 70%;
    padding: 0 25px;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .login-container .login-right {
    padding: 0 10px;
    max-width: 100%;
  }
}
.login-container .login-right h3 {
  font-size: 32px;
  line-height: 125%;
}
.login-container .login-right a.btn {
  width: 250px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.login-container .login-right a.btn:hover {
  color: #FFFFFF;
}
.login-container.login-container--forgotpw, .login-container.login-container--resetpw {
  min-height: 750px;
}
.login-container.login-container--forgotpw .card, .login-container.login-container--resetpw .card {
  max-width: 600px;
  text-align: center;
}
.login-container.login-container--forgotpw #forgotPasswordForm input, .login-container.login-container--forgotpw #resetPasswordForm input, .login-container.login-container--resetpw #forgotPasswordForm input, .login-container.login-container--resetpw #resetPasswordForm input {
  width: 100%;
}

/* Silverstone VARIABLES


/*================================================================================
$ THEME COLOURS
================================================================================*/
/*================================================================================
$ VARIOUS COLOURS
================================================================================*/
/*================================================================================
$ BIDSTREAM
================================================================================*/
/*================================================================================
$ FONTS
================================================================================*/
/*================================================================================
Media Query Break Points
================================================================================*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

.department__valuation {
  background-color: #FBF8F8;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 2.5rem 3rem;
  text-align: center;
}
@media screen and (max-width: 990.98px) {
  .department__valuation {
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .department__valuation {
    margin-top: 3rem;
  }
}
.department__valuation a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.department__valuation p {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 990.98px) {
  .department__valuation p {
    font-size: 24px;
  }
}

.img-responsive {
  height: 100% !important;
  width: 100%;
  aspect-ratio: 2/2;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .img-responsive {
    aspect-ratio: auto;
  }
}
.responsive-font .heading {
  min-height: 100px;
}
.responsive-font .artist-info {
  min-height: 140px;
}
.responsive-font p {
  font-size: 20px;
  margin-bottom: 0rem;
}
.responsive-font .b-day {
  font-size: 16px !important;
}
@media screen and (max-width: 990.98px) {
  .responsive-font h2 {
    font-size: 30px !important;
  }
  .responsive-font h3 {
    font-size: 20px !important;
  }
  .responsive-font p {
    font-size: 16px !important;
  }
  .responsive-font .heading {
    min-height: 40px !important;
  }
  .responsive-font .artist-info {
    min-height: 90px !important;
  }
}
@media screen and (max-width: 1198px) {
  .responsive-font .heading {
    min-height: 60px;
  }
  .responsive-font .artist-info {
    min-height: 120px;
  }
}

.close {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0px;
  margin: -1rem -1rem 0rem 0px;
  border: 0px none;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.close::before {
  content: "";
  width: 20px;
  height: 2px;
  transform-origin: center;
  position: absolute;
  top: 17px;
  left: 11px;
  background: #808080;
  transform: rotate(45deg);
  transition: all ease-in-out 0.2s;
}
.close::after {
  content: "";
  width: 20px;
  height: 2px;
  transform-origin: center;
  position: absolute;
  top: 17px;
  left: 11px;
  background: #808080;
  transform: rotate(-45deg);
  transition: all ease-in-out 0.2s;
}
.close:hover {
  outline: none 0px;
}
.close:hover::before {
  transform: rotate(135deg);
}
.close:hover::after {
  transform: rotate(45deg);
}

.plainLink {
  cursor: pointer;
  text-decoration: none;
}
.plainLink:hover {
  text-decoration: none;
}

.toggle-heading {
  position: relative;
  padding-right: 40px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .toggle-heading {
    padding-right: 0;
  }
}
.toggle-heading::after {
  position: absolute;
  width: 19px;
  height: 10px;
  right: 0px;
  line-height: 20px;
  text-align: center;
  transform-origin: center center;
  transition: all ease-in-out 0.2s;
  content: "";
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/arrow-accordion-lot-detail.svg") right top no-repeat transparent;
  background-size: contain;
  display: flex;
  transform: rotate(180deg);
}

.headingWrapper[aria-expanded=true] h4::after {
  transform: rotate(0deg);
}
.headingWrapper.collapsed h4::after {
  transform: rotate(180deg);
}

.tab-content .headingWrapper {
  padding-left: 0px;
  padding-right: 0px;
  border-top: 1px solid #E5E5E5;
}
@media (min-width: 576px) {
  .tab-content .headingWrapper {
    border-top: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.tab-content .headingWrapper h4 {
  margin-left: 15px;
}
@media (min-width: 576px) {
  .tab-content .headingWrapper h4 {
    border-top: 1px solid #E5E5E5;
    margin-left: 0px;
  }
  .tab-content .headingWrapper h4.borderless {
    border-top: 0px none;
  }
}
.tab-content .headingWrapper h4.borderless {
  border-top: 0px none;
}
.tab-content .headingWrapper.borderless {
  border-top: 0px none;
}
.tab-content .toggle-heading {
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tab-content h4.toggle-heading {
  margin-bottom: 0px;
}
.tab-content .collapsed .toggle-heading {
  cursor: pointer;
}
.tab-content .collapsed .toggle-heading::after {
  transform: rotate(180deg);
}

.accountBucket {
  width: 100%;
}
.accountBucket:first-child {
  margin-right: 15px;
}
@media screen and (max-width: 766px) {
  .accountBucket:first-child {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.accountBucket:last-child {
  margin-left: 15px;
}
@media screen and (max-width: 766px) {
  .accountBucket:last-child {
    margin-left: 0px;
  }
}
.accountBucket ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .accountBucket ul .billingInfo {
    padding-bottom: 16px;
  }
}

.lots {
  border-top: 6px solid #F8F8F8;
}
.lots:first-child {
  border-top: 0px none;
}

.counter {
  position: relative;
  padding-right: 40px;
}
.counter span.count {
  right: 5px;
  top: 14px;
  position: absolute;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 24px;
  text-align: center;
  color: white !important;
  font-weight: bold;
  font-size: 14px;
}

li.active a.counter span.count {
  background: #222E5B;
}

li a.counter span.count {
  background: #A68F65;
}

.arrow-link {
  position: relative;
  padding-right: 40px;
  display: inline-block;
  text-decoration: none;
  color: #808080;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  font-family: "Georgia", sans-serif;
  transition: all ease-in-out 0.2s;
}
.arrow-link::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 2px;
  width: 31px;
  height: 16px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/Arrow1.png") right top no-repeat transparent;
}
.arrow-link:hover {
  color: black;
  text-decoration: none;
}

.card {
  background: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  margin: 0px auto;
  width: 100%;
}
.card .card-heading {
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  position: relative;
}
.card .card-heading h4 {
  margin-bottom: 0px;
}
.card .card-heading a {
  color: #808080;
  position: absolute;
  right: 20px;
  text-decoration: none;
  top: 20px;
  transition: all ease-in-out 0.2s;
}
.card .card-heading a:hover, .card .card-heading a:active, .card .card-heading a:focus {
  color: #000000;
}
.card .card-heading a.btn {
  color: #FFFFFF;
}
.card .card-heading.borderless {
  border-bottom: 0px none;
  padding-bottom: 0px;
}
.card.sml {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  padding-top: 0px;
}
.card img.img-fluid {
  margin: 0px auto;
  display: block;
}
.card .details, .card .controls {
  padding: 15px;
}

.buckets {
  position: relative;
}
@media (min-width: 768px) {
  .buckets {
    margin-top: -180px;
  }
}
.buckets h4 {
  font-size: 18px;
  color: #808080;
}
.buckets p {
  font-size: 14px;
}

.columns-2 {
  -webkit-columns: 2 350px;
  -moz-columns: 2 350px;
  columns: 2 350px;
  -webkit-column-gap: 135px;
  -moz-column-gap: 135px;
  column-gap: 135px;
}
.columns-2 p {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .columns-2 p {
    margin-bottom: 45px;
  }
}

ul.breadcrumb {
  background: transparent;
}
ul.breadcrumb li {
  position: relative;
  padding-right: 20px;
}
ul.breadcrumb li::after {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  content: ">";
}
ul.breadcrumb li.active {
  color: #222E5B;
}
ul.breadcrumb li.active::after {
  content: "";
}

/*================================================================================
$ NEWSLETTER BUTTON
================================================================================*/
.newsletter__container {
  position: fixed;
  right: -51px;
  bottom: 15%;
  width: 136px;
  background: #982065;
  transform: rotate(-90deg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter__container a {
  color: #FFFFFF;
  float: left;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 0.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.newsletter__container a:hover {
  text-decoration: none;
}
.newsletter__container a img {
  margin-right: 5px;
  transform: rotate(90deg);
}

/* ====== PAGINATION ====== */
.my_account-pagination {
  width: 100%;
}
.my_account-pagination nav {
  margin: 30px auto;
  display: flex;
  justify-content: center;
}
.my_account-pagination nav ul.pagination {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.my_account-pagination nav ul.pagination li.page-item {
  margin: 0 5px;
  display: inline-flex;
}
.my_account-pagination nav ul.pagination li.page-item.active a.page-link {
  background-color: #982065;
  border-radius: 0px;
  color: #fff;
}
.my_account-pagination nav ul.pagination li.page-item:first-child a.page-link {
  background-color: #982065;
}
.my_account-pagination nav ul.pagination li.page-item a {
  border: none;
}
.my_account-pagination nav ul.pagination li.page-item a.page-link {
  background-color: #F6F4F4;
  border-radius: 0;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.5rem 0.9rem;
  color: #212529;
}
.my_account-pagination nav ul.pagination li.page-item a.page-link span.nav-prev {
  content: "";
  background: url("../images/icons/pagination-arrow.svg") no-repeat;
  width: 9px;
  height: 11px;
  display: inline-flex;
  opacity: 0.5;
}
.my_account-pagination nav ul.pagination li.page-item a.page-link span.nav-next {
  content: "";
  background: url("../images/icons/pagination-arrow.svg") no-repeat;
  width: 9px;
  height: 11px;
  display: inline-flex;
  transform: rotate(180deg);
  opacity: 0.5;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 999; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background-color: #fff; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  display: flex;
  /*================================================================================
  $ MOBILE - CLOSE BUTTON (CROSS)
  ================================================================================*/
}
.sidenav.active-menu {
  padding-top: 6rem;
  width: 100%;
  /*================================================================================
  $ MOBILE MENU
  ================================================================================*/
}
@media screen and (max-width: 1099px) {
  .sidenav.active-menu {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .sidenav.active-menu {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .sidenav.active-menu {
    width: 80%;
  }
}
@media (min-width: 1024px) and (max-width: 1292px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .sidenav.active-menu {
    width: 40%;
  }
}
.sidenav.active-menu .mod-list {
  padding-left: 1rem;
  text-align: left;
}
.sidenav.active-menu .mod-list li {
  display: block;
  margin-bottom: 1.2rem;
  width: 100%;
}
.sidenav.active-menu .mod-list li span {
  color: #0B0A1D;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 991.98px) {
  .sidenav.active-menu .mod-list li.deeper.parent ul {
    display: none;
  }
  .sidenav.active-menu .mod-list li.active.deeper.parent ul {
    display: block;
  }
  .sidenav.active-menu .mod-list li.active.deeper.parent ul li {
    margin-bottom: 0.6rem;
  }
}
.sidenav.active-menu .mod-list li ul {
  padding: 0.5rem 0;
}
.sidenav.active-menu .mod-list li ul li a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding-right: 10px;
  text-transform: uppercase;
}
.sidenav.active-menu .header__mobile--phone {
  margin-top: 1rem;
  padding-left: 1rem;
  text-align: left;
}
.sidenav.active-menu .header__mobile--phone .ss-telephone {
  padding-right: 10px;
}
.sidenav.active-menu .header__mobile--phone a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
.sidenav.active-menu .header__mobile--phone a:hover {
  text-decoration: none;
}
.sidenav.active-menu .account-mobile-menu {
  padding-left: 1rem;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--container {
  float: left;
  width: 100%;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--container .mobile__accountBtn {
  float: left;
  margin-bottom: 1rem;
  padding: 0.5rem 3rem;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--container .mobile__accountBtn .account__user {
  padding-right: 5px;
}
.sidenav.active-menu .account-mobile-menu .mobile__logout--container {
  float: left;
  width: 100%;
}
.sidenav.active-menu .account-mobile-menu .mobile__logout--container .logout-button-container .logout-button {
  float: left;
  padding: 0.5rem 4.5rem;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--login {
  float: left;
  width: 100%;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--login .loginBtn {
  float: left;
  margin-bottom: 1rem;
  padding: 0.5rem 5.4rem;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--register {
  float: left;
  width: 100%;
}
.sidenav.active-menu .account-mobile-menu .mobile__account--register .registerBtn {
  float: left;
  padding: 0.5rem 4.5rem;
}
.sidenav.active-menu .account-mobile-menu .mobile__accountBtn {
  padding: 0.5rem 2rem;
}
.sidenav.active-menu .header__mobile--account {
  border: 1px solid #982065;
  margin-left: 1rem;
  padding: 0.5rem 0rem 0.5rem 1rem;
  text-align: left;
  width: 20%;
}
@media screen and (max-width: 1026px) {
  .sidenav.active-menu .header__mobile--account {
    width: 70%;
  }
}
@media screen and (max-width: 991px) {
  .sidenav.active-menu .header__mobile--account {
    width: 20%;
  }
}
@media screen and (max-width: 416px) {
  .sidenav.active-menu .header__mobile--account {
    width: 40%;
  }
}
.sidenav.active-menu .header__mobile--account .ss-user {
  color: #982065;
  padding-right: 10px;
}
.sidenav.active-menu .header__mobile--account p {
  display: inline;
}
.sidenav.active-menu .header__mobile--account p a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .sidenav {
    align-items: flex-start;
  }
}
.sidenav .closebtn {
  position: absolute;
  top: 0.8rem;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/close-menu-icon.svg");
  background-size: cover;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 1099px) {
  .sidenav .closebtn {
    right: 16rem;
  }
}
@media screen and (max-width: 991px) {
  .sidenav .closebtn {
    right: 1rem;
  }
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left 0.5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .main-header ul li a.menu-desktop {
    display: flex;
    justify-content: flex-end;
    margin-right: 25px;
  }
}
@media (max-width: 575.98px) {
  .main-header ul li a.menu-desktop {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin-right: 25px;
  }
}
/* ---------------- */
/* Modules */
/* ---------------- */
/* Silverstone Upcoming Auctions module (homepage)


/*================================================================================
SECTIONS

- TITLE
- CONTENT IMAGE CONTAINER
- SEE ALL AUCTIONS LINK

================================================================================*/
.upcoming__auctions--wrapper {
  font-family: "Georgia", sans-serif;
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
.upcoming__auctions--wrapper h2 {
  color: #222E5B;
  font-size: 30px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .upcoming__auctions--wrapper h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper h2 {
    font-size: 20px;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--intro {
  padding-bottom: 60px;
}
.upcoming__auctions--wrapper .upcoming__auctions--intro h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container {
  background-image: linear-gradient(to left, rgba(2, 8, 30, 0), rgba(2, 8, 30, 0.88)), url("../../../images/home/november.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
  min-height: 450px;
}
@media screen and (max-width: 1199px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container {
    min-height: 350px;
  }
}
@media screen and (max-width: 992px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container {
    min-height: 300px;
  }
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container {
    min-height: auto;
  }
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container {
    background-image: none;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content {
  padding: 180px 0px 0px 40px;
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
@media screen and (max-width: 1199px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content {
    padding: 110px 0px 0px 40px;
  }
}
@media screen and (max-width: 992px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content {
    padding: 55px 0px 0px 40px;
  }
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--auction-title {
    text-align: center;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--auction-title > a {
  color: #FFFFFF;
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--time {
  color: #FFFFFF;
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--time {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--time {
    text-align: center;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons {
  padding-bottom: 30px;
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons {
    padding-bottom: 0;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--submit-entry {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  font-weight: 500;
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--submit-entry {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--submit-entry {
    background-color: #222E5B;
    border: 1px solid #222E5B;
    padding: 0px;
    width: 100%;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--submit-entry:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #222E5B;
  font-family: 500;
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .approved-to-bid-live {
    border: none;
    padding: 0px;
    width: 100%;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--view-lots {
  margin-right: 10px;
}
@media screen and (max-width: 766px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--view-lots {
    padding: 0px 20px;
  }
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--image-container .upcoming__auctions-div__inner .upcoming-auctions--content .upcoming__auctions--buttons .upcoming__auctions--view-lots {
    margin-bottom: 10px;
    padding: 0px;
    width: 100%;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--auctions-link {
  padding: 60px 0px;
}
@media screen and (max-width: 599px) {
  .upcoming__auctions--wrapper .upcoming__auctions--auctions-link {
    padding: 20px 0px;
  }
}
@media screen and (max-width: 416px) {
  .upcoming__auctions--wrapper .upcoming__auctions--auctions-link {
    padding-top: 20px;
    padding-bottom: 0px;
  }
}
.upcoming__auctions--wrapper .upcoming__auctions--auctions-link a {
  color: #222E5B;
  font-weight: 600;
}

/* ====== HOMEPAGE BANNER ====== */
/* ======
HOMEPAGE BANNER
	- General
	- Social Icons
	- Pagination
	- Banner Content
	- Scroll Down
====== */
/*================================================================================
$ GENERAL
================================================================================*/
@media screen and (max-width: 1499px) {
  .sp-page-builder .page-content #section-id-1603452636373 {
    padding-top: 0;
  }
}

.container-fluid-banner .sppb-row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.container-fluid-banner .sppb-row > .sppb-col-md-12 {
  padding: 0;
}

.front__banner--wrapper {
  position: relative;
}
.front__banner--wrapper .row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.front__banner--wrapper .front__banner--slides-container {
  height: 100vh;
  padding: 0;
}
@media screen and (max-width: 1499px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 80vh;
  }
}
@media screen and (max-width: 1399px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 80vh;
  }
}
@media screen and (max-width: 1372px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 80vh;
  }
}
@media screen and (max-width: 1239px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 90vh;
  }
}
@media screen and (max-width: 1099px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 90vh;
  }
}
@media screen and (max-width: 1026px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 100vh;
  }
}
@media screen and (max-height: 750px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: 100vh;
  }
}
@media screen and (max-width: 416px) {
  .front__banner--wrapper .front__banner--slides-container {
    height: auto;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides {
  background-image: linear-gradient(to bottom, rgba(2, 8, 30, 0), rgba(2, 8, 30, 0.63)), url("../../../images/home/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  padding: 0;
}
@media screen and (max-width: 1499px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 80vh;
  }
}
@media screen and (max-width: 1399px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 80vh;
  }
}
@media screen and (max-width: 1372px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 80vh;
  }
}
@media screen and (max-width: 1239px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 90vh;
  }
}
@media screen and (max-width: 1099px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 90vh;
  }
}
@media screen and (max-width: 1026px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 100vh;
  }
}
@media screen and (max-height: 750px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides {
    height: 100vh;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content {
  bottom: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content {
    margin-top: -92px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video {
  background-color: #151D3C;
  opacity: 0.8;
  padding-top: 50px;
}
@media screen and (max-width: 1023px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video {
    padding-top: 20px;
  }
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video {
    padding-top: 10px;
    padding-left: 10px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video h4 {
  font-size: 22px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video h4 > a {
  color: #FFFFFF;
  font-size: 20px;
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video h4 > a {
    font-size: 16px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .auctionDate {
  padding-left: 0px;
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .auctionDate .auction-date-time {
  color: #FFFFFF;
  padding-bottom: 10px;
  text-transform: capitalize;
}
@media screen and (max-width: 766px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .arrowInfo {
    padding-left: 0px;
    padding-bottom: 20px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .arrowInfo > a {
  color: #FFFFFF;
}
@media screen and (max-width: 766px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .arrowInfo > a {
    float: left;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .auction-info-over-video .arrowInfo .arrow-link::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 2px;
  width: 31px;
  height: 16px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/ArrowWhite.png") right top no-repeat transparent;
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container {
  background-color: #A68F65;
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container {
    padding: 40px;
  }
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container {
    padding: 30px;
  }
}
@media screen and (max-width: 416px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container {
    padding: 5px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container > a {
  color: #FFFFFF;
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container > a {
    font-size: 16px;
  }
}
.front__banner--wrapper .front__banner--slides-container .front__banner--slides .video-content .submit-entry-container > a:hover {
  cursor: pointer;
  text-decoration: none;
}

/*================================================================================
$ SOCIAL ICONS
================================================================================*/
.front__banner--social-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .front__banner--social-container {
    display: none;
  }
}
.front__banner--social-container .front__banner--facebook {
  display: block;
}
.front__banner--social-container .front__banner--facebook > img {
  background-color: #000000;
  opacity: 0.9;
  padding: 10px;
}
.front__banner--social-container .front__banner--instagram {
  display: block;
}
.front__banner--social-container .front__banner--instagram > img {
  background-color: #000000;
  opacity: 0.9;
  padding: 10px;
}
.front__banner--social-container .front__banner--twitter {
  display: block;
}
.front__banner--social-container .front__banner--twitter > img {
  background-color: #000000;
  opacity: 0.9;
  padding: 9.5px;
}

/*================================================================================
$ PAGINATION
================================================================================*/
.front__banner--slides-container .slick-arrow {
  background-color: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .front__banner--slides-container .slick-arrow {
    display: none !important;
  }
}
.front__banner--slides-container .slick-arrow.slick-prev {
  left: 5%;
}
.front__banner--slides-container .slick-arrow.slick-next {
  right: 5%;
}
.front__banner--slides-container .slick-dots {
  bottom: 100px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .front__banner--slides-container .slick-dots {
    bottom: 75px;
  }
}
@media screen and (max-height: 700px) {
  .front__banner--slides-container .slick-dots {
    bottom: 100px;
  }
}
.front__banner--slides-container .slick-dots > li {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
.front__banner--slides-container .slick-dots > li:first-child {
  margin-left: 0;
}
.front__banner--slides-container .slick-dots > li:hover button, .front__banner--slides-container .slick-dots > li:active button, .front__banner--slides-container .slick-dots > li:focus button, .front__banner--slides-container .slick-dots > li.slick-active button {
  background-color: #FFFFFF;
  opacity: 1;
}
.front__banner--slides-container .slick-dots > li button {
  background-color: #E5E5E5;
  border: none;
  border-radius: 50%;
  display: block;
  font-size: 0;
  height: 12px;
  opacity: 0.5;
  outline: none;
  width: 12px;
}
@media screen and (max-width: 599px) {
  .front__banner--slides-container .slick-dots > li button {
    height: 20px;
    width: 20px;
  }
}

/*================================================================================
$ BANNER CONTENT
================================================================================*/
.front__banner--wrapper .front__banner--content {
  margin: 0 auto;
  max-width: 85%;
  padding-top: 15%;
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
@media screen and (max-width: 1199px) {
  .front__banner--wrapper .front__banner--content {
    padding-top: 25%;
  }
}
@media screen and (max-width: 799px) {
  .front__banner--wrapper .front__banner--content {
    padding-top: 240px;
  }
}
@media screen and (max-width: 599px) {
  .front__banner--wrapper .front__banner--content {
    padding-top: 90px;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--auction-title {
  text-transform: uppercase;
}
@media screen and (max-width: 1299px) {
  .front__banner--wrapper .front__banner--content .front__banner--auction-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--content .front__banner--auction-title {
    font-size: 25px;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--auction-title > a {
  color: #FFFFFF;
}
@media screen and (max-width: 416px) {
  .front__banner--wrapper .front__banner--content .front__banner--auction-title > a {
    font-size: 20px;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--auction-title > a:hover {
  text-decoration: none;
}
.front__banner--wrapper .front__banner--content .front__banner--auction-sub-title {
  color: #FFFFFF;
  font-size: 16px;
}
.front__banner--wrapper .front__banner--content .front__banner--auction__titlecontainer h1.auction__title {
  font-size: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media screen and (max-width: 1299px) {
  .front__banner--wrapper .front__banner--content .front__banner--auction__titlecontainer h1.auction__title {
    font-size: 35px;
  }
}
@media screen and (max-width: 770px) {
  .front__banner--wrapper .front__banner--content .front__banner--auction__titlecontainer h1.auction__title {
    font-size: 25px;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--auction__titlecontainer h1.auction__title a {
  color: #FFFFFF;
}
.front__banner--wrapper .front__banner--content .front__banner--auction__titlecontainer p {
  color: #FFFFFF;
  text-align: center;
}
.front__banner--wrapper .front__banner--content .front__banner--buttons {
  margin-top: 50px;
}
@media screen and (max-width: 479px) {
  .front__banner--wrapper .front__banner--content .front__banner--buttons {
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .front__banner--wrapper .front__banner--content .front__banner--buttons .btn {
    margin: 10px 0 0;
    width: 100%;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--submit-entry, .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--value-classic {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  font-weight: 500;
  padding: 0px 30px;
}
@media screen and (max-width: 766px) {
  .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--submit-entry, .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--value-classic {
    padding: 0px 20px;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--submit-entry:hover, .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--value-classic:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #222E5B;
  font-family: 500;
  text-decoration: none;
}
.front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--view-lots, .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--realised-prices {
  margin-right: 10px;
  padding: 0px 30px;
}
.front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--view-lots:hover, .front__banner--wrapper .front__banner--content .front__banner--buttons .front__banner--realised-prices:hover {
  text-decoration: none;
}
.front__banner--wrapper .front__banner--content .front__banner--counter {
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 125px;
  left: 50%;
  padding: 7px 10px;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .front__banner--wrapper .front__banner--content .front__banner--counter {
    bottom: 115px;
    max-width: 85%;
    width: 100%;
  }
}
.front__banner--wrapper .front__banner--content .front__banner--counter h4 {
  color: #FFFFFF;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}
.front__banner--wrapper .front__banner--content .front__banner--counter ul {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  width: auto;
}
.front__banner--wrapper .front__banner--content .front__banner--counter ul li {
  color: #FFFFFF;
}
.front__banner--wrapper .front__banner--content .front__banner--counter ul li span {
  font-size: 16px;
}

/*================================================================================
$ SCROLL DOWN
================================================================================*/
.scroll-down-container {
  bottom: 50px;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1499px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
@media screen and (max-width: 1399px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
@media screen and (max-width: 1372px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
@media screen and (max-width: 1239px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
@media screen and (max-width: 1099px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
@media screen and (max-width: 1026px) {
  .scroll-down-container {
    bottom: 50px;
  }
}
.scroll-down-container .arrowInfo .arrow-link-down {
  color: #808080;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.scroll-down-container .arrowInfo .arrow-link-down::after {
  background: url(../../../images/icons/scroll-down.png) right top no-repeat transparent;
  content: "";
  display: block;
  margin: 0 auto;
  height: 36px;
  width: 36px;
}
.scroll-down-container .arrowInfo .arrow-link-down:hover {
  color: black;
  text-decoration: none;
}

/* Silverstone Homepage Homepage Blocks


/*================================================================================
SECTIONS

- BLOCK
- IMAGE
- TEXT CONTENT


================================================================================*/
.homepage__blocks--container {
  font-family: "Georgia", sans-serif;
}
.homepage__blocks--container .homepage__blocks--block {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  min-height: 230px;
  width: 100%;
  -webkit-box-shadow: 1px 1px 2px 3px rgb(238, 238, 238);
  -moz-box-shadow: 1px 1px 2px 3px rgb(238, 238, 238);
  box-shadow: 1px 1px 2px 3px rgb(238, 238, 238);
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
@media screen and (max-width: 992px) {
  .homepage__blocks--container .homepage__blocks--block {
    min-height: 225px;
  }
}
@media screen and (max-width: 766px) {
  .homepage__blocks--container .homepage__blocks--block {
    margin-bottom: 30px;
    min-height: auto;
  }
}
@media screen and (max-width: 599px) {
  .homepage__blocks--container .homepage__blocks--block {
    height: auto;
    margin-bottom: 50px;
  }
}
.homepage__blocks--container .homepage__blocks--block .homepage__blocks--content {
  margin-top: -50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  .homepage__blocks--container .homepage__blocks--block .homepage__blocks--content {
    margin-top: -30px;
    margin-bottom: 30px;
  }
}
.homepage__blocks--container .homepage__blocks--block .homepage__blocks--content h4 {
  padding-bottom: 10px;
}
@media screen and (max-width: 770px) {
  .homepage__blocks--container .homepage__blocks--block .homepage__blocks--content h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 416px) {
  .homepage__blocks--container .homepage__blocks--block .homepage__blocks--content h4 {
    font-size: 18px;
  }
}
.homepage__blocks--container .homepage__blocks--block .homepage__blocks--content h4 > a {
  color: #222E5B;
  text-transform: uppercase;
}
@media screen and (max-width: 770px) {
  .homepage__blocks--container .homepage__blocks--block .homepage__blocks--content h4 > a {
    font-size: 15px;
  }
}
.homepage__blocks--container .homepage__blocks--block .homepage__blocks--content .homepage__blocks--content-one {
  margin-bottom: 0rem;
}
.homepage__blocks--container .homepage__blocks--block .homepage__blocks--content .homepage__blocks--content-two {
  margin-bottom: 0rem;
}
.homepage__blocks--container .homepage__blocks:nth-child(4) .homepage__blocks--image img {
  margin-top: 39px;
}
.homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image {
  margin-top: -40px;
}
@media screen and (max-width: 770px) {
  .homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image {
    margin-top: 0px;
  }
}
@media screen and (max-width: 416px) {
  .homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image {
    margin-top: -20px;
  }
}
.homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image img {
  width: 80%;
}
@media screen and (max-width: 416px) {
  .homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image img {
    width: 40%;
  }
}
.homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image .trustpilot-widget {
  padding-top: 80px;
  padding-left: 15px;
  padding-bottom: 39px;
}
@media screen and (max-width: 770px) {
  .homepage__blocks--container .homepage__blocks .homepage__blocks--block .homepage__blocks--image .trustpilot-widget {
    padding-bottom: 0px;
    padding-top: 60px;
  }
}

/* SALE HIGHLIGHTS MODULE */
/*================================================================================
SECTIONS

- TITLE
- OVERALL CONTAINER
- SLICK
- LOT CONTENTS 

================================================================================*/
body.site.home-roseberys .sale-highlights, .about .sale-highlights, .department-template-old-masters .sale-highlights, .department-template-jewellery .sale-highlights, .department-template-antiquities .sale-highlights, .department-template-chinese .sale-highlights, .department-template-furniture .sale-highlights,
.department-template-design .sale-highlights, .department-template-prints .sale-highlights, .department-template-modern-home .sale-highlights, .department-template-sculpture .sale-highlights, .department-template-valuations .sale-highlights, .department-template-ceramics .sale-highlights,
.department-template-decorative .sale-highlights, .department-template-islamic .sale-highlights, .department-template-british .sale-highlights, .department-template-silver .sale-highlights, .department-template-watches .sale-highlights, .department-template-owner .sale-highlights, .department-template-wine .sale-highlights,
.department-template-studio-pottery .sale-highlights, .view-commission.layout-catalogue .sale-highlights, .view-timed.layout-catalogue .sale-highlights, .view-artistdirector .sale-highlights, .single-owner-collections .sale-highlights {
  /*================================================================================
  $ TITLE
  ================================================================================*/
  /*================================================================================
  $ OVERALL CONTAINER
  ================================================================================*/
}
body.site.home-roseberys .sale-highlights .highlights__module--overall, .about .sale-highlights .highlights__module--overall, .department-template-old-masters .sale-highlights .highlights__module--overall, .department-template-jewellery .sale-highlights .highlights__module--overall, .department-template-antiquities .sale-highlights .highlights__module--overall, .department-template-chinese .sale-highlights .highlights__module--overall, .department-template-furniture .sale-highlights .highlights__module--overall,
.department-template-design .sale-highlights .highlights__module--overall, .department-template-prints .sale-highlights .highlights__module--overall, .department-template-modern-home .sale-highlights .highlights__module--overall, .department-template-sculpture .sale-highlights .highlights__module--overall, .department-template-valuations .sale-highlights .highlights__module--overall, .department-template-ceramics .sale-highlights .highlights__module--overall,
.department-template-decorative .sale-highlights .highlights__module--overall, .department-template-islamic .sale-highlights .highlights__module--overall, .department-template-british .sale-highlights .highlights__module--overall, .department-template-silver .sale-highlights .highlights__module--overall, .department-template-watches .sale-highlights .highlights__module--overall, .department-template-owner .sale-highlights .highlights__module--overall, .department-template-wine .sale-highlights .highlights__module--overall,
.department-template-studio-pottery .sale-highlights .highlights__module--overall, .view-commission.layout-catalogue .sale-highlights .highlights__module--overall, .view-timed.layout-catalogue .sale-highlights .highlights__module--overall, .view-artistdirector .sale-highlights .highlights__module--overall, .single-owner-collections .sale-highlights .highlights__module--overall {
  background-color: #FBFBF8;
  padding: 50px 0;
}
body.site.home-roseberys .sale-highlights .sale__title, .about .sale-highlights .sale__title, .department-template-old-masters .sale-highlights .sale__title, .department-template-jewellery .sale-highlights .sale__title, .department-template-antiquities .sale-highlights .sale__title, .department-template-chinese .sale-highlights .sale__title, .department-template-furniture .sale-highlights .sale__title,
.department-template-design .sale-highlights .sale__title, .department-template-prints .sale-highlights .sale__title, .department-template-modern-home .sale-highlights .sale__title, .department-template-sculpture .sale-highlights .sale__title, .department-template-valuations .sale-highlights .sale__title, .department-template-ceramics .sale-highlights .sale__title,
.department-template-decorative .sale-highlights .sale__title, .department-template-islamic .sale-highlights .sale__title, .department-template-british .sale-highlights .sale__title, .department-template-silver .sale-highlights .sale__title, .department-template-watches .sale-highlights .sale__title, .department-template-owner .sale-highlights .sale__title, .department-template-wine .sale-highlights .sale__title,
.department-template-studio-pottery .sale-highlights .sale__title, .view-commission.layout-catalogue .sale-highlights .sale__title, .view-timed.layout-catalogue .sale-highlights .sale__title, .view-artistdirector .sale-highlights .sale__title, .single-owner-collections .sale-highlights .sale__title {
  text-align: center;
}
body.site.home-roseberys .sale-highlights .sale__title h2, .about .sale-highlights .sale__title h2, .department-template-old-masters .sale-highlights .sale__title h2, .department-template-jewellery .sale-highlights .sale__title h2, .department-template-antiquities .sale-highlights .sale__title h2, .department-template-chinese .sale-highlights .sale__title h2, .department-template-furniture .sale-highlights .sale__title h2,
.department-template-design .sale-highlights .sale__title h2, .department-template-prints .sale-highlights .sale__title h2, .department-template-modern-home .sale-highlights .sale__title h2, .department-template-sculpture .sale-highlights .sale__title h2, .department-template-valuations .sale-highlights .sale__title h2, .department-template-ceramics .sale-highlights .sale__title h2,
.department-template-decorative .sale-highlights .sale__title h2, .department-template-islamic .sale-highlights .sale__title h2, .department-template-british .sale-highlights .sale__title h2, .department-template-silver .sale-highlights .sale__title h2, .department-template-watches .sale-highlights .sale__title h2, .department-template-owner .sale-highlights .sale__title h2, .department-template-wine .sale-highlights .sale__title h2,
.department-template-studio-pottery .sale-highlights .sale__title h2, .view-commission.layout-catalogue .sale-highlights .sale__title h2, .view-timed.layout-catalogue .sale-highlights .sale__title h2, .view-artistdirector .sale-highlights .sale__title h2, .single-owner-collections .sale-highlights .sale__title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1026px) {
  body.site.home-roseberys .sale-highlights .sale__title h2, .about .sale-highlights .sale__title h2, .department-template-old-masters .sale-highlights .sale__title h2, .department-template-jewellery .sale-highlights .sale__title h2, .department-template-antiquities .sale-highlights .sale__title h2, .department-template-chinese .sale-highlights .sale__title h2, .department-template-furniture .sale-highlights .sale__title h2,
  .department-template-design .sale-highlights .sale__title h2, .department-template-prints .sale-highlights .sale__title h2, .department-template-modern-home .sale-highlights .sale__title h2, .department-template-sculpture .sale-highlights .sale__title h2, .department-template-valuations .sale-highlights .sale__title h2, .department-template-ceramics .sale-highlights .sale__title h2,
  .department-template-decorative .sale-highlights .sale__title h2, .department-template-islamic .sale-highlights .sale__title h2, .department-template-british .sale-highlights .sale__title h2, .department-template-silver .sale-highlights .sale__title h2, .department-template-watches .sale-highlights .sale__title h2, .department-template-owner .sale-highlights .sale__title h2, .department-template-wine .sale-highlights .sale__title h2,
  .department-template-studio-pottery .sale-highlights .sale__title h2, .view-commission.layout-catalogue .sale-highlights .sale__title h2, .view-timed.layout-catalogue .sale-highlights .sale__title h2, .view-artistdirector .sale-highlights .sale__title h2, .single-owner-collections .sale-highlights .sale__title h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.home-roseberys .sale-highlights .sale__title h2, .about .sale-highlights .sale__title h2, .department-template-old-masters .sale-highlights .sale__title h2, .department-template-jewellery .sale-highlights .sale__title h2, .department-template-antiquities .sale-highlights .sale__title h2, .department-template-chinese .sale-highlights .sale__title h2, .department-template-furniture .sale-highlights .sale__title h2,
  .department-template-design .sale-highlights .sale__title h2, .department-template-prints .sale-highlights .sale__title h2, .department-template-modern-home .sale-highlights .sale__title h2, .department-template-sculpture .sale-highlights .sale__title h2, .department-template-valuations .sale-highlights .sale__title h2, .department-template-ceramics .sale-highlights .sale__title h2,
  .department-template-decorative .sale-highlights .sale__title h2, .department-template-islamic .sale-highlights .sale__title h2, .department-template-british .sale-highlights .sale__title h2, .department-template-silver .sale-highlights .sale__title h2, .department-template-watches .sale-highlights .sale__title h2, .department-template-owner .sale-highlights .sale__title h2, .department-template-wine .sale-highlights .sale__title h2,
  .department-template-studio-pottery .sale-highlights .sale__title h2, .view-commission.layout-catalogue .sale-highlights .sale__title h2, .view-timed.layout-catalogue .sale-highlights .sale__title h2, .view-artistdirector .sale-highlights .sale__title h2, .single-owner-collections .sale-highlights .sale__title h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.home-roseberys .sale-highlights .sale__title h2, .about .sale-highlights .sale__title h2, .department-template-old-masters .sale-highlights .sale__title h2, .department-template-jewellery .sale-highlights .sale__title h2, .department-template-antiquities .sale-highlights .sale__title h2, .department-template-chinese .sale-highlights .sale__title h2, .department-template-furniture .sale-highlights .sale__title h2,
  .department-template-design .sale-highlights .sale__title h2, .department-template-prints .sale-highlights .sale__title h2, .department-template-modern-home .sale-highlights .sale__title h2, .department-template-sculpture .sale-highlights .sale__title h2, .department-template-valuations .sale-highlights .sale__title h2, .department-template-ceramics .sale-highlights .sale__title h2,
  .department-template-decorative .sale-highlights .sale__title h2, .department-template-islamic .sale-highlights .sale__title h2, .department-template-british .sale-highlights .sale__title h2, .department-template-silver .sale-highlights .sale__title h2, .department-template-watches .sale-highlights .sale__title h2, .department-template-owner .sale-highlights .sale__title h2, .department-template-wine .sale-highlights .sale__title h2,
  .department-template-studio-pottery .sale-highlights .sale__title h2, .view-commission.layout-catalogue .sale-highlights .sale__title h2, .view-timed.layout-catalogue .sale-highlights .sale__title h2, .view-artistdirector .sale-highlights .sale__title h2, .single-owner-collections .sale-highlights .sale__title h2 {
    width: 100%;
  }
}
body.site.home-roseberys .sale-highlights .sppb-row-container, .about .sale-highlights .sppb-row-container, .department-template-old-masters .sale-highlights .sppb-row-container, .department-template-jewellery .sale-highlights .sppb-row-container, .department-template-antiquities .sale-highlights .sppb-row-container, .department-template-chinese .sale-highlights .sppb-row-container, .department-template-furniture .sale-highlights .sppb-row-container,
.department-template-design .sale-highlights .sppb-row-container, .department-template-prints .sale-highlights .sppb-row-container, .department-template-modern-home .sale-highlights .sppb-row-container, .department-template-sculpture .sale-highlights .sppb-row-container, .department-template-valuations .sale-highlights .sppb-row-container, .department-template-ceramics .sale-highlights .sppb-row-container,
.department-template-decorative .sale-highlights .sppb-row-container, .department-template-islamic .sale-highlights .sppb-row-container, .department-template-british .sale-highlights .sppb-row-container, .department-template-silver .sale-highlights .sppb-row-container, .department-template-watches .sale-highlights .sppb-row-container, .department-template-owner .sale-highlights .sppb-row-container, .department-template-wine .sale-highlights .sppb-row-container,
.department-template-studio-pottery .sale-highlights .sppb-row-container, .view-commission.layout-catalogue .sale-highlights .sppb-row-container, .view-timed.layout-catalogue .sale-highlights .sppb-row-container, .view-artistdirector .sale-highlights .sppb-row-container, .single-owner-collections .sale-highlights .sppb-row-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
body.site.home-roseberys .sale-highlights .highlights__header, .about .sale-highlights .highlights__header, .department-template-old-masters .sale-highlights .highlights__header, .department-template-jewellery .sale-highlights .highlights__header, .department-template-antiquities .sale-highlights .highlights__header, .department-template-chinese .sale-highlights .highlights__header, .department-template-furniture .sale-highlights .highlights__header,
.department-template-design .sale-highlights .highlights__header, .department-template-prints .sale-highlights .highlights__header, .department-template-modern-home .sale-highlights .highlights__header, .department-template-sculpture .sale-highlights .highlights__header, .department-template-valuations .sale-highlights .highlights__header, .department-template-ceramics .sale-highlights .highlights__header,
.department-template-decorative .sale-highlights .highlights__header, .department-template-islamic .sale-highlights .highlights__header, .department-template-british .sale-highlights .highlights__header, .department-template-silver .sale-highlights .highlights__header, .department-template-watches .sale-highlights .highlights__header, .department-template-owner .sale-highlights .highlights__header, .department-template-wine .sale-highlights .highlights__header,
.department-template-studio-pottery .sale-highlights .highlights__header, .view-commission.layout-catalogue .sale-highlights .highlights__header, .view-timed.layout-catalogue .sale-highlights .highlights__header, .view-artistdirector .sale-highlights .highlights__header, .single-owner-collections .sale-highlights .highlights__header {
  position: relative;
  text-align: center;
  top: 51px;
}
body.site.home-roseberys .sale-highlights .highlights__header.artists-sale__title, .about .sale-highlights .highlights__header.artists-sale__title, .department-template-old-masters .sale-highlights .highlights__header.artists-sale__title, .department-template-jewellery .sale-highlights .highlights__header.artists-sale__title, .department-template-antiquities .sale-highlights .highlights__header.artists-sale__title, .department-template-chinese .sale-highlights .highlights__header.artists-sale__title, .department-template-furniture .sale-highlights .highlights__header.artists-sale__title,
.department-template-design .sale-highlights .highlights__header.artists-sale__title, .department-template-prints .sale-highlights .highlights__header.artists-sale__title, .department-template-modern-home .sale-highlights .highlights__header.artists-sale__title, .department-template-sculpture .sale-highlights .highlights__header.artists-sale__title, .department-template-valuations .sale-highlights .highlights__header.artists-sale__title, .department-template-ceramics .sale-highlights .highlights__header.artists-sale__title,
.department-template-decorative .sale-highlights .highlights__header.artists-sale__title, .department-template-islamic .sale-highlights .highlights__header.artists-sale__title, .department-template-british .sale-highlights .highlights__header.artists-sale__title, .department-template-silver .sale-highlights .highlights__header.artists-sale__title, .department-template-watches .sale-highlights .highlights__header.artists-sale__title, .department-template-owner .sale-highlights .highlights__header.artists-sale__title, .department-template-wine .sale-highlights .highlights__header.artists-sale__title,
.department-template-studio-pottery .sale-highlights .highlights__header.artists-sale__title, .view-commission.layout-catalogue .sale-highlights .highlights__header.artists-sale__title, .view-timed.layout-catalogue .sale-highlights .highlights__header.artists-sale__title, .view-artistdirector .sale-highlights .highlights__header.artists-sale__title, .single-owner-collections .sale-highlights .highlights__header.artists-sale__title {
  display: flex;
  justify-content: center;
}
body.site.home-roseberys .sale-highlights .highlights__header h2, .about .sale-highlights .highlights__header h2, .department-template-old-masters .sale-highlights .highlights__header h2, .department-template-jewellery .sale-highlights .highlights__header h2, .department-template-antiquities .sale-highlights .highlights__header h2, .department-template-chinese .sale-highlights .highlights__header h2, .department-template-furniture .sale-highlights .highlights__header h2,
.department-template-design .sale-highlights .highlights__header h2, .department-template-prints .sale-highlights .highlights__header h2, .department-template-modern-home .sale-highlights .highlights__header h2, .department-template-sculpture .sale-highlights .highlights__header h2, .department-template-valuations .sale-highlights .highlights__header h2, .department-template-ceramics .sale-highlights .highlights__header h2,
.department-template-decorative .sale-highlights .highlights__header h2, .department-template-islamic .sale-highlights .highlights__header h2, .department-template-british .sale-highlights .highlights__header h2, .department-template-silver .sale-highlights .highlights__header h2, .department-template-watches .sale-highlights .highlights__header h2, .department-template-owner .sale-highlights .highlights__header h2, .department-template-wine .sale-highlights .highlights__header h2,
.department-template-studio-pottery .sale-highlights .highlights__header h2, .view-commission.layout-catalogue .sale-highlights .highlights__header h2, .view-timed.layout-catalogue .sale-highlights .highlights__header h2, .view-artistdirector .sale-highlights .highlights__header h2, .single-owner-collections .sale-highlights .highlights__header h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.home-roseberys .sale-highlights .highlights__header h2, .about .sale-highlights .highlights__header h2, .department-template-old-masters .sale-highlights .highlights__header h2, .department-template-jewellery .sale-highlights .highlights__header h2, .department-template-antiquities .sale-highlights .highlights__header h2, .department-template-chinese .sale-highlights .highlights__header h2, .department-template-furniture .sale-highlights .highlights__header h2,
  .department-template-design .sale-highlights .highlights__header h2, .department-template-prints .sale-highlights .highlights__header h2, .department-template-modern-home .sale-highlights .highlights__header h2, .department-template-sculpture .sale-highlights .highlights__header h2, .department-template-valuations .sale-highlights .highlights__header h2, .department-template-ceramics .sale-highlights .highlights__header h2,
  .department-template-decorative .sale-highlights .highlights__header h2, .department-template-islamic .sale-highlights .highlights__header h2, .department-template-british .sale-highlights .highlights__header h2, .department-template-silver .sale-highlights .highlights__header h2, .department-template-watches .sale-highlights .highlights__header h2, .department-template-owner .sale-highlights .highlights__header h2, .department-template-wine .sale-highlights .highlights__header h2,
  .department-template-studio-pottery .sale-highlights .highlights__header h2, .view-commission.layout-catalogue .sale-highlights .highlights__header h2, .view-timed.layout-catalogue .sale-highlights .highlights__header h2, .view-artistdirector .sale-highlights .highlights__header h2, .single-owner-collections .sale-highlights .highlights__header h2 {
    font-size: 27px;
    margin-bottom: 1.2rem;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container, .about .sale-highlights .sale__lots--container, .department-template-old-masters .sale-highlights .sale__lots--container, .department-template-jewellery .sale-highlights .sale__lots--container, .department-template-antiquities .sale-highlights .sale__lots--container, .department-template-chinese .sale-highlights .sale__lots--container, .department-template-furniture .sale-highlights .sale__lots--container,
.department-template-design .sale-highlights .sale__lots--container, .department-template-prints .sale-highlights .sale__lots--container, .department-template-modern-home .sale-highlights .sale__lots--container, .department-template-sculpture .sale-highlights .sale__lots--container, .department-template-valuations .sale-highlights .sale__lots--container, .department-template-ceramics .sale-highlights .sale__lots--container,
.department-template-decorative .sale-highlights .sale__lots--container, .department-template-islamic .sale-highlights .sale__lots--container, .department-template-british .sale-highlights .sale__lots--container, .department-template-silver .sale-highlights .sale__lots--container, .department-template-watches .sale-highlights .sale__lots--container, .department-template-owner .sale-highlights .sale__lots--container, .department-template-wine .sale-highlights .sale__lots--container,
.department-template-studio-pottery .sale-highlights .sale__lots--container, .view-commission.layout-catalogue .sale-highlights .sale__lots--container, .view-timed.layout-catalogue .sale-highlights .sale__lots--container, .view-artistdirector .sale-highlights .sale__lots--container, .single-owner-collections .sale-highlights .sale__lots--container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 120%;
  overflow-x: hidden;
  padding-top: 5rem;
  position: relative;
  /*================================================================================
  $ SLICK
  ================================================================================*/
  /*================================================================================
  $ LOT CONTENTS 
  ================================================================================*/
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-prev, .about .sale-highlights .sale__lots--container .slick-prev, .department-template-old-masters .sale-highlights .sale__lots--container .slick-prev, .department-template-jewellery .sale-highlights .sale__lots--container .slick-prev, .department-template-antiquities .sale-highlights .sale__lots--container .slick-prev, .department-template-chinese .sale-highlights .sale__lots--container .slick-prev, .department-template-furniture .sale-highlights .sale__lots--container .slick-prev,
.department-template-design .sale-highlights .sale__lots--container .slick-prev, .department-template-prints .sale-highlights .sale__lots--container .slick-prev, .department-template-modern-home .sale-highlights .sale__lots--container .slick-prev, .department-template-sculpture .sale-highlights .sale__lots--container .slick-prev, .department-template-valuations .sale-highlights .sale__lots--container .slick-prev, .department-template-ceramics .sale-highlights .sale__lots--container .slick-prev,
.department-template-decorative .sale-highlights .sale__lots--container .slick-prev, .department-template-islamic .sale-highlights .sale__lots--container .slick-prev, .department-template-british .sale-highlights .sale__lots--container .slick-prev, .department-template-silver .sale-highlights .sale__lots--container .slick-prev, .department-template-watches .sale-highlights .sale__lots--container .slick-prev, .department-template-owner .sale-highlights .sale__lots--container .slick-prev, .department-template-wine .sale-highlights .sale__lots--container .slick-prev,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-prev, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-artistdirector .sale-highlights .sale__lots--container .slick-prev, .single-owner-collections .sale-highlights .sale__lots--container .slick-prev {
  margin-top: -75px;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-next, .about .sale-highlights .sale__lots--container .slick-next, .department-template-old-masters .sale-highlights .sale__lots--container .slick-next, .department-template-jewellery .sale-highlights .sale__lots--container .slick-next, .department-template-antiquities .sale-highlights .sale__lots--container .slick-next, .department-template-chinese .sale-highlights .sale__lots--container .slick-next, .department-template-furniture .sale-highlights .sale__lots--container .slick-next,
.department-template-design .sale-highlights .sale__lots--container .slick-next, .department-template-prints .sale-highlights .sale__lots--container .slick-next, .department-template-modern-home .sale-highlights .sale__lots--container .slick-next, .department-template-sculpture .sale-highlights .sale__lots--container .slick-next, .department-template-valuations .sale-highlights .sale__lots--container .slick-next, .department-template-ceramics .sale-highlights .sale__lots--container .slick-next,
.department-template-decorative .sale-highlights .sale__lots--container .slick-next, .department-template-islamic .sale-highlights .sale__lots--container .slick-next, .department-template-british .sale-highlights .sale__lots--container .slick-next, .department-template-silver .sale-highlights .sale__lots--container .slick-next, .department-template-watches .sale-highlights .sale__lots--container .slick-next, .department-template-owner .sale-highlights .sale__lots--container .slick-next, .department-template-wine .sale-highlights .sale__lots--container .slick-next,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-next, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-artistdirector .sale-highlights .sale__lots--container .slick-next, .single-owner-collections .sale-highlights .sale__lots--container .slick-next {
  margin-top: -75px;
}
@media (max-width: 767.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container, .about .sale-highlights .sale__lots--container, .department-template-old-masters .sale-highlights .sale__lots--container, .department-template-jewellery .sale-highlights .sale__lots--container, .department-template-antiquities .sale-highlights .sale__lots--container, .department-template-chinese .sale-highlights .sale__lots--container, .department-template-furniture .sale-highlights .sale__lots--container,
  .department-template-design .sale-highlights .sale__lots--container, .department-template-prints .sale-highlights .sale__lots--container, .department-template-modern-home .sale-highlights .sale__lots--container, .department-template-sculpture .sale-highlights .sale__lots--container, .department-template-valuations .sale-highlights .sale__lots--container, .department-template-ceramics .sale-highlights .sale__lots--container,
  .department-template-decorative .sale-highlights .sale__lots--container, .department-template-islamic .sale-highlights .sale__lots--container, .department-template-british .sale-highlights .sale__lots--container, .department-template-silver .sale-highlights .sale__lots--container, .department-template-watches .sale-highlights .sale__lots--container, .department-template-owner .sale-highlights .sale__lots--container, .department-template-wine .sale-highlights .sale__lots--container,
  .department-template-studio-pottery .sale-highlights .sale__lots--container, .view-commission.layout-catalogue .sale-highlights .sale__lots--container, .view-timed.layout-catalogue .sale-highlights .sale__lots--container, .view-artistdirector .sale-highlights .sale__lots--container, .single-owner-collections .sale-highlights .sale__lots--container {
    flex-wrap: wrap;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 0;
    white-space: normal;
  }
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-prev, .about .sale-highlights .sale__lots--container .slick-prev, .department-template-old-masters .sale-highlights .sale__lots--container .slick-prev, .department-template-jewellery .sale-highlights .sale__lots--container .slick-prev, .department-template-antiquities .sale-highlights .sale__lots--container .slick-prev, .department-template-chinese .sale-highlights .sale__lots--container .slick-prev, .department-template-furniture .sale-highlights .sale__lots--container .slick-prev,
  .department-template-design .sale-highlights .sale__lots--container .slick-prev, .department-template-prints .sale-highlights .sale__lots--container .slick-prev, .department-template-modern-home .sale-highlights .sale__lots--container .slick-prev, .department-template-sculpture .sale-highlights .sale__lots--container .slick-prev, .department-template-valuations .sale-highlights .sale__lots--container .slick-prev, .department-template-ceramics .sale-highlights .sale__lots--container .slick-prev,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-prev, .department-template-islamic .sale-highlights .sale__lots--container .slick-prev, .department-template-british .sale-highlights .sale__lots--container .slick-prev, .department-template-silver .sale-highlights .sale__lots--container .slick-prev, .department-template-watches .sale-highlights .sale__lots--container .slick-prev, .department-template-owner .sale-highlights .sale__lots--container .slick-prev, .department-template-wine .sale-highlights .sale__lots--container .slick-prev,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-prev, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-artistdirector .sale-highlights .sale__lots--container .slick-prev, .single-owner-collections .sale-highlights .sale__lots--container .slick-prev {
    margin-top: 0;
  }
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-next, .about .sale-highlights .sale__lots--container .slick-next, .department-template-old-masters .sale-highlights .sale__lots--container .slick-next, .department-template-jewellery .sale-highlights .sale__lots--container .slick-next, .department-template-antiquities .sale-highlights .sale__lots--container .slick-next, .department-template-chinese .sale-highlights .sale__lots--container .slick-next, .department-template-furniture .sale-highlights .sale__lots--container .slick-next,
  .department-template-design .sale-highlights .sale__lots--container .slick-next, .department-template-prints .sale-highlights .sale__lots--container .slick-next, .department-template-modern-home .sale-highlights .sale__lots--container .slick-next, .department-template-sculpture .sale-highlights .sale__lots--container .slick-next, .department-template-valuations .sale-highlights .sale__lots--container .slick-next, .department-template-ceramics .sale-highlights .sale__lots--container .slick-next,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-next, .department-template-islamic .sale-highlights .sale__lots--container .slick-next, .department-template-british .sale-highlights .sale__lots--container .slick-next, .department-template-silver .sale-highlights .sale__lots--container .slick-next, .department-template-watches .sale-highlights .sale__lots--container .slick-next, .department-template-owner .sale-highlights .sale__lots--container .slick-next, .department-template-wine .sale-highlights .sale__lots--container .slick-next,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-next, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-artistdirector .sale-highlights .sale__lots--container .slick-next, .single-owner-collections .sale-highlights .sale__lots--container .slick-next {
    margin-top: 0;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.home-roseberys .sale-highlights .sale__lots--container, .about .sale-highlights .sale__lots--container, .department-template-old-masters .sale-highlights .sale__lots--container, .department-template-jewellery .sale-highlights .sale__lots--container, .department-template-antiquities .sale-highlights .sale__lots--container, .department-template-chinese .sale-highlights .sale__lots--container, .department-template-furniture .sale-highlights .sale__lots--container,
  .department-template-design .sale-highlights .sale__lots--container, .department-template-prints .sale-highlights .sale__lots--container, .department-template-modern-home .sale-highlights .sale__lots--container, .department-template-sculpture .sale-highlights .sale__lots--container, .department-template-valuations .sale-highlights .sale__lots--container, .department-template-ceramics .sale-highlights .sale__lots--container,
  .department-template-decorative .sale-highlights .sale__lots--container, .department-template-islamic .sale-highlights .sale__lots--container, .department-template-british .sale-highlights .sale__lots--container, .department-template-silver .sale-highlights .sale__lots--container, .department-template-watches .sale-highlights .sale__lots--container, .department-template-owner .sale-highlights .sale__lots--container, .department-template-wine .sale-highlights .sale__lots--container,
  .department-template-studio-pottery .sale-highlights .sale__lots--container, .view-commission.layout-catalogue .sale-highlights .sale__lots--container, .view-timed.layout-catalogue .sale-highlights .sale__lots--container, .view-artistdirector .sale-highlights .sale__lots--container, .single-owner-collections .sale-highlights .sale__lots--container {
    width: 102%;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .about .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-old-masters .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-jewellery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-antiquities .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-chinese .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-furniture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
.department-template-design .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-prints .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-modern-home .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-sculpture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-valuations .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-ceramics .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
.department-template-decorative .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-islamic .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-british .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-silver .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-watches .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-owner .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-wine .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
.department-template-studio-pottery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-commission.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-timed.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-artistdirector .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .single-owner-collections .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list {
  margin: 0 -10px;
  margin-top: 100px;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .about .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-old-masters .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-jewellery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-antiquities .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-chinese .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-furniture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
  .department-template-design .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-prints .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-modern-home .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-sculpture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-valuations .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-ceramics .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
  .department-template-decorative .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-islamic .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-british .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-silver .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-watches .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-owner .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .department-template-wine .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list,
  .department-template-studio-pottery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-commission.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-timed.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .view-artistdirector .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list, .single-owner-collections .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list {
    margin: 0;
    max-height: 100%;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .about .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-old-masters .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-jewellery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-antiquities .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-chinese .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-furniture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info,
.department-template-design .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-prints .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-modern-home .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-sculpture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-valuations .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-ceramics .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info,
.department-template-decorative .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-islamic .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-british .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-silver .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-watches .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-owner .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .department-template-wine .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info,
.department-template-studio-pottery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .view-commission.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .view-timed.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .view-artistdirector .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info, .single-owner-collections .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .info {
  min-height: 160px;
}
body.site.home-roseberys .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .about .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-old-masters .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-jewellery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-antiquities .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-chinese .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-furniture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid,
.department-template-design .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-prints .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-modern-home .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-sculpture .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-valuations .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-ceramics .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid,
.department-template-decorative .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-islamic .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-british .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-silver .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-watches .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-owner .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .department-template-wine .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid,
.department-template-studio-pottery .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .view-commission.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .view-timed.layout-catalogue .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .view-artistdirector .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid, .single-owner-collections .sale-highlights .sale__lots--container#AuctionHighLightLots .slick-list .slick-slide .controls .btn_place_bid {
  align-items: center;
  display: flex;
  height: 45px;
  justify-content: center;
  width: 100%;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-prev, .about .sale-highlights .sale__lots--container .slick-prev, .department-template-old-masters .sale-highlights .sale__lots--container .slick-prev, .department-template-jewellery .sale-highlights .sale__lots--container .slick-prev, .department-template-antiquities .sale-highlights .sale__lots--container .slick-prev, .department-template-chinese .sale-highlights .sale__lots--container .slick-prev, .department-template-furniture .sale-highlights .sale__lots--container .slick-prev,
.department-template-design .sale-highlights .sale__lots--container .slick-prev, .department-template-prints .sale-highlights .sale__lots--container .slick-prev, .department-template-modern-home .sale-highlights .sale__lots--container .slick-prev, .department-template-sculpture .sale-highlights .sale__lots--container .slick-prev, .department-template-valuations .sale-highlights .sale__lots--container .slick-prev, .department-template-ceramics .sale-highlights .sale__lots--container .slick-prev,
.department-template-decorative .sale-highlights .sale__lots--container .slick-prev, .department-template-islamic .sale-highlights .sale__lots--container .slick-prev, .department-template-british .sale-highlights .sale__lots--container .slick-prev, .department-template-silver .sale-highlights .sale__lots--container .slick-prev, .department-template-watches .sale-highlights .sale__lots--container .slick-prev, .department-template-owner .sale-highlights .sale__lots--container .slick-prev, .department-template-wine .sale-highlights .sale__lots--container .slick-prev,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-prev, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-artistdirector .sale-highlights .sale__lots--container .slick-prev, .single-owner-collections .sale-highlights .sale__lots--container .slick-prev {
  background: url("../images/icons/highlight-right.svg");
  background-repeat: no-repeat;
  border: none;
  color: transparent;
  height: 47px;
  left: 10%;
  position: absolute;
  transform: rotate(180deg);
  width: 47px;
  z-index: 19;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-prev, .about .sale-highlights .sale__lots--container .slick-prev, .department-template-old-masters .sale-highlights .sale__lots--container .slick-prev, .department-template-jewellery .sale-highlights .sale__lots--container .slick-prev, .department-template-antiquities .sale-highlights .sale__lots--container .slick-prev, .department-template-chinese .sale-highlights .sale__lots--container .slick-prev, .department-template-furniture .sale-highlights .sale__lots--container .slick-prev,
  .department-template-design .sale-highlights .sale__lots--container .slick-prev, .department-template-prints .sale-highlights .sale__lots--container .slick-prev, .department-template-modern-home .sale-highlights .sale__lots--container .slick-prev, .department-template-sculpture .sale-highlights .sale__lots--container .slick-prev, .department-template-valuations .sale-highlights .sale__lots--container .slick-prev, .department-template-ceramics .sale-highlights .sale__lots--container .slick-prev,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-prev, .department-template-islamic .sale-highlights .sale__lots--container .slick-prev, .department-template-british .sale-highlights .sale__lots--container .slick-prev, .department-template-silver .sale-highlights .sale__lots--container .slick-prev, .department-template-watches .sale-highlights .sale__lots--container .slick-prev, .department-template-owner .sale-highlights .sale__lots--container .slick-prev, .department-template-wine .sale-highlights .sale__lots--container .slick-prev,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-prev, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-prev, .view-artistdirector .sale-highlights .sale__lots--container .slick-prev, .single-owner-collections .sale-highlights .sale__lots--container .slick-prev {
    background-size: contain;
    height: 25px;
    left: 6%;
    width: 25px;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-next, .about .sale-highlights .sale__lots--container .slick-next, .department-template-old-masters .sale-highlights .sale__lots--container .slick-next, .department-template-jewellery .sale-highlights .sale__lots--container .slick-next, .department-template-antiquities .sale-highlights .sale__lots--container .slick-next, .department-template-chinese .sale-highlights .sale__lots--container .slick-next, .department-template-furniture .sale-highlights .sale__lots--container .slick-next,
.department-template-design .sale-highlights .sale__lots--container .slick-next, .department-template-prints .sale-highlights .sale__lots--container .slick-next, .department-template-modern-home .sale-highlights .sale__lots--container .slick-next, .department-template-sculpture .sale-highlights .sale__lots--container .slick-next, .department-template-valuations .sale-highlights .sale__lots--container .slick-next, .department-template-ceramics .sale-highlights .sale__lots--container .slick-next,
.department-template-decorative .sale-highlights .sale__lots--container .slick-next, .department-template-islamic .sale-highlights .sale__lots--container .slick-next, .department-template-british .sale-highlights .sale__lots--container .slick-next, .department-template-silver .sale-highlights .sale__lots--container .slick-next, .department-template-watches .sale-highlights .sale__lots--container .slick-next, .department-template-owner .sale-highlights .sale__lots--container .slick-next, .department-template-wine .sale-highlights .sale__lots--container .slick-next,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-next, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-artistdirector .sale-highlights .sale__lots--container .slick-next, .single-owner-collections .sale-highlights .sale__lots--container .slick-next {
  background: url("../images/icons/highlight-right.svg");
  background-repeat: no-repeat;
  border: none;
  color: transparent;
  height: 47px;
  position: absolute;
  right: 10%;
  width: 47px;
  z-index: 19;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-next, .about .sale-highlights .sale__lots--container .slick-next, .department-template-old-masters .sale-highlights .sale__lots--container .slick-next, .department-template-jewellery .sale-highlights .sale__lots--container .slick-next, .department-template-antiquities .sale-highlights .sale__lots--container .slick-next, .department-template-chinese .sale-highlights .sale__lots--container .slick-next, .department-template-furniture .sale-highlights .sale__lots--container .slick-next,
  .department-template-design .sale-highlights .sale__lots--container .slick-next, .department-template-prints .sale-highlights .sale__lots--container .slick-next, .department-template-modern-home .sale-highlights .sale__lots--container .slick-next, .department-template-sculpture .sale-highlights .sale__lots--container .slick-next, .department-template-valuations .sale-highlights .sale__lots--container .slick-next, .department-template-ceramics .sale-highlights .sale__lots--container .slick-next,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-next, .department-template-islamic .sale-highlights .sale__lots--container .slick-next, .department-template-british .sale-highlights .sale__lots--container .slick-next, .department-template-silver .sale-highlights .sale__lots--container .slick-next, .department-template-watches .sale-highlights .sale__lots--container .slick-next, .department-template-owner .sale-highlights .sale__lots--container .slick-next, .department-template-wine .sale-highlights .sale__lots--container .slick-next,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-next, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-next, .view-artistdirector .sale-highlights .sale__lots--container .slick-next, .single-owner-collections .sale-highlights .sale__lots--container .slick-next {
    background-size: contain;
    height: 25px;
    right: 6%;
    width: 25px;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide, .about .sale-highlights .sale__lots--container .slick-slide, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide,
.department-template-design .sale-highlights .sale__lots--container .slick-slide, .department-template-prints .sale-highlights .sale__lots--container .slick-slide, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide, .department-template-british .sale-highlights .sale__lots--container .slick-slide, .department-template-silver .sale-highlights .sale__lots--container .slick-slide, .department-template-watches .sale-highlights .sale__lots--container .slick-slide, .department-template-owner .sale-highlights .sale__lots--container .slick-slide, .department-template-wine .sale-highlights .sale__lots--container .slick-slide,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide {
  margin: 0 10px 20px 10px;
}
@media screen and (max-width: 599px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide, .about .sale-highlights .sale__lots--container .slick-slide, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide, .department-template-prints .sale-highlights .sale__lots--container .slick-slide, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide, .department-template-british .sale-highlights .sale__lots--container .slick-slide, .department-template-silver .sale-highlights .sale__lots--container .slick-slide, .department-template-watches .sale-highlights .sale__lots--container .slick-slide, .department-template-owner .sale-highlights .sale__lots--container .slick-slide, .department-template-wine .sale-highlights .sale__lots--container .slick-slide,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide {
    margin: 70px 10px 20px 10px;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide img, .about .sale-highlights .sale__lots--container .slick-slide img, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide img, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide img, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide img, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide img, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide img,
.department-template-design .sale-highlights .sale__lots--container .slick-slide img, .department-template-prints .sale-highlights .sale__lots--container .slick-slide img, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide img, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide img, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide img, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide img,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide img, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide img, .department-template-british .sale-highlights .sale__lots--container .slick-slide img, .department-template-silver .sale-highlights .sale__lots--container .slick-slide img, .department-template-watches .sale-highlights .sale__lots--container .slick-slide img, .department-template-owner .sale-highlights .sale__lots--container .slick-slide img, .department-template-wine .sale-highlights .sale__lots--container .slick-slide img,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide img, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide img, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide img {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  max-height: 330px;
  max-width: 330px;
  min-height: 330px;
  min-width: 330px;
  object-fit: contain;
}
@media screen and (max-width: 1599px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide img, .about .sale-highlights .sale__lots--container .slick-slide img, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide img, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide img, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide img, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide img, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide img, .department-template-prints .sale-highlights .sale__lots--container .slick-slide img, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide img, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide img, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide img, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide img, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide img, .department-template-british .sale-highlights .sale__lots--container .slick-slide img, .department-template-silver .sale-highlights .sale__lots--container .slick-slide img, .department-template-watches .sale-highlights .sale__lots--container .slick-slide img, .department-template-owner .sale-highlights .sale__lots--container .slick-slide img, .department-template-wine .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide img, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide img, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide img {
    max-width: 250px;
    min-width: 250px;
  }
}
@media screen and (max-width: 599px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide img, .about .sale-highlights .sale__lots--container .slick-slide img, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide img, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide img, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide img, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide img, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide img, .department-template-prints .sale-highlights .sale__lots--container .slick-slide img, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide img, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide img, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide img, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide img, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide img, .department-template-british .sale-highlights .sale__lots--container .slick-slide img, .department-template-silver .sale-highlights .sale__lots--container .slick-slide img, .department-template-watches .sale-highlights .sale__lots--container .slick-slide img, .department-template-owner .sale-highlights .sale__lots--container .slick-slide img, .department-template-wine .sale-highlights .sale__lots--container .slick-slide img,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide img, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide img, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide img, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide img {
    max-height: 300px;
    min-height: 300px;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing, .about .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1px;
  transition: 0.2s ease;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .about .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing:hover,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing:hover,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing:hover,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing:hover, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing:hover {
  border: 1px solid #982065;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: 1px solid #982065;
  transition: 0.2s ease;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem 0rem 2rem;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__image {
    padding: 0rem 1rem 0rem 1rem;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info {
  min-height: 160px;
  padding: 1rem;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info {
    min-height: auto;
  }
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info.artist-lot-holder-hover {
  min-height: auto;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .lot-buttons {
  border-top: 1px solid #FBF8F8;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__description {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
.department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
.department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
.department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2rem;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.home-roseberys .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .about .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-old-masters .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-jewellery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-antiquities .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-chinese .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-furniture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
  .department-template-design .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-prints .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-modern-home .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-sculpture .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-valuations .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-ceramics .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
  .department-template-decorative .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-islamic .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-british .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-silver .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-watches .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-owner .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .department-template-wine .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised,
  .department-template-studio-pottery .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-commission.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-timed.layout-catalogue .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .view-artistdirector .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised, .single-owner-collections .sale-highlights .sale__lots--container .slick-slide .lotListing .sale__info .sale__price--realised {
    margin-top: 1rem;
    text-align: left;
  }
}

.view-timed.layout-catalogue #bidding_timed .container .gridView .lotListing .controls {
  border-top: none;
  padding: 20px 20px;
}
.view-timed.layout-catalogue #bidding_timed .container .gridView .lotListing .controls button,
.view-timed.layout-catalogue #bidding_timed .container .gridView .lotListing .controls a.btn {
  align-items: center;
  border-radius: 5px;
  height: 42px;
}
.view-timed.layout-catalogue #bidding_timed .container .gridView .lotListing .controls .input-group {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights {
  margin: 0 auto;
  max-width: 1560px;
  padding: 60px 0;
}
@media (max-width: 767.98px) {
  .view-timed.layout-catalogue #bidding_timed .container .sale-highlights {
    display: none;
  }
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .highlights__header {
  margin-bottom: 40px;
  margin-left: 15px;
  position: relative;
  top: auto;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .highlights__header h2 {
  font-family: "Arial", serif;
  font-size: 28px;
  line-height: 100%;
  text-align: left;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container {
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  overflow-x: visible;
  padding-top: 0;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-list {
  max-height: 100%;
  margin-top: 0;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-list .slick-track {
  display: flex;
  gap: 20px;
  margin-left: -5px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide {
  margin: 0;
  padding: 0;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide img {
  max-height: 375px;
  max-width: 100%;
  min-height: 375px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide .info {
  padding: 0;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide .info .lot-no {
  background: #FAF7F7;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  font-size: 12px;
  padding: 10px 20px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide .info .info-wrapper {
  padding: 10px 20px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-slide .info .info-wrapper a {
  text-decoration: underline;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-prev,
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-next {
  background: white;
  border: 1px solid #982065;
  border-radius: 50%;
  color: #982065;
  top: 50%;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
@media (max-width: 575.98px) {
  .view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-prev,
  .view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-next {
    height: 35px;
    width: 35px;
  }
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-prev:hover,
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-next:hover {
  background: #982065;
  color: white;
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-prev {
  left: -50px;
}
@media (max-width: 1700px) {
  .view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-prev {
    left: -10px;
  }
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-next {
  right: -50px;
  top: 50%;
}
@media (max-width: 1700px) {
  .view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .slick-next {
    right: -10px;
  }
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .lotListing .watchCount {
  left: 20px;
  top: 20px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .lotListing .watchCount span {
  height: 40px;
  line-height: 40px;
  width: 40px;
}
.view-timed.layout-catalogue #bidding_timed .container .sale-highlights .sale__lots--container .lotListing .watchCount span::before {
  height: 18px;
  margin-right: 0;
  width: 20px;
}

/* SINGLE OWNER HIGHLIGHTS MODULE */
/*================================================================================
SECTIONS

- TITLE
- OVERALL CONTAINER
- LOT CONTENTS 

================================================================================*/
body.site.single-owner-collections {
  /*================================================================================
  $ OVERALL CONTAINER
  ================================================================================*/
}
body.site.single-owner-collections .sale-highlights {
  /*================================================================================
  $ TITLE
  ================================================================================*/
}
body.site.single-owner-collections .sale-highlights .sale__title {
  text-align: center;
}
body.site.single-owner-collections .sale-highlights .sale__title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1026px) {
  body.site.single-owner-collections .sale-highlights .sale__title h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.single-owner-collections .sale-highlights .sale__title h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.single-owner-collections .sale-highlights .sale__title h2 {
    width: 100%;
  }
}
body.site.single-owner-collections .sale__lots--container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 120%;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  body.site.single-owner-collections .sale__lots--container {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
    white-space: normal;
    margin: 0;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.single-owner-collections .sale__lots--container {
    width: 102%;
  }
}
body.site.single-owner-collections .sale__lots--container .lotListing {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0;
  transition: 0.3s ease;
}
body.site.single-owner-collections .sale__lots--container .lotListing:hover {
  border: 1px solid #982065;
  outline: 1px solid #982065;
  transition: 0.3s ease;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__image {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 240px;
  justify-content: center;
  padding: 1rem 2rem 0rem 2rem;
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__image img {
  min-height: 240px;
  max-height: 240px;
  object-fit: contain;
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__info {
  min-height: 160px;
  padding: 1rem;
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__info .sale__description {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  display: -webkit-box;
  white-space: pre-wrap;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__info .sale__price--realised {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2rem;
  text-transform: uppercase;
  text-align: center;
}
body.site.single-owner-collections .sale__lots--container .lotListing .sale__info .view_catalogue {
  padding: 8px;
}

/* ====== NEWS ARTICLES ====== */
/* ======
NEWS ARTICLES
    - General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.site .articles__module .articles__container .article_listing {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  body.site .articles__module .articles__container .article_listing {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  body.site .articles__module .articles__container .article_listing {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  body.site .articles__module .articles__container .article_listing {
    margin-bottom: 15px;
  }
}
body.site .articles__module .articles__container .article_listing .article {
  width: 100%;
}
body.site .articles__module .articles__container .article_listing .article-info-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
body.site .articles__module .articles__container .article_listing .image {
  display: block;
}
body.site .articles__module .articles__container .article_listing .img {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  display: block;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
}
body.site .articles__module .articles__container .article_listing img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-height: 320px;
  min-height: 320px;
}
body.site .articles__module .articles__container .article_listing h3 {
  font-size: 20px;
  line-height: 1.2;
  min-height: 60px;
}
body.site .articles__module .articles__container .article_listing h3 a {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}
body.site .articles__module .articles__container .article_listing h3 a:hover {
  color: #982065;
  text-decoration: underline;
}
body.site .articles__module .articles__container .article_listing .sppb-meta-date,
body.site .articles__module .articles__container .article_listing .meta-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}
body.site .articles__module .articles__container .article_listing .meta-category {
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 12px;
  text-transform: uppercase;
}
body.site .articles__module .articles__container .article_listing .sppb-readmore,
body.site .articles__module .articles__container .article_listing .btn-readmore {
  align-self: flex-start;
  padding: 0.8rem 2rem;
}

/* CONTACT FORM MODULE (USED FOR PAGEBUILDER on Contact page, Collection, Delivery Page)

/*================================================================================
SECTIONS

- INTRO
- CONTAINER (FORM)

================================================================================*/
/*================================================================================
$ RIGHT SIDE - CONTACT FORM
================================================================================*/
.contact__right--side {
  background-color: #FBF8F8;
  padding: 4rem;
}
@media screen and (max-width: 1026px) {
  .contact__right--side {
    padding: 2rem 1rem;
  }
}
@media screen and (max-width: 599px) {
  .contact__right--side {
    padding: 2rem 1rem 2rem 1rem;
  }
}
.contact__right--side .contact__form--intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
.contact__right--side .contact__form--intro a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  text-decoration: underline;
}
.contact__right--side .contact__form--intro .specialist__link {
  color: #0B0A1D !important;
}
.contact__right--side .contact__container {
  background-color: #FBF8F8;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side {
  padding-left: 0px;
  padding-right: 0px;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group {
  margin-bottom: 1rem;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group input {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group input::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group input:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group input::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group input:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group textarea {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 200px;
  padding-top: 5px;
  resize: none;
  width: 100%;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group textarea::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group textarea:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group textarea::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .form-group textarea:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .contact__newsletter {
  margin-top: 2rem;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .contact__newsletter input {
  margin-top: 1px;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .contact__newsletter label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 10px;
}
@media screen and (max-width: 1199px) {
  .contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .contact__newsletter label {
    font-size: 0.75rem;
  }
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .button__container {
  margin-top: 3rem;
  text-align: center;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .button__container #submitBtn {
  background-color: #982065;
  border: 1px solid #982065;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 3rem;
  text-transform: uppercase;
}
.contact__right--side .contact__container .contact__information .contact__information--right-side .form__information .button__container #submitBtn:hover {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}

#column-wrap-id-1646096895997 {
  align-self: flex-start;
}

/* PAST AUCTIONS MODULE (On Department Pages)

/*================================================================================
SECTIONS

- TITLE
- MODULE

================================================================================*/
body.site.com_sppagebuilder {
  /*================================================================================
  $ PAST AUCTIONS MODULE
  ================================================================================*/
}
body.site.com_sppagebuilder .past-auction-title {
  align-items: center;
  display: flex;
  max-width: 900px;
}
@media (min-width: 992px) {
  body.site.com_sppagebuilder .past-auction-title {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  body.site.com_sppagebuilder .past-auction-title {
    display: block;
    margin: none;
  }
}
body.site.com_sppagebuilder .past-auction-title span.title-border-mobile {
  width: 80px;
  height: 4px;
  background: #982065;
  margin-left: 15px;
  margin-top: 30px;
}
body.site.com_sppagebuilder .past-auction-title h2.featured-title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  padding-bottom: 1rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  body.site.com_sppagebuilder .past-auction-title h2.featured-title {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  body.site.com_sppagebuilder .past-auction-title h2.featured-title {
    display: flex;
    font-size: 32px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}
body.site.com_sppagebuilder .past-auction-title .past--calendar-link {
  color: #982065;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  body.site.com_sppagebuilder .past-auction-title .past--calendar-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body.site.com_sppagebuilder .past-auction-title .past--calendar-link img {
  margin-left: 0.5rem;
}
body.site.com_sppagebuilder .past__auctions--module .past__auctions--module-wrapper {
  padding: 50px 0;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-right: 1%;
  width: 24%;
}
@media screen and (max-width: 991px) {
  body.site.com_sppagebuilder .past__auctions--module .past-auction {
    margin: 0 1%;
    width: 48%;
  }
}
@media (max-width: 575.98px) {
  body.site.com_sppagebuilder .past__auctions--module .past-auction {
    margin: 0;
    width: 100%;
  }
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--image {
  min-height: 330px;
  width: 100%;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--image a {
  display: block;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--image img {
  display: block;
  margin: 0 auto;
  max-height: 400px;
  min-height: 400px;
  object-fit: contain;
  width: 100%;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content {
  margin-top: 5px;
  min-height: 100px;
}
@media (max-width: 575.98px) {
  body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content {
    margin-top: 10px;
  }
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content .past__auctions--inner {
  text-align: center;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content .past__auctions--inner h4 {
  display: none;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content .past__auctions--inner a {
  padding: 0.5rem 0rem;
  width: 80%;
}
body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content .past__auctions--inner .past-auction-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 5px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.com_sppagebuilder .past__auctions--module .past-auction .past__auctions--content .past__auctions--inner .past-auction-date {
    margin-top: 10px;
  }
}

/*================================================================================
$ STEP ONE - INTERESTS
================================================================================*/
.email_signup__stepOne--container .email_signup__details .container {
  max-width: 1260px;
}
.email_signup__stepOne--container .email_signup__details input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 30%;
}
@media screen and (max-width: 599px) {
  .email_signup__stepOne--container .email_signup__details input {
    width: 100%;
  }
}
.email_signup__stepOne--container .email_signup__details label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.email_signup__stepOne--container .registration__subscribe {
  display: flex;
  justify-content: center;
}
.email_signup__stepOne--container .registration__subscribe input {
  margin-right: 10px;
}
.email_signup__stepOne--container .registration__subscribe input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  display: flex;
  align-items: center;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
.email_signup__stepOne--container .registration__subscribe input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
.email_signup__stepOne--container .registration__subscribe label {
  color: #0B0A1D;
  float: left;
  font-family: "Arial", serif;
  font-weight: 400;
}
.email_signup__stepOne--container .registration__interests--container {
  margin-top: 2rem;
  justify-content: center;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline {
  margin-top: 15px;
  max-width: 30%;
  flex-direction: row;
  display: flex;
  float: left;
  position: relative;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .email_signup__stepOne--container .registration__interests--container .interests-list-inline {
    max-width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .email_signup__stepOne--container .registration__interests--container .interests-list-inline {
    max-width: 100%;
  }
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline img.interests-img {
  float: left;
  min-width: 150px;
  height: 110px;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline img.interests-img ~ input[type=checkbox]:checked {
  border: 1px solid #982065;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline .interests-section__title {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline label {
  float: left;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 0 50px 0 15px;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  position: absolute;
  float: right;
  display: flex;
  align-items: center;
  right: 10px;
  top: 40px;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
.email_signup__stepOne--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + span,
.email_signup__stepOne--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + .interests-section__title {
  border: 1px solid #982065;
}
.email_signup__stepOne--container .registration__interests--container .interests__rows {
  margin: 1rem 0rem;
}
@media screen and (max-width: 799px) {
  .email_signup__stepOne--container .registration__interests--container .interests__rows .interests__image img {
    width: 100%;
  }
}
.email_signup__stepOne--container .button__container {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .email_signup__stepOne--container .button__container {
    margin-top: 2rem;
  }
}
.email_signup__stepOne--container .button__container button {
  padding: 0.7rem 1.4rem;
}
.email_signup__stepOne--container .button__container .skip__link {
  color: #939393;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: underline;
}

/*================================================================================
$ KEYWORDS
================================================================================*/
.email_signup__stepTwo--container .interests__keywords {
  margin-top: 3rem;
}
.email_signup__stepTwo--container .interests__keywords h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
.email_signup__stepTwo--container .interests__keywords .keyword__info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 992px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__info {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__info {
    width: 100%;
  }
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input {
  border-bottom: 1px solid #D2D2D2;
  margin: 1rem auto;
  padding-left: 10px;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__search--input {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__search--input {
    width: 100%;
  }
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input input {
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 38px;
  width: 83%;
  display: inline-flex;
  float: left;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input button.addInterestBtn {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  width: 90px;
  margin-left: 10px;
  justify-content: center;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__examples {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons {
  margin: 1rem 1rem 2rem 0rem;
  position: relative;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn {
  padding: 0.2rem 2rem;
  position: relative;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn:hover {
  background-color: #982065;
  color: #FFFFFF;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn img {
  position: absolute;
  top: 6px;
  right: 11px;
}
.email_signup__stepTwo--container .interests__keywords .keyword__search--input .keyword__info--emails {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.email_signup__stepTwo--container .interests__keywords .keyword__hear--us {
  margin: 2rem auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .email_signup__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 100%;
  }
}
.email_signup__stepTwo--container .interests__keywords .keyword__hear--us p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.email_signup__stepTwo--container .interests__keywords .keyword__hear--us p span {
  color: #982065;
}
.email_signup__stepTwo--container .interests__keywords .keyword__hear--us select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 100%;
}
.email_signup__stepTwo--container .password-section,
.email_signup__stepTwo--container .email_signup__password--container,
.email_signup__stepTwo--container .email_signup.button__container {
  width: 50%;
  margin: 1rem auto;
}
@media screen and (max-width: 599px) {
  .email_signup__stepTwo--container .password-section,
  .email_signup__stepTwo--container .email_signup__password--container,
  .email_signup__stepTwo--container .email_signup.button__container {
    width: 100%;
  }
}
.email_signup__stepTwo--container .email_signup__password--container input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 40%;
}
@media screen and (max-width: 599px) {
  .email_signup__stepTwo--container .email_signup__password--container input {
    width: 100%;
  }
}
.email_signup__stepTwo--container .email_signup__password--container label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.email_signup__stepTwo--container .email_signup__password--container .password-input-control {
  position: relative;
  width: 40%;
}
.email_signup__stepTwo--container .email_signup__password--container .password-input-control input {
  padding-right: 50px;
  width: 100%;
}
.email_signup__stepTwo--container .email_signup__password--container .password-input-control .btn {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.email_signup__stepTwo--container .email_signup.button__container .btn {
  height: 38px;
  display: inline-flex;
  align-items: center;
  width: 35%;
  justify-content: center;
  margin-right: 20px;
}

#step3Container .email_signup__stepOne--container {
  max-width: 800px;
  margin: 1rem auto;
}
#step3Container .email_signup__stepOne--container .btn {
  height: 38px;
  display: inline-flex;
  align-items: center;
  width: 35%;
  justify-content: center;
  margin-right: 20px;
}

/*================================================================================
$ NEWSLETTER - RIGHT
================================================================================*/
.main-container :has(.active-newsletter)::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(48, 48, 48, 0.75);
  overflow: hidden;
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
  -o-filter: blur(15px);
  -ms-filter: blur(15px);
  filter: blur(15px);
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
@media (max-width: 767.98px) {
  .main-container :has(.active-newsletter)::before {
    display: none;
  }
}

#email_signup_right {
  display: none;
  position: absolute;
  background-color: #982065;
  color: #FFFFFF;
  transition: 0.3s ease-in-out;
  opacity: 0;
  width: 0;
  right: 100%;
}
#email_signup_right.active-newsletter {
  display: block;
  z-index: 9999;
  transition: 0.3s ease-in;
  opacity: 1;
  max-width: 768px;
  width: 768px;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media only screen and (max-height: 800px) {
  #email_signup_right.active-newsletter {
    overflow-y: scroll;
    height: 100vh;
  }
}
@media (min-width: 992px) {
  #email_signup_right.active-newsletter {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #email_signup_right.active-newsletter {
    transform: translate(0, 0vh);
    bottom: inherit;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
}
#email_signup_right.active-newsletter .container {
  background-color: #982065;
}
#email_signup_right.active-newsletter .closeNewsletter {
  position: absolute;
  top: 20px;
  right: 20px;
}
#email_signup_right .invalid-feedback {
  color: #FFFFFF;
  text-transform: uppercase;
  padding-left: 0;
  font-weight: bold;
}
#email_signup_right .email_signup_right__stepOne--container label {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepOne--container input#user-email-address {
  height: 42px;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  padding-left: 15px;
}
#email_signup_right .email_signup_right__stepOne--container input#user-email-address::placeholder {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepOne--container input[type=checkbox] {
  margin-right: 10px;
  display: flex;
  align-items: center;
  height: 25px;
  width: 25px;
  -webkit-appearance: none;
  border-radius: 2px;
  background-image: url(../images/icons/checkbox-icons-newsletter.svg);
  background-position: 0px 0px;
  background-size: cover;
  border: none;
  flex: none;
}
#email_signup_right .email_signup_right__stepOne--container input[type=checkbox]:checked {
  background-image: url(../images/icons/checkbox-icons-newsletter.svg);
  background-size: cover;
  background-position: -28px 0px;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup_right__stepOne--container .interests-section__title label {
    width: 100%;
  }
}
#email_signup_right .email_signup_right__stepTwo--container label {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepTwo--container p {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepTwo--container input[type=checkbox] {
  float: left;
  margin-right: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
  border-radius: 2px;
  background-image: url(../images/icons/checkbox-icons-newsletter.svg);
  background-position: 0px 0px;
  background-size: cover;
}
#email_signup_right .email_signup_right__stepTwo--container input[type=checkbox]:checked {
  background-image: url(../images/icons/checkbox-icons-newsletter.svg);
  background-size: cover;
  background-position: -28px 0px;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
#email_signup_right .email_signup_right__stepTwo--container input[type=password] {
  height: 42px;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  width: 50%;
  padding-left: 15px;
  display: flex;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup_right__stepTwo--container input[type=password] {
    width: 100%;
  }
}
#email_signup_right .email_signup_right__stepTwo--container input[type=password]::placeholder {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepTwo--container .password-input-control {
  position: relative;
  width: 50%;
}
#email_signup_right .email_signup_right__stepTwo--container .password-input-control input {
  padding-right: 50px;
  width: 100%;
  padding-left: 15px;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  height: 42px;
}
#email_signup_right .email_signup_right__stepTwo--container .password-input-control input::placeholder {
  color: #FFFFFF;
}
#email_signup_right .email_signup_right__stepTwo--container .password-input-control .btn {
  height: 100%;
  position: absolute;
  right: -2px;
  top: 0;
  border: 1px solid #FFFFFF;
}
#email_signup_right .email_signup_right__stepTwo--container .keyword__search--input input {
  height: 42px;
  border: 1px solid #FFFFFF;
  background: none;
  color: #FFFFFF;
  width: 82%;
  float: left;
  padding-left: 15px;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup_right__stepTwo--container .keyword__search--input input {
    width: 70%;
  }
}
#email_signup_right .email_signup_right__stepTwo--container .addInterestBtn {
  width: 15%;
  height: 42px;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup_right__stepTwo--container .addInterestBtn {
    width: 24%;
  }
}
#email_signup_right .email_signup_right__stepTwo--container .keyword__buttons a.keyword__interest--btn {
  background: #FFFFFF;
  color: #982065;
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
}
#email_signup_right .email_signup_right__stepTwo--container .newsletter__checkboxes a {
  color: #FFFFFF;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup_right__stepTwo--container .newsletter__checkboxes label {
    width: 90%;
  }
}
#email_signup_right .email_signup__stepThanks--container .btn {
  height: 43px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  #email_signup_right .email_signup__stepThanks--container .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
#email_signup_right .email_signup__stepThanks--container .btn.pink-outline {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
}
#email_signup_right .email_signup__stepThanks--container .btn.white {
  border: 1px solid #FFFFFF;
  background-color: white;
  color: #982065;
}
#email_signup_right .email_signup__stepThanks--container .btn:hover {
  text-decoration: underline;
}

/* ---------------- */
/* Components */
/* ---------------- */
/* ---------------- */
/* Auctions */
/* ====== BIDSTREAM - SALE ====== */
/* ======
BIDSTREAM - SALE
	- General
	- Breadcrumbs
	- Auction Title
	- Lot Information
	- Bidding Box
	- Broadcast Box
	- Lots Scroller
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.com_bidstream.view-Sale,
body.com_bidstream.view-sale {
  background: #F6F4F4;
}
body.com_bidstream.view-Sale #header,
body.com_bidstream.view-sale #header {
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
}
@media (max-width: 575.98px) {
  body.com_bidstream.view-Sale #header,
  body.com_bidstream.view-sale #header {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
}
body.com_bidstream.view-Sale .container-fluid-1600,
body.com_bidstream.view-sale .container-fluid-1600 {
  max-width: 1600px;
  margin: 0 auto;
}
body.com_bidstream.view-Sale #main-content,
body.com_bidstream.view-sale #main-content {
  box-shadow: none;
  background: #FBF8F8;
  padding-top: 0 !important;
  position: relative;
  z-index: 12;
}
@media (max-width: 575.98px) {
  body.com_bidstream.view-Sale #main-content,
  body.com_bidstream.view-sale #main-content {
    position: inherit;
  }
}
body.com_bidstream.view-Sale #notifications-manager p,
body.com_bidstream.view-sale #notifications-manager p {
  margin: 0;
}
@media (max-width: 575.98px) {
  body.com_bidstream.view-Sale .newsletter__container,
  body.com_bidstream.view-sale .newsletter__container {
    display: none;
  }
}

.box-shadow-container {
  box-shadow: none;
}

#bidstream-sale {
  margin-bottom: 50px;
  padding-top: 0;
  max-width: 1500px;
  padding: 0;
}
@media (max-width: 575.98px) {
  #bidstream-sale {
    margin-top: 200px;
  }
}
@media screen and (max-width: 349px) {
  #bidstream-sale {
    margin-top: 100px;
  }
}
#bidstream-sale p {
  color: #808080;
  margin: 0;
}
#bidstream-sale p.lot-no {
  color: #0B0A1D;
}
#bidstream-sale a.lot-nav-left, #bidstream-sale a.lot-nav-right {
  display: inline-flex;
  width: 41px;
  height: 41px;
  background: url(../images/icons/sale-more-icon.svg) right top no-repeat transparent;
  background-size: contain;
  display: inline-flex;
  transition: 0.3s ease;
}
#bidstream-sale a.lot-nav-left:hover, #bidstream-sale a.lot-nav-right:hover {
  background: url(../images/icons/sale-more-icon-hover.svg) right top no-repeat transparent;
  background-size: contain;
  transition: 0.3s ease;
}
#bidstream-sale a.lot-nav-left {
  transform: rotate(180deg);
}
#bidstream-sale .terms-and-conditions {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}
@media screen and (max-width: 416px) {
  #bidstream-sale .terms-and-conditions {
    overflow-y: scroll;
  }
}
#bidstream-sale .terms-and-conditions .inner-overlay {
  background-color: #ffffff;
  width: 100%;
  max-width: 650px;
  padding: 40px 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#bidstream-sale .terms-and-conditions .inner-overlay > h2 {
  float: left;
  width: 100%;
  font-size: 25px;
  margin-bottom: 10px;
}
#bidstream-sale .terms-and-conditions .inner-overlay > p {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
#bidstream-sale .terms-and-conditions .inner-overlay > p > a {
  font-weight: 600;
  text-decoration: underline;
}
#bidstream-sale .terms-and-conditions .inner-overlay .input-container {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
#bidstream-sale .terms-and-conditions .inner-overlay .input-container > input[type=checkbox] {
  float: left;
  width: auto;
  margin-right: 10px;
  margin-top: 2px;
  cursor: pointer;
}
#bidstream-sale .terms-and-conditions .inner-overlay .input-container > label {
  float: left;
  width: calc(100% - 30px);
  color: #982065;
  line-height: 1;
  cursor: pointer;
}
#bidstream-sale .terms-and-conditions .inner-overlay > button {
  float: left;
  padding: 10px 30px;
  font-weight: 600;
  color: #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;
}
#bidstream-sale .terms-and-conditions .inner-overlay > button.continue-button {
  margin-right: 10px;
  background-color: #41a940;
  border: 1px solid #41a940;
}
#bidstream-sale .terms-and-conditions .inner-overlay > button.continue-button:hover {
  background-color: #ffffff;
  color: #41a940;
}
#bidstream-sale .terms-and-conditions .inner-overlay > button.cancel-button {
  background-color: #C1272D;
  border: 1px solid #C1272D;
}
#bidstream-sale .terms-and-conditions .inner-overlay > button.cancel-button:hover {
  background-color: #ffffff;
  color: #C1272D;
}
#bidstream-sale .terms-and-conditions .inner-overlay svg.loading-icon {
  float: left;
  margin-top: 8px;
  margin-left: 10px;
}
#bidstream-sale .loading-message {
  background-color: white;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
#bidstream-sale .loading-message .loading-message-inner {
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 12px 4px #e3e3e3;
  -moz-box-shadow: 0 0 12px 4px #e3e3e3;
  -ms-box-shadow: 0 0 12px 4px #e3e3e3;
  -o-box-shadow: 0 0 12px 4px #e3e3e3;
  box-shadow: 0 0 12px 4px #e3e3e3;
  left: 50%;
  margin: 0 10px;
  padding: 20px;
  position: fixed;
  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%);
}
#bidstream-sale .loading-message .loading-message-inner .text {
  color: red;
  font-weight: 500;
  font-size: 16px;
}
#bidstream-sale .links-controls {
  width: auto;
  padding-bottom: 8px;
}
@media (max-width: 575.98px) {
  #bidstream-sale .links-controls .controls-top {
    display: none;
  }
}
@media screen and (max-width: 873px) {
  #bidstream-sale .links-controls .total-row {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 499px) {
  #bidstream-sale .links-controls .total-row {
    flex-direction: column;
  }
}
#bidstream-sale .links-controls .control-item {
  margin-left: 25px;
  padding-top: 9px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}
@media screen and (max-width: 499px) {
  #bidstream-sale .links-controls .control-item {
    margin-bottom: 10px;
  }
}
#bidstream-sale .links-controls .control-item:first-child {
  margin-left: 0;
}
#bidstream-sale .links-controls .control-item.liveStatusUser p {
  color: #982065;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 3px;
}
#bidstream-sale .links-controls .control-item span.border-input {
  border: 1px solid #0B0A1D;
  margin-right: 7px;
  height: 22px;
  width: 22px;
  display: inline-flex;
}
#bidstream-sale .links-controls .control-item input {
  position: relative;
  top: 0px;
}
#bidstream-sale .links-controls .control-item input.checkbox-round {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  vertical-align: middle;
  border: 2px solid white;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
#bidstream-sale .links-controls .control-item input.checkbox-round:checked {
  background-color: #982065;
}
#bidstream-sale .links-controls .control-item input.checkbox-round::before {
  border: 1px solid red;
}
#bidstream-sale .links-controls .control-item label {
  color: #0B0A1D;
  font-size: 14px;
  font-weight: 500;
}
#bidstream-sale .hover-sensor {
  background-color: rgba(0, 0, 0, 0);
  height: 55%;
  left: 56%;
  position: absolute;
  top: 55%;
  transform: translate(-50%);
  width: 35%;
  z-index: 2;
}

/*================================================================================
$ BREADCRUMBS
================================================================================*/
#bidstream-sale .breadcrumb-container p,
#bidstream-sale .breadcrumb-container ul {
  display: inline-block;
  vertical-align: middle;
}
#bidstream-sale .breadcrumb-container p {
  color: #0B0A1D;
  font-weight: bold;
}
#bidstream-sale .breadcrumb-container p a {
  text-decoration: underline;
}
#bidstream-sale .breadcrumb-container ul {
  margin: 0 0 0 10px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  #bidstream-sale .breadcrumb-container ul {
    display: none !important;
  }
}
#bidstream-sale .breadcrumb-container ul li {
  vertical-align: middle;
}
#bidstream-sale .breadcrumb-container ul a,
#bidstream-sale .breadcrumb-container ul span {
  color: #535353;
}
#bidstream-sale .breadcrumb-container ul a {
  text-decoration: underline;
}
#bidstream-sale .breadcrumb-container ul a:hover,
#bidstream-sale .breadcrumb-container ul a:active,
#bidstream-sale .breadcrumb-container ul a:focus {
  color: #982065;
}
#bidstream-sale .top-bar {
  align-items: center;
  background-color: #F0F0F0;
  display: flex;
  left: 0;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media (min-width: 576px) {
  #bidstream-sale .top-bar {
    padding: 5px 20px;
  }
}
@media (min-width: 768px) {
  #bidstream-sale .top-bar {
    padding: 0 20px;
  }
}
@media (min-width: 1400px) {
  #bidstream-sale .top-bar {
    position: absolute;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .top-bar {
    padding: 5px 20px;
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #bidstream-sale .top-bar {
    position: relative;
    margin-top: 0;
  }
}
#bidstream-sale .top-bar .container {
  max-width: 1500px;
  padding: 0;
}
#bidstream-sale .top-bar .countTimer {
  width: 100%;
}
#bidstream-sale .top-bar .countTimer .auction-startTimer {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  color: #3D3D3B;
  font-weight: 400;
  letter-spacing: 1px;
}
@media (min-width: 576px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    display: flex;
  }
}
@media (min-width: 768px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    display: inline-block;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media screen and (max-width: 873px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 416px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    font-size: 14px;
    padding: 1px 0px;
    margin-left: 5px;
  }
}
@media screen and (max-width: 377px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    font-size: 14px;
    margin-left: 1px;
  }
}
@media screen and (max-width: 377px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    font-size: 14px;
  }
}
@media screen and (max-width: 322px) {
  #bidstream-sale .top-bar .countTimer .auction-startTimer {
    font-size: 13px;
    margin-left: -11px;
  }
}
#bidstream-sale .top-bar .countTimer .auction-startTimer span {
  font-weight: 600;
}
#bidstream-sale .top-bar .countTimer .auction-startTimer span.live-auction-status {
  color: #3B8204;
  font-size: 20px;
  margin-right: 5px;
  margin-top: -5px;
}

/*================================================================================
$ AUCTION TITLE
================================================================================*/
#bidstream-sale .auction-title-container h1,
#bidstream-sale .links-controls h1 {
  color: #0B0A1D;
  font-size: 28px;
  font-family: "Georgia", sans-serif;
}
@media (max-width: 575.98px) {
  #bidstream-sale .auction-title-container h1,
  #bidstream-sale .links-controls h1 {
    margin-bottom: 0;
    text-align: center;
  }
}
#bidstream-sale .auction-title-container h1 span,
#bidstream-sale .links-controls h1 span {
  color: #0B0A1D;
  font-weight: 400;
  font-size: 32px;
}
@media (max-width: 575.98px) {
  #bidstream-sale .auction-title-container h1 span,
  #bidstream-sale .links-controls h1 span {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .auction-title-container p a.view-link,
  #bidstream-sale .links-controls p a.view-link {
    padding-top: 6px;
    float: left;
  }
}
#bidstream-sale .links-controls {
  margin-top: 20px;
}
@media (min-width: 576px) {
  #bidstream-sale .links-controls {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  #bidstream-sale .links-controls {
    padding: 0 30px;
  }
}
@media (min-width: 1400px) {
  #bidstream-sale .links-controls {
    padding: 0 30px;
    max-width: 1500px;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .links-controls {
    padding: 0 25px;
  }
}
#bidstream-sale .links-controls a {
  color: #982065;
  text-decoration: underline;
}
#bidstream-sale .account-buttons {
  padding-bottom: 7px;
  padding-top: 7px;
  text-align: right;
}
@media (max-width: 575.98px) {
  #bidstream-sale .account-buttons {
    padding: 0 15px;
  }
}
#bidstream-sale .account-buttons .btn {
  border: none;
  color: #4D4D4D;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  line-height: 35px;
  min-height: 35px;
  text-decoration: none;
}
#bidstream-sale .account-buttons .btn.approved-to-bid-btn {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #46939D;
  color: #46939D;
  padding: 0 20px;
}
@media (max-width: 575.98px) {
  #bidstream-sale .account-buttons .btn.approved-to-bid-btn {
    padding: 0px 20px;
  }
}
@media (max-width: 991.98px) {
  #bidstream-sale .account-buttons .btn {
    padding: 0px 30px;
  }
}
#bidstream-sale .account-buttons .btn-myaccount {
  background-color: transparent;
}
#bidstream-sale .account-buttons .btn-myaccount:hover, #bidstream-sale .account-buttons .btn-myaccount:active, #bidstream-sale .account-buttons .btn-myaccount:focus {
  background-color: #939393;
  color: #FFFFFF;
}
#bidstream-sale .account-buttons .btn-signout {
  background-color: #939393;
  color: #FFFFFF;
}
#bidstream-sale .account-buttons .btn-signout:hover, #bidstream-sale .account-buttons .btn-signout:active, #bidstream-sale .account-buttons .btn-signout:focus {
  background-color: transparent;
  color: #4D4D4D;
}

@media screen and (max-width: 899px) {
  #bidstream-sale .links-controls {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  #bidstream-sale .links-controls {
    margin-top: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .links-controls {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
/*================================================================================
$ LOT INFORMATION
================================================================================*/
#bidstream-sale .live-auction-container {
  margin-top: 20px;
}
@media (min-width: 576px) {
  #bidstream-sale .live-auction-container {
    padding: 0 25px;
  }
}
@media (min-width: 768px) {
  #bidstream-sale .live-auction-container {
    padding: 0 30px;
  }
}
@media (min-width: 1400px) {
  #bidstream-sale .live-auction-container {
    padding: 0;
    max-width: 1520px;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container {
    padding: 0;
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information {
    order: 3;
  }
}
#bidstream-sale .live-auction-container__lot-information__details__image img {
  display: block;
  margin: 0 auto;
  max-height: 375px;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information__details__image img {
    max-height: 100%;
  }
}
#bidstream-sale .live-auction-container__lot-information__details__name {
  padding: 0 15px;
}
#bidstream-sale .live-auction-container__lot-information__details__name p,
#bidstream-sale .live-auction-container__lot-information__details__name h3 {
  line-height: 1.25;
}
#bidstream-sale .live-auction-container__lot-information__details__name .lot-name {
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  margin: 10px 0 0;
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information__details__name .lot-name {
    font-size: 18px;
    line-height: 22px;
  }
}
#bidstream-sale .live-auction-container__lot-information__details__name .lot-subname {
  font-weight: 700;
  margin: 10px 0 0;
  text-transform: uppercase;
}
#bidstream-sale .live-auction-container__lot-information__details__name .lot-description {
  color: #000000;
  margin: 15px 0 0;
}
#bidstream-sale .live-auction-container__lot-information__details__name .lot-buyers-fee {
  margin: 15px 0 0;
  text-transform: uppercase;
}

/*================================================================================
$ BIDDING BOX
================================================================================*/
#bidstream-sale .live-auction-container__lot-information__bidding__title {
  padding: 20px 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 990px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__title {
    padding: 10px;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidding__title h3 {
  font-size: 18px;
  margin: 0;
}
#bidstream-sale .live-auction-container__lot-information__bidding__current {
  padding: 0 30px;
}
@media screen and (max-width: 990px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__current {
    padding: 0 15px;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box {
  border: 1px solid #E5E5E5;
  padding: 12px 10px;
}
@media screen and (max-width: 990px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box {
    padding: 7px;
  }
}
@media screen and (min-width: 576px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.current-bid-box--label, #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.asking-bid-box--label, #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.hammer-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.current-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.asking-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.hammer-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.current-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.asking-bid-box--label,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.hammer-bid-box--label {
    border-right: none;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.current-bid-box--price p, #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.current-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.current-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box.hammer-bid-box--price p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.asking-bid-box--price #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box.hammer-bid-box--price p {
  font-weight: 700;
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box p,
#bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box p {
  font-size: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 990px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box p,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box p,
  #bidstream-sale .live-auction-container__lot-information__bidding__current .hammer-bid-box p {
    font-size: 16px !important;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box {
  background-color: #F8F8F8;
}
@media screen and (max-width: 575px) {
  #bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.current-bid-box--price {
    border-top: none;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.current-bid-box--price p {
  color: #222E5B;
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .current-bid-box.current-bid-box--price span:not(.bid-value) {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box {
  border-top: none;
}
#bidstream-sale .live-auction-container__lot-information__bidding__current .asking-bid-box p {
  font-size: 22px;
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information__bidactions {
    width: 57%;
    position: absolute;
    right: 10px;
    margin-top: -130px;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidactions__messages {
  padding: 0 10px;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__messages.live-auction-container__lot-information__bidactions__messages--error p, #bidstream-sale .live-auction-container__lot-information__bidactions__messages.live-auction-container__lot-information__bidactions__messages--outbid p, #bidstream-sale .live-auction-container__lot-information__bidactions__messages.live-auction-container__lot-information__bidactions__messages--warning p {
  color: #982065;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__messages.live-auction-container__lot-information__bidactions__messages--winning p, #bidstream-sale .live-auction-container__lot-information__bidactions__messages.live-auction-container__lot-information__bidactions__messages--won p {
  color: #2FB400;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__messages p {
  font-size: 16px;
  font-weight: 700;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__buttons {
  padding: 0 10px 0;
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information__bidactions__buttons {
    padding: 0;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidactions__buttons button {
  align-items: center;
  display: flex;
  font-size: 16px;
  height: 45px;
  justify-content: center;
  min-width: 400px;
  width: 100%;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__buttons button.btn-place span {
  margin-left: 5px;
}
@media (max-width: 1399.98px) {
  #bidstream-sale .live-auction-container__lot-information__bidactions__buttons button {
    min-width: 100%;
  }
}
@media screen and (max-width: 990px) {
  #bidstream-sale .live-auction-container__lot-information__bidactions__buttons button {
    min-width: 0;
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .live-auction-container__lot-information__bidactions__buttons button {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.45);
    display: flow-root;
    flex-direction: column;
    font-size: 14px;
    height: auto;
    padding: 7px 15px;
  }
}
#bidstream-sale .live-auction-container__lot-information__bidactions__terms {
  padding: 20px 10px;
}
#bidstream-sale .live-auction-container__lot-information__bidactions__terms a {
  text-decoration: underline;
}

/*================================================================================
$ BROADCAST BOX
================================================================================*/
@media screen and (max-width: 599px) {
  #bidstream-sale .live-auction-container__broadcast {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
  }
  #bidstream-sale .live-auction-container__broadcast__stream {
    position: absolute;
    width: 100%;
    top: 55px;
    left: 0;
    margin: 0;
  }
  #bidstream-sale .live-auction-container__broadcast.live-auction-container {
    order: 4;
  }
}
#bidstream-sale #bidstream-player {
  display: block;
}
#bidstream-sale .stream-placeholder {
  background-color: #F8F8F8;
  border: 2px solid #D2D2D2;
  display: block;
  position: relative;
}
#bidstream-sale .stream-placeholder .text {
  color: #982065;
  font-weight: bold;
  font-size: 16px;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
}
@media (max-width: 575.98px) {
  #bidstream-sale .stream-placeholder .text {
    top: 40%;
  }
}
@media screen and (max-width: 639px) {
  #bidstream-sale .simulcast-stream {
    margin-bottom: 22px;
    min-height: 250px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .simulcast-stream {
    min-height: 150px;
  }
}
#bidstream-sale .simulcast-stream .stream-container {
  max-height: 250px;
  min-height: 250px;
  position: relative;
  width: 100%;
}
#bidstream-sale .simulcast-stream .stream-container > img {
  height: 100%;
  position: absolute;
  width: 100%;
  width: 100%;
  z-index: 2;
}
#bidstream-sale .simulcast-stream .stream-container > canvas {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
#bidstream-sale .simulcast-stream .stream-container .overlay-message {
  color: white;
  font-size: 24px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}
#bidstream-sale .simulcast-stream .stream-controls {
  background-color: #F0F0F0;
  padding: 2px;
  zoom: 1;
  max-height: 22px;
}
#bidstream-sale .simulcast-stream .stream-controls:before, #bidstream-sale .simulcast-stream .stream-controls:after {
  content: "";
  display: table;
}
#bidstream-sale .simulcast-stream .stream-controls:after {
  clear: both;
}
#bidstream-sale .simulcast-stream .stream-controls .video-toggle,
#bidstream-sale .simulcast-stream .stream-controls .audio-toggle {
  float: left;
  width: auto;
  margin-left: 10px;
  position: relative;
  top: 0;
  padding: 0 8px;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#bidstream-sale .simulcast-stream .stream-controls .video-toggle > span,
#bidstream-sale .simulcast-stream .stream-controls .audio-toggle > span {
  color: rgba(51, 51, 51, 0.66);
  font-weight: bold;
  font-size: 14px;
  outline: none;
}
#bidstream-sale .simulcast-stream .stream-controls .video-toggle:hover,
#bidstream-sale .simulcast-stream .stream-controls .audio-toggle:hover {
  background-color: #585858;
  outline: none;
}
#bidstream-sale .simulcast-stream .stream-controls .video-toggle:hover > span,
#bidstream-sale .simulcast-stream .stream-controls .audio-toggle:hover > span {
  color: white;
  outline: none;
}

/*================================================================================
$ LOTS SCROLLER
================================================================================*/
#bidstream-sale .image-gallery {
  max-height: 460px;
  background: #FFFFFF;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  #bidstream-sale .image-gallery {
    max-height: 500px;
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  #bidstream-sale .image-gallery {
    max-height: 160px;
    min-height: 160px;
    width: 43%;
  }
}
#bidstream-sale .live-auction-container__broadcast__lots {
  margin-top: 25px;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs {
  border-bottom: 1px solid #E5E5E5;
  padding: 15px 20px;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li:hover a, #bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li:active a, #bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li:focus a, #bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li.active a {
  color: #222E5B;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li:first-child {
  margin-left: 0;
}
#bidstream-sale .live-auction-container__broadcast__lots__tabs ul > li a {
  color: #C4C4C4;
  display: block;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist {
  padding: 12px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input {
  background-color: #F8F8F8;
  background-image: url("../images/icons/bidstream-search-icon.png");
  background-position: 14px center;
  background-repeat: no-repeat;
  border: 1px solid #E5E5E5;
  border-radius: 0;
  font-size: 14px;
  padding: 10px 10px 10px 40px;
  width: 100%;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input::-webkit-input-placeholder {
  color: #222E5B;
  font-size: 14px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input:-moz-placeholder {
  color: #222E5B;
  font-size: 14px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input::-moz-placeholder {
  color: #222E5B;
  font-size: 14px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input:-ms-input-placeholder {
  color: #222E5B;
  font-size: 14px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__search input:focus {
  background-color: #FFFFFF;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listings {
  margin-top: 20px;
  max-height: 225px;
  overflow-y: auto;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listing {
  cursor: pointer;
  margin-top: 10px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listing:first-child {
  margin-top: 0;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listing .lot-image img {
  display: block;
  margin: 0 auto;
  max-height: 75px;
  max-width: 100%;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listing .lot-information {
  padding-left: 12px;
}
#bidstream-sale .live-auction-container__broadcast__lots__lotlist__listing .lot-information .lot-name p {
  color: #222E5B;
  font-weight: bold;
}

body.site.com_bidstream.view-Sale p,
body.site.com_bidstream.view-sale p {
  margin: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container {
  max-width: 300px;
  margin-left: 25px;
  width: 100%;
}
@media screen and (max-width: 499px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container,
  body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container {
    max-width: 100%;
    padding: 0 5px;
    margin-left: 0;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .text,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .text {
  color: #982065;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner {
  position: relative;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .text,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .text {
  background-color: #F0F0F0;
  float: left;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 8px;
  width: 87%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown {
  background-color: #982065;
  border: 1px solid #982065;
  color: white;
  cursor: pointer;
  float: right;
  font-family: monospace;
  font-size: 23px;
  font-weight: bold;
  padding: 1px 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 13%;
}
@media screen and (max-width: 499px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown,
  body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown:hover,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .current-total .control-dropdown:hover {
  color: #982065;
  background-color: transparent;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container {
  zoom: 1;
  width: 100%;
  position: absolute;
  top: 42px;
  z-index: 9;
  background-color: #F0F0F0;
  border: 2px solid #F0F0F0;
  -webkit-box-shadow: 0px 5px 5px 0px #f9f9f9;
  -moz-box-shadow: 0px 5px 5px 0px #f9f9f9;
  -ms-box-shadow: 0px 5px 5px 0px #f9f9f9;
  -o-box-shadow: 0px 5px 5px 0px #f9f9f9;
  box-shadow: 0px 5px 5px 0px #f9f9f9;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:before, body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:after,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:before,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:after {
  content: "";
  display: table;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:after,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container:after {
  clear: both;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown {
  background-color: #F0F0F0;
  padding: 12px;
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .title,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .title {
  float: left;
  width: 100%;
  padding-bottom: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .title .text,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .title .text {
  font-weight: bold;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown > .no-lots,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown > .no-lots {
  float: left;
  width: 100%;
  text-align: center;
  color: red;
  font-weight: bold;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list {
  float: left;
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 5px 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item {
  float: left;
  width: 100%;
  padding: 1px 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text {
  font-weight: normal;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text.key,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text.key {
  float: left;
  width: auto;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text.value,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .lot-item .text.value {
  float: right;
  width: auto;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item {
  float: left;
  width: 100%;
  padding: 0;
  padding-top: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text {
  font-weight: bold;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text.key,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text.key {
  float: left;
  width: auto;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text.value,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .total-breakdown .amounts-list .cost-item .text.value {
  float: right;
  width: auto;
  font-weight: normal;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter {
  background-color: white;
  padding: 12px;
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .title,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .title {
  float: left;
  width: 100%;
  font-weight: normal;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input {
  float: left;
  width: 100%;
  padding: 8px 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > input,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > input {
  float: left;
  width: 60%;
  border: 1px solid #F0F0F0;
  font-weight: normal;
  font-size: 14px;
  padding: 4px 5px;
  min-height: 1px;
  height: 34px;
  margin: 0;
  margin-bottom: 8px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > button,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > button {
  float: right;
  width: 30%;
  background-color: #982065;
  padding: 5px;
  border: 1px solid #982065;
  color: white;
  font-weight: normal;
  font-size: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > button:hover,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .cost-input > button:hover {
  color: #982065;
  background-color: transparent;
}
body.site.com_bidstream.view-Sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .info,
body.site.com_bidstream.view-sale #bidstream-sale .total-costs-container .total-limiter-inner .breakdown-container .cost-limiter .info {
  float: left;
  width: 100%;
  font-weight: normal;
  font-size: 11px;
  line-height: 1.2;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information {
  float: left;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 639px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information {
    margin-bottom: 0;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .hover-sensor,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .hover-sensor {
  position: absolute;
  top: 55%;
  left: 56%;
  width: 35%;
  height: 55%;
  transform: translate(-50%);
  background-color: rgba(0, 0, 0, 0);
  z-index: 2;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-images,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-images {
  width: 45%;
  float: left;
  padding-right: 25px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-images .display-image,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-images .display-image {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-images .display-image > img,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-images .display-image > img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: auto;
  height: auto;
}
@media screen and (max-width: 639px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-images .display-image,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-images .display-image {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 639px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-images,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-images {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number {
  padding-bottom: 15px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #efefef;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .text {
  font-size: 18px;
  font-family: "Gotham", sans-serif;
  margin-top: 13px;
  width: auto;
  font-weight: 400;
  color: #797979;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .text.pull-left,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .text.pull-left {
  float: left;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .text.pull-right,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .text.pull-right {
  float: right;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .sv-button,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .sv-button {
  margin: 0 0 0 30px;
}
@media screen and (max-width: 767px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .sv-button,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .sv-button {
    margin: 10px 0;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .text > .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .text > .name {
  font-size: 18px;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  color: #333333;
  padding-right: 25px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .text > .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .text > .value {
  font-size: 18px;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  color: #333333;
  padding-right: 25px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number .registered-to-bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number .registered-to-bid {
  float: left;
  background-color: #78828b;
  padding: 0.96rem 1rem;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  cursor: default;
  margin-top: 0;
  margin-left: 1rem;
}
@media screen and (max-width: 939px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3),
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3) {
    float: left;
    clear: left;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 639px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3),
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3) {
    float: right;
    clear: none;
    margin-top: 0;
  }
}
@media screen and (max-width: 499px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3),
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-number p.text.pull-right:nth-child(3) {
    float: left;
    clear: left;
    margin-top: 0.5rem;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-name {
  float: left;
  margin: 0.75rem 0;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-name .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-name .text {
  font-size: 18px;
  font-family: "Arial", serif;
  font-weight: bold;
  color: #333333;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-strapline,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-strapline {
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-strapline .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-strapline .text {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 1rem;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-description,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-description {
  padding-bottom: 20px;
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-description .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-description .text {
  font-size: 16px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  color: #333333;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-description .show-more-text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-description .show-more-text {
  font-size: 14px;
  font-family: "Gotham", sans-serif;
  font-weight: normal;
  font-style: italic;
  color: #333333;
  cursor: pointer;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-reserve-status,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-reserve-status {
  color: #982065;
  font-size: 16px;
  margin-top: 10px;
  text-transform: uppercase;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-estimate,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-estimate {
  margin: 8px 0;
  justify-content: space-between;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-estimate span,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-estimate span {
  color: #0B0A1D;
  font-size: 16px;
  text-transform: uppercase;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-estimate .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-estimate .name {
  flex-basis: 55%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .lot-estimate .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .lot-estimate .value {
  flex-basis: 45%;
  font-weight: bold;
  text-align: right;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .condition-report,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .condition-report {
  padding-bottom: 20px;
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .condition-report .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .condition-report .text {
  font-size: 16px;
  font-family: "Gotham", sans-serif;
  font-weight: bold;
  color: #4d4d4d;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages {
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder {
  height: 50px;
  width: 250px;
  border: 1px solid #e3e3e3;
  background-color: #e3e3e3;
  margin-bottom: 10px;
  text-align: center;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder .text {
  color: #797979;
  font-family: "Gotham", sans-serif;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  height: 100%;
  padding-top: 10px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.fair-warning,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.fair-warning {
  background-color: #D90808;
  border: 1px solid #D90808;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.fair-warning .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.fair-warning .text {
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.outbid-bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.outbid-bid {
  background-color: transparent;
  border: 1px solid #797979;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.outbid-bid .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.outbid-bid .text {
  color: #555555;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-sold, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-won,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-sold,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-won {
  margin-top: 20px;
  background-color: #A5BA00;
  border: 1px solid #A5BA00;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-sold .text, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-won .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-sold .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-messages .message-holder.lot-won .text {
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information {
  zoom: 1;
  padding-bottom: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information:before, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information:after,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information:before,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information:after {
  content: "";
  display: table;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information:after,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information:after {
  clear: both;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p {
  padding-bottom: 5px;
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .name {
  font-weight: 100;
  color: #333333;
  font-size: 18px;
  width: 220px;
  display: block;
  float: left;
}
@media screen and (max-width: 1049px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .name,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .name {
    width: 140px;
  }
}
@media screen and (max-width: 881px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .name,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .name {
    width: 120px;
  }
}
@media screen and (max-width: 416px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .name,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .name {
    font-size: 16px;
  }
}
@media screen and (max-width: 322px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .name,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .name {
    width: 118px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .value {
  width: auto;
  font-weight: 100;
  color: #333333;
  font-size: 20px;
  display: block;
  float: left;
}
@media screen and (max-width: 416px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p .value,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p .value {
    font-size: 16px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .name, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .value {
  font-weight: 500;
  color: #000;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message {
  font-weight: bold;
  color: #000;
  font-size: 20px;
  padding-left: 20px;
  float: left;
}
@media screen and (max-width: 919px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message {
    font-size: 16px;
    width: 100%;
    padding-left: 0;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 881px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message {
    font-size: 15px;
  }
}
@media screen and (max-width: 377px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message {
    font-size: 13px;
  }
}
@media screen and (max-width: 322px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.current-bid .bid-message {
    font-size: 12px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.asking-bid .name, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.asking-bid .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.asking-bid .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.asking-bid .value {
  color: #982065;
  font-weight: bold;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .name, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .value {
  font-weight: 500;
  color: #9DC66B;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .bid-message,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid .bid-message {
  font-weight: bold;
  color: #9DC66B;
  font-size: 14px;
  font-style: italic;
  padding-left: 10px;
  padding-top: 2px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .name, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .value {
  color: #c1272d;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .bid-message,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.your-bid.losing .bid-message {
  color: #c1272d;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price {
  display: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price .name, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.hammer-price .value {
  font-weight: 500;
  color: #982065;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.lot-passed, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information p.lot-withdrawn,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.lot-passed,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information p.lot-withdrawn {
  font-weight: bold;
  font-size: 15px;
  color: #4d4d4d;
  padding-top: 20px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended {
  float: left;
  width: 100%;
  padding: 5px 15px;
}
@media screen and (max-width: 449px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended {
    width: 100%;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item {
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .name,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .name {
  flex-basis: 55%;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .name,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .name {
    font-size: 14px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .value {
  flex-basis: 45%;
  font-size: 16px;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .value,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .your-bid-extended .fee-item .value {
    font-size: 14px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container {
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid {
  float: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text {
  padding: 0 15px;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .key:first-child,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .key:first-child {
  color: #0D0D0D;
  flex-basis: 55%;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .key:first-child,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .key:first-child {
    font-size: 14px;
    flex-basis: 50%;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .value,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .value {
  color: #0B0A1D;
  flex-basis: 45%;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .value,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .value {
    font-size: 14px;
    flex-basis: 50%;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .status,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .status {
  float: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #c1272d;
  font-size: 14px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .status.winning,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text .status.winning {
  color: #9DC66B;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text.current .location,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .your-autobid .text.current .location {
  padding-right: 5px;
  color: #0B0A1D;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box {
  float: left;
  width: 100%;
  padding-top: 10px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box > label,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box > label {
  float: left;
  font-weight: bold;
  color: #4d4d4d;
  font-size: 15px;
  padding-bottom: 8px;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input {
  width: 100%;
  position: relative;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .currency-symbol,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .currency-symbol {
  border-radius: 3px 0px 0px 3px;
  position: absolute;
  background-color: #e3e3e3;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  width: 20px;
  text-align: center;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input {
  float: left;
  width: 100%;
  font-weight: normal;
  color: #4d4d4d;
  font-size: 15px;
  padding: 6px;
  padding-left: 15px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  height: auto;
  margin-left: 30px;
  margin-bottom: 10px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input.type_bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input.type_bid {
  height: 50px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input:focus-visible,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input input:focus-visible {
  outline: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid {
  background-color: #008B27;
  border: none;
  color: #FFFFFF;
  border-radius: 0;
  float: left;
  font-size: 14px;
  font-weight: bold;
  margin-right: 0;
  padding: 10px;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid:hover {
  background-color: #008B27;
  color: #fff;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled {
  background-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  color: white;
  cursor: not-allowed;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled:hover {
  background-color: #b9b9b9;
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box button.btn-outbid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box button.btn-outbid {
  background: #471753;
  color: #fff;
  padding: 10px 30px;
  width: 100%;
  border: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box button.btn.transparent,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box button.btn.transparent {
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 0;
  float: right;
  margin-left: 5%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box p.fair-warning,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container .auto-bid-box p.fair-warning {
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container hr,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container hr {
  background-color: #000000;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container a.show-fees,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .live-information .auto-bidding-container a.show-fees {
  cursor: pointer;
  color: #982065;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls {
  padding-bottom: 20px;
  zoom: 1;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:before, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:after,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:before,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:after {
  content: "";
  display: table;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:after,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls:after {
  clear: both;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live {
  margin-top: 15px;
  float: left;
  width: 100%;
}
@media screen and (max-width: 849px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live {
    margin-top: 0;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place {
  float: left;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #008B27;
  padding: 10px;
  height: 45px;
  margin-right: 0;
  color: #008B27;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place:hover {
  background-color: #008B27;
  color: #fff;
}
@media screen and (max-width: 449px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place {
    float: left;
    width: 100%;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.disabled,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.disabled {
  background-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  color: white;
  cursor: not-allowed;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.disabled:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.disabled:hover {
  background-color: #b9b9b9;
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.message,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-place.message {
  padding-top: 10px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid {
  float: left;
  width: 100%;
  background-color: #ffffff;
  height: 45px;
  padding: 10px;
  margin-right: 0;
  font-weight: bold;
  font-size: 14px;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid:hover {
  background-color: #008B27;
  color: #fff;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.remove,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.remove {
  float: right;
  margin-left: 5%;
  margin-right: 0;
  background-color: #ffffff;
  border: 2px solid #950000;
  color: #950000;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.remove:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.remove:hover {
  background-color: #950000;
  color: #fff;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.unavailable,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.unavailable {
  float: right;
  margin-left: 5%;
  margin-right: 0;
  background-color: #ffffff;
  border: none;
  font-weight: 400;
  color: #A9A9A9;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.disabled,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.disabled {
  background-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  color: white;
  cursor: not-allowed;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.disabled:hover,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-live .btn-cutbid.disabled:hover {
  background-color: #b9b9b9;
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission {
  display: none;
  position: relative;
  max-width: 320px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input {
  border: 1px solid #e3e3e3;
  color: #333333;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 7px;
  padding-left: 30px;
  display: inline-block;
  height: auto;
  min-height: 1px;
  max-height: 34px;
  border-radius: 0;
  width: 50%;
  font-weight: normal;
  font-size: 16px;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input::-webkit-input-placeholder,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  color: #9e9e9e;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input:-moz-placeholder,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input:-moz-placeholder {
  font-weight: normal;
  font-size: 16px;
  color: #9e9e9e;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input::-moz-placeholder,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input::-moz-placeholder {
  font-weight: normal;
  font-size: 16px;
  color: #9e9e9e;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input:-ms-input-placeholder,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission input:-ms-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  color: #9e9e9e;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission .btn-place,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission .btn-place {
  position: absolute;
  top: 9px;
  right: 6px;
  text-transform: uppercase;
  color: #9DC66B;
  font-weight: bold;
  font-size: 15px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission .currency-symbol,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details .bidding-controls .bid-commission .currency-symbol {
  position: absolute;
  height: 34px;
  background: #e3e3e3;
  width: 24px;
  text-align: center;
  padding-top: 9px;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information .lot-details,
  body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information .lot-details {
    width: 100%;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.not-active .current-bid, body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.not-active .asking-bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.not-active .current-bid,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.not-active .asking-bid {
  display: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.not-active .bidding-controls .bid-commission,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.not-active .bidding-controls .bid-commission {
  display: block;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.not-active .bidding-controls .bid-live,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.not-active .bidding-controls .bid-live {
  display: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.lot-finished .live-information p.hammer-price,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.lot-finished .live-information p.hammer-price {
  display: block;
}
body.site.com_bidstream.view-Sale #bidstream-sale .current-lot-information.lot-finished .bidding-controls,
body.site.com_bidstream.view-sale #bidstream-sale .current-lot-information.lot-finished .bidding-controls {
  display: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-status-banner,
body.site.com_bidstream.view-sale #bidstream-sale .auction-status-banner {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-status-banner .ribbon-item,
body.site.com_bidstream.view-sale #bidstream-sale .auction-status-banner .ribbon-item {
  text-align: center;
  padding: 8px 10px;
  background-color: #e3e3e3;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-status-banner .ribbon-item .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-status-banner .ribbon-item .text {
  color: #333;
  font-family: "Gotham", sans-serif;
  font-weight: bold;
  font-size: 16px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue {
  background: #FFFFFF;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner {
  flex-direction: column;
  max-height: 362px;
  min-height: 362px;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .tab-content > .tab-pane.active,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .tab-content > .tab-pane.active {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner,
  body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner {
    max-height: 300px;
    min-height: 300px;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin: 8px 0;
  padding: 0 8px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item:hover > .row, body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.active > .row,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item:hover > .row,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.active > .row {
  background-color: #FBF8F8;
  border: 1px solid #982065;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item > .row,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item > .row {
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span {
  padding: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.won,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.won {
  background: #578B45;
  color: #FFFFFF;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.sold, body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.lost,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.sold,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item span.lost {
  background: #A60000;
  color: #FFFFFF;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message {
  position: absolute;
  top: 20px;
  left: -29px;
  font-family: "proxima-nova", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: white;
  background-color: #ff0076;
  width: 100%;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.withdrawn,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.withdrawn {
  background-color: #5d5af9;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.passed,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.passed {
  background-color: #cc0606;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.sold,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .corner-message.sold {
  background-color: #c3a22a;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.finished .corner-message,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.finished .corner-message {
  display: block;
  width: 100px;
  height: 100px;
  border-style: solid;
  border-width: 0 200px 200px 0;
  border-color: transparent #da0039 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99999;
  color: white;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.finished .corner-message .corner-message-text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item.finished .corner-message .corner-message-text {
  position: relative;
  font-size: 2.1em;
  top: 0;
  right: -90px;
  font-family: sans-serif, "Helvetica Neue", Helvetica, Arial;
  font-weight: 200;
  line-height: 1.1;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-image,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-image {
  align-items: center;
  display: flex;
  justify-content: center;
  max-height: 100px;
  min-height: 100px;
  min-width: 80px;
  overflow: hidden;
  position: relative;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-image > img,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-image > img {
  display: flex;
  max-height: 100px;
  height: 100px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-number,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-number {
  margin: 0;
  padding-top: 7px;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-number .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-number .text {
  color: #982065;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 5px;
  text-transform: uppercase;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-name,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-name {
  margin: 0;
  text-align: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-name .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-name .text {
  color: #000000;
  font-family: "Georgia", sans-serif;
  line-height: 1.25;
  margin-bottom: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-reserve .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-reserve .text {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: #0B0A1D;
  opacity: 0.5;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate {
  margin: 0;
  text-align: left;
  width: 100%;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate .text {
  color: #0B0A1D;
  margin: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate .text .value,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-estimate .text .value {
  font-weight: bold;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid {
  margin-bottom: 7px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--winning .value__bid,
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--winning .value__type,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--winning .value__bid,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--winning .value__type {
  color: #2FB400;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--losing .value__bid,
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--losing .value__type,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--losing .value__bid,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid.lot-scroller-autobid--losing .value__type {
  color: #BA2B2B;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .text,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .text {
  color: #000000;
  margin: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .text .value,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .text .value {
  font-weight: bold;
  padding: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .value__bid,
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .value__type,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .value__bid,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-scroller-autobid .value__type {
  padding: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status p,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status p {
  font-weight: bold;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--sold,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--sold {
  color: #000000;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--passed,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--passed {
  color: #BA2B2B;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--winner,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue .catalogue-inner .lot-item .lot-status .lot-status-msg.lot-status-msg--winner {
  color: #2FB400;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs {
  border-bottom: 1px solid #D3D2DB;
  margin-bottom: 0;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  color: #4D4D4D;
  min-width: auto;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button,
  body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button {
    letter-spacing: 0;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button.nav-link,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button.nav-link {
  padding: 10px 0;
  border: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button.nav-link.active,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button.nav-link.active {
  border-bottom: 4px solid #982065;
  font-weight: bold;
  color: #982065;
  text-transform: uppercase;
}
body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button:hover, body.site.com_bidstream.view-Sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button:focus,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button:hover,
body.site.com_bidstream.view-sale #bidstream-sale .auction-catalogue ul.nav.nav-tabs li button:focus {
  border: none;
  outline: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container p.lot-no,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container p.lot-no {
  font-weight: 700;
  font-size: 16px;
  color: #0B0A1D;
  letter-spacing: 1px;
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container p.lot-no,
  body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container p.lot-no {
    margin-left: 15px;
  }
}
@media (max-width: 575.98px) {
  body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion,
  body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion {
    display: none;
  }
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item {
  background: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button {
  background: none;
  font-size: 18px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button:focus,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button:focus {
  box-shadow: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button::after,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button::after {
  position: absolute;
  width: 19px;
  height: 10px;
  right: 0px;
  line-height: 20px;
  text-align: center;
  transform-origin: center center;
  transition: all ease-in-out 0.2s;
  content: "";
  background: url(../images/icons/arrow-accordion-lot-detail.svg) right top no-repeat transparent;
  background-size: contain;
  display: flex;
  transform: rotate(180deg);
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button[aria-expanded=true]::after,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button[aria-expanded=true]::after {
  transform: rotate(0deg);
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button[aria-expanded=true]::before,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button[aria-expanded=true]::before {
  content: "Hide ";
  margin-right: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button.collapsed::after,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button.collapsed::after {
  transform: rotate(180deg);
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button.collapsed::before,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item h2 button.collapsed::before {
  content: "Show ";
  margin-right: 5px;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-button:focus,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-button:focus {
  border: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-button:not(.collapsed),
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: initial;
  border: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-item:last-of-type .accordion-collapse,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-item:last-of-type .accordion-collapse {
  border: none;
}
body.site.com_bidstream.view-Sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-body p.lot-description,
body.site.com_bidstream.view-sale #bidstream-sale .lot-information-container .accordion .accordion-item .accordion-body p.lot-description {
  color: #0B0A1D;
}

/*================================================================================
$ BID LIST
================================================================================*/
@media screen and (max-width: 767px) {
  .bidstream__bids {
    padding-left: 0;
    padding-right: 0;
  }
}

.bidstream__bids__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bidstream__bids__inner {
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.2);
  }
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs {
  border-bottom: 1px solid #D3D2DB;
  margin-bottom: 0;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li {
  padding: 5px 0;
  margin: 5px 15px;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li:hover {
  border-bottom: 4px solid #982065;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li a {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  color: #4D4D4D;
  min-width: auto;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  .bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li a {
    letter-spacing: 0;
  }
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li a.nav-link {
  padding: 10px 0;
  border: none;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li a:hover, .bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li a:focus {
  outline: none;
  text-decoration: none;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li.active {
  border-bottom: 4px solid #982065;
  font-weight: bold;
  color: #982065;
  text-transform: uppercase;
}
.bidstream__bids__inner .bidstream__bids__tabs ul.nav.nav-tabs li.active a {
  font-weight: bold;
  color: #982065;
  text-transform: uppercase;
}

.bidstream__bids__content p {
  line-height: 1.4;
}
.bidstream__bids__content .bidlist-inner {
  background: #FFFFFF;
  max-height: 200px;
  min-height: 100px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .bidstream__bids__content .bidlist-inner {
    max-height: 175px;
    min-height: 100px;
  }
}
.bidstream__bids__content .bidlist-item {
  background-color: #FBF8F8;
  margin: 0 auto;
  border: none;
}
.bidstream__bids__content .bidlist-item:nth-child(even) {
  background-color: #FBF8F8;
}
.bidstream__bids__content .bidlist-item .middle-col {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.bidstream__bids__content .bidlist-item .middle-col p.bid-value {
  font-size: 12px;
  color: #0B0A1D !important;
}
.bidstream__bids__content .bidlist-item--fair-warning p.text-red {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #982065;
}
.bidstream__bids__content .bidlist-item.bidlist-item--header {
  background-color: #FFFFFF;
  margin: 0 auto;
}
.bidstream__bids__content .bidlist-item.bidlist-item--header p {
  color: #000000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.bidstream__bids__content .bidlist-item p {
  margin: 0;
  padding: 6px;
  letter-spacing: 1px;
}
@media (max-width: 575.98px) {
  .bidstream__bids__content .bidlist-item p {
    font-size: 12px;
  }
}
.bidstream__bids__content .bidlist-item p.text-red {
  color: #982065 !important;
  letter-spacing: 1px;
}
.bidstream__bids__content .bidlist-item p.bid-type {
  font-size: 10px !important;
  color: #0B0A1D !important;
}

/*================================================================================
$ MODALS
================================================================================*/
.modal.modal--futurelot.show {
  display: block;
}
.modal.modal--futurelot .close_modal {
  display: block;
  margin: 0 0 0 auto;
}
.modal.modal--futurelot .modal-dialog {
  left: 50%;
  max-width: 700px;
  position: absolute;
  top: 30%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .modal.modal--futurelot .modal-dialog {
    margin: 0;
    top: 50%;
  }
}
@media screen and (max-width: 767px) {
  .modal.modal--futurelot .overlay-lot-image {
    margin-bottom: 10px;
  }
}
.modal.modal--futurelot .overlay-lot-image img {
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details p {
  color: #0B0A1D !important;
}
.modal.modal--futurelot .overlay-lot-details .overlay-lot-details__lotnumber {
  text-transform: uppercase;
}
.modal.modal--futurelot .overlay-lot-details .overlay-lot-details__lotname {
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  margin: 10px 0 0;
}
@media (max-width: 575.98px) {
  .modal.modal--futurelot .overlay-lot-details .overlay-lot-details__lotname {
    font-size: 18px;
    line-height: 22px;
  }
}
.modal.modal--futurelot .overlay-lot-details .overlay-lot-details__lotestimate {
  margin-top: 5px !important;
}
.modal.modal--futurelot .overlay-lot-details .overlay-lot-status {
  margin-top: 7px !important;
  font-weight: bold;
}
.modal.modal--futurelot .overlay-lot-details .overlay-lot-status.lot-passed, .modal.modal--futurelot .overlay-lot-details .overlay-lot-status.lot-withdrawn {
  color: #BA2B2B !important;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container {
  float: left;
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid {
  float: left;
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text {
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .key:first-child {
  color: #0D0D0D;
  flex-basis: 55%;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .key:first-child {
    font-size: 14px;
    flex-basis: 50%;
  }
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .value {
  color: #0B0A1D;
  flex-basis: 45%;
  font-size: 16px;
  font-weight: 700;
  padding-left: 5px;
  text-align: right;
}
@media (max-width: 575.98px) {
  .modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .value {
    font-size: 14px;
    flex-basis: 50%;
  }
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .status {
  float: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #c1272d;
  font-size: 14px;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text .status.winning {
  color: #9DC66B;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .your-autobid .text.current .location {
  padding-right: 5px;
  color: #0B0A1D;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box {
  float: left;
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box > label {
  float: left;
  font-weight: bold;
  color: #4d4d4d;
  font-size: 15px;
  padding-bottom: 8px;
  width: 100%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input {
  width: 100%;
  position: relative;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input .currency-symbol {
  border-radius: 3px 0px 0px 3px;
  position: absolute;
  background-color: #e3e3e3;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  width: 20px;
  text-align: center;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input input {
  float: left;
  width: 100%;
  font-weight: normal;
  color: #4d4d4d;
  font-size: 15px;
  padding: 6px;
  padding-left: 15px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  height: auto;
  margin-left: 30px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input input.type_bid {
  height: 50px;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input input:focus-visible {
  outline: none;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid {
  background-color: #008B27;
  border: none;
  color: #FFFFFF;
  border-radius: 0;
  float: left;
  font-size: 14px;
  font-weight: bold;
  margin-right: 0;
  padding: 10px;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid:hover {
  background-color: #008B27;
  color: #fff;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled {
  background-color: #b9b9b9;
  border: 1px solid #b9b9b9;
  color: white;
  cursor: not-allowed;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box .auto-bid-input .btn-autobid.disabled:hover {
  background-color: #b9b9b9;
  color: white;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box button.btn-outbid {
  background: #471753;
  color: #fff;
  padding: 10px 30px;
  width: 100%;
  border: none;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box button.btn.transparent {
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 0;
  float: right;
  margin-left: 5%;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container .auto-bid-box p.fair-warning {
  font-weight: bold;
  font-size: 14px;
  color: #000000;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container hr {
  background-color: #000000;
}
.modal.modal--futurelot .overlay-lot-details .auto-bidding-container a.show-fees {
  cursor: pointer;
  color: #982065;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 700;
}

/* ====== BIDSTREAM - TAKEOVER ====== */
/* ======
BIDSTREAM - TAKEOVER
====== */
@media (max-width: 575.98px) {
  .slider-right:has(:not(.live-auction-container)) {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .slider-right:has(.live-auction-container) {
    display: flex;
  }
}

.home__banner__boxes:has(.live-auction-container) #column-id-1671024569163 {
  background: #FFFFFF;
  height: auto;
}
.home__banner__boxes:has(.live-auction-container) #column-id-1671024569163 > .sppb-column-overlay {
  background: none;
}
.home__banner__boxes:has(.live-auction-container) #sppb-addon-wrapper-1675464791694 {
  display: none;
}
.home__banner__boxes:has(.live-auction-container) #sppb-addon-wrapper-1676885174209 {
  margin: 0;
}
.home__banner__boxes:has(.live-auction-container) .sppb-section:first-child .sppb-column-addons > .sppb-addon-wrapper:first-child {
  display: none;
}
.home__banner__boxes:has(.live-auction-container) .banner__bottom--right-image {
  display: none;
}

.front__banner--takeover-container .loading-message {
  background-color: white;
  height: 50vh;
  position: relative;
  width: 100%;
  z-index: 1;
}
.front__banner--takeover-container .loading-message .loading-message-inner {
  background-color: white;
  border-radius: 5px;
  left: 50%;
  margin: 0 10px;
  padding: 20px;
  position: absolute;
  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%);
  -webkit-box-shadow: 0 0 12px 4px #e3e3e3;
  -moz-box-shadow: 0 0 12px 4px #e3e3e3;
  -ms-box-shadow: 0 0 12px 4px #e3e3e3;
  -o-box-shadow: 0 0 12px 4px #e3e3e3;
  box-shadow: 0 0 12px 4px #e3e3e3;
}
.front__banner--takeover-container .loading-message .loading-message-inner p {
  color: red;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.front__banner--takeover-container #bidstream-sale {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0;
  width: 100%;
}
.front__banner--takeover-container #bidstream-sale .auction-location-container {
  background-color: #000000;
  text-align: center;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container {
  display: flex;
  flex-direction: row;
  margin: 0;
}
@media (min-width: 576px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container {
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container {
    max-width: 1600px;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container {
    padding: 0;
  }
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__inner {
  border: 1px solid rgba(29, 29, 29, 0.1);
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream {
  background-color: #FFFFFF;
  margin: 0;
}
@media screen and (max-width: 599px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container__stream {
    margin-top: 0;
  }
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream #bidstream-player {
  background-color: rgba(255, 255, 255, 0.05) !important;
  display: block;
  height: 100% !important;
  width: 100% !important;
  z-index: 9;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream #bidstream-player video {
  background-color: transparent !important;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream .stream-placeholder {
  align-items: center;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1201px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream .stream-placeholder {
    height: 230px !important;
  }
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__stream .simulcast-stream .stream-placeholder p {
  color: #000000;
  font-size: 1.2rem;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information {
  display: flex;
  margin: 10px 0;
}
@media screen and (max-width: 599px) {
  .front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information {
    margin: 15px 0;
  }
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__image {
  background: #FFFFFF;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__image img {
  border: 1px solid rgba(29, 29, 29, 0.1);
  max-height: 125px;
  object-fit: contain;
  width: 125px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details h3.lot-name {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 0;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details p.lot-number {
  color: #982065;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 3px 0;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details p.lot-estimate {
  color: #0B0A1D;
  font-size: 12px;
  font-weight: 400;
  margin: 7px 0 0 0;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  text-align: center;
  width: 30%;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current {
  border-bottom: 1px solid #0B0A1D;
  border-top: 1px solid #0B0A1D;
  margin-top: 10px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current__message p {
  color: #dc3545;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .current-bid-box {
  align-items: center;
  background: #F7F7F7;
  display: flex;
  justify-content: space-between;
  padding: 7px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .current-bid-box--label p {
  color: #000000;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .current-bid-box--price p.bid-value {
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  order: 2;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .current-bid-box--price p.bid-with {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .asking-bid-box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 7px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .asking-bid-box--label {
  padding: 14px 7px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .asking-bid-box--label p {
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__lot-information__details__bidding__current .asking-bid-box--label p span {
  font-size: 14px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__auction-details {
  background: #FFFFFF;
  padding: 15px 20px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__auction-details h4 {
  color: #000000;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 5px 0;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__auction-details p {
  color: #0B0A1D;
  font-size: 10px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__auction-details p.auction-status {
  color: #982065;
  font-size: 12px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login {
  background: #FFFFFF;
  padding: 20px 11px 10px 11px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn {
  background-color: #FFFFFF;
  color: #982065;
  font-size: 12px;
  font-weight: 400;
  padding: 11px 10px;
  text-transform: uppercase;
  width: 48%;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.login-to-bid, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.view-lots-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.login-to-bid,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.view-lots-btn {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
  display: flex;
  justify-content: center;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.login-to-bid:hover, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.view-lots-btn:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.login-to-bid:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.view-lots-btn:hover {
  background-color: #982065;
  color: #FFFFFF;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.create-account, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.bid-live-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.create-account,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.bid-live-btn {
  background-color: #982065;
  border: 1px solid #982065;
  color: #FFFFFF;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.create-account:hover, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.bid-live-btn:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.create-account:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.bid-live-btn:hover {
  background-color: #578B45;
  border: 1px solid #578B45;
  color: #FFFFFF;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.register-to-bid-live-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.register-to-bid-live-btn {
  background-color: #982065;
  color: #FFFFFF;
  width: 100%;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.approved-to-bid-btn, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.live-bidding-pending-btn, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.watch-auction-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.approved-to-bid-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.live-bidding-pending-btn,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.watch-auction-btn {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
  width: 100%;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.approved-to-bid-btn:hover, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.live-bidding-pending-btn:hover, .front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons a.btn.watch-auction-btn:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.approved-to-bid-btn:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.live-bidding-pending-btn:hover,
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.watch-auction-btn:hover {
  color: #982065;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn {
  padding: 5px 20px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button.btn.pink-outline:hover {
  background: #982065;
  color: #FFFFFF;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container__login .lot-information__bidactions__buttons button .btn-new {
  font-weight: 700;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container .active-auction-selector {
  padding: 10px 15px;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container .active-auction-selector label,
.front__banner--takeover-container #bidstream-sale .live-auction-container .active-auction-selector select {
  width: 100%;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container .active-auction-selector label {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.front__banner--takeover-container #bidstream-sale .live-auction-container .active-auction-selector select {
  border-color: #982065;
  padding: 7px;
}

/* ====== BIDSTREAM - COMPLETE ====== */
/* ======
BIDSTREAM - COMPLETE
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.com_bidstream.view-sale.layout-complete .auction-complete-container,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container {
  float: left;
  width: 100%;
  padding-bottom: 200px;
  padding-top: 200px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container {
    padding-top: 100px;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row {
  float: left;
  width: 100%;
  padding-top: 30px;
  clear: both;
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row h1,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row h1 {
  font-family: "Georgia", sans-serif;
  margin-bottom: 3rem;
}
@media screen and (max-width: 770px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row h1,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row h1 {
    font-size: 33px;
  }
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row h1,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row h1 {
    font-size: 25px;
    line-height: 1.4;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row h4,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row h4 {
  color: #222E5B;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 20px;
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row p,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row p {
  font-size: 16px;
  padding-bottom: 10px;
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container {
  margin-top: 40px;
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn {
  background-color: #222E5B;
  color: white;
  border: 1px solid #222E5B;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 10px;
  padding: 10px 30px 10px 30px;
  text-transform: uppercase;
  -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;
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn:hover,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-upcoming-btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #222E5B;
  color: #222E5B;
  cursor: pointer;
  text-decoration: none;
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn {
  background-color: #A68F65;
  color: white;
  border: 1px solid #A68F65;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 10px;
  padding: 10px 30px 10px 30px;
  text-transform: uppercase;
  -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;
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn:hover,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-sold-btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #A68F65;
  color: #A68F65;
  cursor: pointer;
  text-decoration: none;
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn {
  background-color: #151D3C;
  color: white;
  border: 1px solid #151D3C;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 30px 10px 30px;
  text-transform: uppercase;
  -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;
}
@media screen and (max-width: 599px) {
  body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn,
  body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn {
    display: block;
    width: 100%;
  }
}
body.com_bidstream.view-sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn:hover,
body.com_bidstream.view-Sale.layout-complete .auction-complete-container .section-row .buttons-container .auction__complete-valuations-btn:hover {
  background-color: #FFFFFF;
  border: 1px solid #151D3C;
  color: #151D3C;
  cursor: pointer;
  text-decoration: none;
}

/* Account */
/* Account pages

/* SPECFIC ACCOUNT STYLE PAGES */
/*================================================================================
SECTIONS

- HEADER
- PERSONALISED LOT ALERTS
- NEED HELP?
- MY BIDDING
- MY LOTS
- ACCOUNT DETAILS
- LIST INVOICES
- MY VALUATIONS

================================================================================*/
.account-update-header {
  display: none;
}

.main-section .account-container .add-interests-container {
  float: left;
  width: 100%;
  padding-bottom: 20px;
}
.main-section .account-container .add-interests-container input#keyword_field {
  background: #FFFFFF;
  float: left;
  font-family: "Arial", serif;
  font-size: 1rem;
  height: 38px;
  width: 100%;
}
.main-section .account-container .add-interests-container a.add-interest-button {
  background-color: #982065;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  color: #FFFFFF;
  float: left;
  font-family: "Arial", serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 20px;
  -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;
}
@media (max-width: 575.98px) {
  .main-section .account-container .add-interests-container a.add-interest-button {
    border-radius: 5px;
  }
}
@media screen and (max-width: 379px) {
  .main-section .account-container .add-interests-container a.add-interest-button {
    text-align: center;
    width: 100%;
    margin: 10px 0 0;
  }
}
.main-section .account-container .add-interests-container a.add-interest-button:hover {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
  text-decoration: none;
}
.main-section .account-container .add-interests-container .interests__error {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.875rem;
}
.main-section .account-container .current-interests {
  padding-top: 30px;
}
.main-section .account-container .current-interests .interest-list .interest {
  margin: 0px;
  margin-right: 8px;
  margin-bottom: 8px;
}
.main-section .account-container .current-interests .remove-interest {
  width: 20%;
}
@media screen and (max-width: 599px) {
  .main-section .account-container .current-interests .remove-interest {
    width: 50%;
  }
}
.main-section .account-container .alerts__email--alerts {
  float: left;
  margin-top: 3rem;
  width: 100%;
}
.main-section .account-container .alerts__email--alerts .email__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.main-section .account-container .alerts__email--alerts .email__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container {
  margin-top: 2rem;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline {
  margin-top: 15px;
  max-width: 47%;
  flex-direction: row;
  display: flex;
  float: left;
  position: relative;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline {
    max-width: 40%;
  }
}
@media (max-width: 575.98px) {
  .main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline {
    max-width: 94%;
  }
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline p {
  color: #0B0A1D;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  margin-top: 2rem;
  padding-left: 2rem;
  width: 80%;
}
@media screen and (max-width: 1199px) {
  .main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline p {
    margin-top: 1rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 799px) {
  .main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline p {
    font-size: 18px;
    padding-left: 1.5rem;
  }
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline img.interests-img {
  float: left;
  min-width: 150px;
  height: 110px;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline img.interests-img ~ input[type=checkbox]:checked {
  border: 1px solid #982065;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline label {
  float: left;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 0 50px 0 15px;
  font-size: 14px;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  position: absolute;
  float: right;
  display: flex;
  align-items: center;
  right: 10px;
  top: 40px;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline input[type=checkbox]:checked {
  background-image: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/red-tick.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline input[type=checkbox]:checked + span,
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline input[type=checkbox]:checked + .interests-section__title {
  border: 1px solid #982065;
  display: flex;
  flex: 1;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests-list-inline .interests-section__title {
  display: flex;
  align-items: center;
}
.main-section .account-container .alerts__email--alerts .registration__interests--container .interests__content {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.main-section .password-input-control {
  position: relative;
  width: 60%;
}
.main-section .password-input-control input {
  padding-right: 50px;
  width: 100%;
}
.main-section .password-input-control .btn {
  height: 45px;
  position: absolute;
  right: 0;
  top: 0;
}

/*================================================================================
Need Help
================================================================================*/
@media screen and (max-width: 766px) {
  .main-section .help-items h5.emailHeading {
    padding-top: 15px;
  }
}

/*================================================================================
My Bidding
================================================================================*/
@media screen and (max-width: 766px) {
  .main-section .nav-tabs .phoneBids {
    padding-top: 20px;
  }
}

/*================================================================================
My Lots
================================================================================*/
@media screen and (max-width: 766px) {
  .main-section .nav-tabs li #unSoldLots-tab {
    padding-top: 20px;
  }
}
@media screen and (max-width: 766px) {
  .main-section .nav-tabs li #pendingLots-tab {
    padding-top: 20px;
  }
}

/*================================================================================
Register Wrapper
================================================================================*/
@media screen and (min-width: 768px) {
  .register-wrapper .ml-md-15 {
    margin-left: 0px;
  }
}
@media screen and (max-width: 770px) {
  .register-wrapper .btn-block {
    margin-bottom: 20px;
  }
}

/*================================================================================
List Invoices
================================================================================*/
.main-section #unpaidTab h4 {
  font-size: 16px;
}
.main-section #paidTab h4 {
  font-size: 16px;
}

/*================================================================================
My Valuations
================================================================================*/
.main-section h4.carTitle {
  font-size: 16px;
}

/*================================================================================
Pagination
================================================================================*/
.pagination ul {
  position: relative;
  min-height: 60px;
  text-align: center;
}
.pagination ul#pagination-ul-top {
  min-height: auto;
}
@media (max-width: 575.98px) {
  .pagination ul#pagination-ul-top {
    margin: 10px 0;
  }
}
.pagination ul#pagination-ul-top li a {
  padding: 10px 15px;
}
@media (max-width: 575.98px) {
  .pagination ul#pagination-ul-top li a {
    padding: 10px 11px;
  }
}
@media (max-width: 575.98px) {
  .pagination ul.list-inline li {
    width: auto;
  }
}
.pagination ul li a {
  position: relative !important;
  display: inline-block;
  padding: 10px 20px;
  color: #D2D2D2;
  transition: all ease-in-out 0.2s;
  background: transparent;
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .pagination ul li a {
    padding: 10px 11px;
  }
}
.pagination ul li a:hover {
  color: #FBF8F8;
  color: white;
}

/*================================================================================
Register To Bid - Dashboard Account Page
================================================================================*/
.main-section .registerBid {
  padding-top: 16px;
}

/*================================================================================
Contact Preferences - EMAIL PREFERENCES FORM
================================================================================*/
body.com_account #lot-alerts form {
  margin-top: 2rem !important;
}
body.com_account #lot-alerts form .form-group {
  margin-top: 1.5rem !important;
}
body.com_account #lot-alerts form .form-group label::before {
  top: 6px;
}
body.com_account #lot-alerts form .form-group label::after {
  top: 1px;
}
body.com_account #lot-alerts form h5 {
  color: #222E5B;
}
body.com_account #lot-alerts form .postTitle {
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  body.com_account #lot-alerts form .postTitle {
    padding-top: 40px;
  }
}
@media screen and (max-width: 766px) {
  body.com_account #lot-alerts form .postTitle {
    padding-top: 50px;
  }
}
@media screen and (max-width: 416px) {
  body.com_account #lot-alerts form .postTitle {
    padding-top: 60px;
  }
}
body.com_account #lot-alerts form .smsTitle {
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  body.com_account #lot-alerts form .smsTitle {
    padding-top: 50px;
  }
}
@media screen and (max-width: 416px) {
  body.com_account #lot-alerts form .smsTitle {
    padding-top: 60px;
  }
}
body.com_account #lot-alerts form .phoneTitle {
  padding-top: 20px;
}
@media screen and (max-width: 766px) {
  body.com_account #lot-alerts form .phoneTitle {
    padding-top: 50px;
  }
}
@media screen and (max-width: 599px) {
  body.com_account .main-section .row.card a.btn.gold {
    width: 100%;
  }
}
body.com_account .main-section .row.card a.upcoming__auctions--submit-entry {
  padding: 0 50px;
}
@media screen and (max-width: 599px) {
  body.com_account .main-section .row.card a.upcoming__auctions--submit-entry {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  body.com_account .main-section .row.card button.approved-to-bid-live {
    border: none;
    padding: 5px 40px;
    width: 100%;
  }
}
body.com_account .main-section .row.card button[type=submit] {
  font-weight: 500;
  font-size: 12px;
}
body.com_account .main-section .row button[type=submit] {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
}
body.com_account .main-section .address_book_saved_address .bg-light-gray {
  background-color: #F6F4F4;
}
body.com_account .main-section .address_book_saved_address h5 {
  font-weight: 600;
  font-size: 16px;
  color: #2D2D2D;
  font-family: "Georgia", sans-serif;
}
body.com_account .main-section .address_book_saved_address p {
  font-weight: normal;
  font-size: 14px;
  color: #000;
}
body.com_account .main-section .address_book_saved_address a {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D1D1D1;
}
body.com_account .main-section .address_book_saved_address a:first-of-type {
  color: #982065;
  display: flex;
  justify-content: flex-end;
}

.h-100 {
  height: 100%;
}

.account-page-container {
  margin-top: 20px;
}
.account-page-container .main-section p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
.account-page-container .main-section p.my-acc {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2em;
  color: #2D2D2D;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .account-page-container .main-section p.my-acc {
    margin-top: 10px;
  }
}
.account-page-container .main-section h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 50px;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .account-page-container .main-section h1 {
    font-size: 28px;
    line-height: 36px;
  }
}
.account-page-container .main-section h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.account-page-container .main-section h4.my-details-title {
  border-bottom: 1px solid #D3D2D3;
  padding-bottom: 20px;
}
.account-page-container .main-section .account__details--title {
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.account-page-container .main-section .account__alerts--title {
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.account-page-container .main-section .account__password--title {
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.account-page-container .main-section .marketing__title {
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
.account-page-container .main-section .credit-limit p {
  font-weight: normal;
  font-size: 14px;
}
.account-page-container .main-section .credit-limit p strong {
  margin-bottom: 0;
  font-size: 16px;
}
.account-page-container .main-section .upcoming_auction_name h3 {
  font-weight: normal;
  font-size: 24px;
  color: #3C3C3B;
  line-height: 31px;
}
.account-page-container .main-section .upcoming_auction_name ul li {
  color: #4D4D4D;
  font-size: 14px;
}
.account-page-container .main-section .upcoming_auction_name ul li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D2D2D;
}
.account-page-container .main-section .card.account-details-card {
  background: #F6F6F6;
}
.account-page-container .account-sidebar-container ul.list-group li#greeting-name {
  font-weight: normal;
  text-transform: capitalize;
  color: #383838;
  font-size: 18px;
  line-height: 20px;
  padding: 20px 25px;
}
.account-page-container .account-sidebar-container ul.list-group li#greeting-name h4 {
  font-weight: normal;
  color: #383838;
  font-size: 28px;
  line-height: 32px;
  padding: 0;
}
.account-page-container .account-sidebar-container ul.list-group li#page-watchList a span {
  margin-left: 10px;
}
.account-page-container .account-sidebar-container ul.list-group li#page-watchList a span.ss-heart-outline:before {
  content: "";
  position: relative;
  display: flex;
  width: 17px;
  height: 14px;
  margin-right: 3px;
  background: url("https://am-s3-bucket-assets.s3.eu-west-2.amazonaws.com/roseberys/website_assets/template_images/icons/wishlist-white-heart-icon.svg") right top no-repeat transparent;
  background-size: contain;
}
.account-page-container .my-activity-card p span {
  display: flex;
  flex-direction: column;
  color: #2D2D2D;
  font-weight: normal;
  font-size: 60px;
  line-height: 70px;
}

#account_details {
  margin: 0 auto;
  width: 100%;
}

/*================================================================================
Contact Preferences - EMAIL PREFERENCES FORM
================================================================================*/
.view-my_sales .my-bids.my-sales .auction-wrapper {
  align-items: center;
}
.view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right {
  background: none;
  padding: 0;
}
.view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right a, .view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right button {
  width: 200px;
  font-weight: 400;
  padding: 0 30px;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right a, .view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right button {
    margin-bottom: 15px;
  }
}
@media (max-width: 575.98px) {
  .view-my_sales .my-bids.my-sales .auction-wrapper .auction-details-right {
    text-align: center;
  }
}

/*================================================================================
My Account - Archive Access
================================================================================*/
.view-archive_access .archive-access-details p {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  text-transform: uppercase;
}
.view-archive_access .archive-access-details p span {
  display: flex;
  font-weight: 600;
}
.view-archive_access .archive-access-details button.btn {
  width: 340px;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .view-archive_access .archive-access-details button.btn {
    width: 100%;
  }
}
.view-archive_access .modal#signUpArchiveAccess .modal-dialog {
  max-width: 700px;
}
@media screen and (min-width: 600px) {
  .view-archive_access .modal#signUpArchiveAccess .modal-dialog {
    margin: 10rem auto;
  }
}
.view-archive_access .modal#signUpArchiveAccess .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  justify-content: flex-end;
}
.view-archive_access .modal#signUpArchiveAccess .modal-dialog .modal-content .modal-header .close {
  margin: 0rem 0rem 0rem 0rem;
}
.view-archive_access .modal#signUpArchiveAccess .modal-dialog .modal-content .modal-body {
  padding: 20px 100px 90px 100px;
}
@media screen and (max-width: 599px) {
  .view-archive_access .modal#signUpArchiveAccess .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
.view-archive_access .modal#signUpArchiveAccess .modal-dialog .modal-content .modal-body h1 {
  text-transform: inherit;
}
.view-archive_access .modal#signUpArchiveAccess button.btn {
  width: 340px;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .view-archive_access .modal#signUpArchiveAccess button.btn {
    width: 100%;
  }
}

/*================================================================================
My Account - My Details
================================================================================*/
.view-account_details .modal#EditBilling .modal-dialog, .view-account_details .modal#EditShipping .modal-dialog {
  max-width: 700px;
}
@media screen and (min-width: 600px) {
  .view-account_details .modal#EditBilling .modal-dialog, .view-account_details .modal#EditShipping .modal-dialog {
    margin: 10rem auto;
  }
}
.view-account_details .modal#EditBilling .modal-dialog .modal-content .modal-header, .view-account_details .modal#EditShipping .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  justify-content: flex-end;
}
.view-account_details .modal#EditBilling .modal-dialog .modal-content .modal-header .close, .view-account_details .modal#EditShipping .modal-dialog .modal-content .modal-header .close {
  margin: 0rem 0rem 0rem 0rem;
}
.view-account_details .modal#EditBilling .modal-dialog .modal-content .modal-body, .view-account_details .modal#EditShipping .modal-dialog .modal-content .modal-body {
  padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 599px) {
  .view-account_details .modal#EditBilling .modal-dialog .modal-content .modal-body, .view-account_details .modal#EditShipping .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
.view-account_details .modal#EditBilling .modal-dialog .modal-content .modal-body h1, .view-account_details .modal#EditShipping .modal-dialog .modal-content .modal-body h1 {
  text-transform: inherit;
}
.view-account_details .modal#EditBilling button.btn, .view-account_details .modal#EditShipping button.btn {
  width: 340px;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .view-account_details .modal#EditBilling button.btn, .view-account_details .modal#EditShipping button.btn {
    width: 100%;
  }
}
.view-account_details p.approval {
  background: #982065;
  border-radius: 5px;
  color: #FFFFFF;
  padding: 15px;
  text-align: center;
}
.view-account_details p.approval--red {
  background-color: #dc3545;
}

/*================================================================================
$ MY PAYMENT METHODS
================================================================================*/
.section__content .section__header h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
.section__content .section__content--info {
  border: 1px solid #939393;
  margin: 2rem 0;
  padding: 1rem;
}
.section__content .section__content--info .section__left--column img {
  margin-bottom: 1rem;
}
.section__content .section__content--info .section__left--column label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.section__content .section__content--info .section__left--column .card__no {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 799px) {
  .section__content .section__content--info .section__left--column .card__no {
    display: none;
  }
}
.section__content .section__content--info .section__left--column .billing__name {
  margin-bottom: 1rem;
}
.section__content .section__content--info .section__left--column .billing__contact {
  font-weight: 700;
}
.section__content .section__content--info .section__middle--column {
  margin-top: 3.5rem;
}
@media screen and (max-width: 799px) {
  .section__content .section__content--info .section__middle--column {
    margin-top: 1.5rem;
  }
}
.section__content .section__content--info .section__middle--column input {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  margin-bottom: 3px;
  width: 70%;
}
.section__content .section__content--info .section__middle--column input:disabled {
  background: none;
  border: 0;
  color: #0B0A1D;
  margin-bottom: 0;
  padding: 0;
}
.section__content .section__content--info .section__middle--column input:focus {
  outline: 2px solid #982065;
}
@media screen and (max-width: 599px) {
  .section__content .section__content--info .section__middle--column input {
    width: 100%;
  }
}
.section__content .section__content--info .section__middle--column input::-webkit-input-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column input:-moz-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column input::-moz-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column input:-ms-input-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  margin-bottom: 3px;
  width: 70%;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input:disabled {
  background: none;
  border-bottom: 0;
  color: #0B0A1D;
  margin-bottom: 0;
  padding: 0;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input:focus {
  outline: 2px solid #982065;
}
@media screen and (max-width: 599px) {
  .section__content .section__content--info .section__middle--column .billing__address--fields input {
    width: 100%;
  }
}
.section__content .section__content--info .section__middle--column .billing__address--fields input::-webkit-input-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input:-moz-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input::-moz-placeholder {
  color: #939393;
}
.section__content .section__content--info .section__middle--column .billing__address--fields input:-ms-input-placeholder {
  color: #939393;
}
@media screen and (max-width: 799px) {
  .section__content .section__content--info .section__buttons--container {
    margin-top: 1rem;
  }
}
.section__content .section__content--info .section__buttons--container a {
  float: right;
  margin-bottom: 1rem;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section__content .section__content--info .section__buttons--container a {
    float: left;
    margin-right: 1rem;
    margin-top: 1rem;
    width: 20%;
  }
}
@media screen and (max-width: 599px) {
  .section__content .section__content--info .section__buttons--container a {
    width: 40%;
  }
}
.section__content .section__content--info .payment__card--info {
  width: 70%;
}
@media screen and (max-width: 799px) {
  .section__content .section__content--info .payment__card--info {
    width: 100%;
  }
}
.section__content .section__content--info .payment__card--info span {
  color: #982065;
}
.section__content .second__content {
  margin-top: 1rem;
}
@media screen and (max-width: 599px) {
  .section__content .second__content .section__left--column .billing__address {
    margin-bottom: 1rem;
  }
}
.section__content .second__content .section__left--column .billing__address .account__company {
  padding-right: 7.2rem;
}
@media screen and (max-width: 599px) {
  .section__content .second__content .section__left--column .billing__address .account__company {
    padding-right: 0rem;
    display: block;
  }
}
.section__content .second__content .section__left--column .billing__address .account__number {
  padding-right: 2rem;
}
@media screen and (max-width: 599px) {
  .section__content .second__content .section__left--column .billing__address .account__number {
    padding-right: 0rem;
    display: block;
  }
}
.section__content .second__content .section__left--column .billing__address .account__director {
  padding-right: 4rem;
}
@media screen and (max-width: 599px) {
  .section__content .second__content .section__left--column .billing__address .account__director {
    padding-right: 0rem;
    display: block;
  }
}
.section__content .second__content .section__left--column .billing__address .account__owner {
  padding-right: 2rem;
}
@media screen and (max-width: 599px) {
  .section__content .second__content .section__left--column .billing__address .account__owner {
    padding-right: 0rem;
    display: block;
  }
}
.section__content .second__content .section__middle--column {
  margin-top: 0rem;
}

/*================================================================================
$ VIEWINGS & VALUATIONS
================================================================================*/
body.site.view-viewings_valuations .main-section {
  padding: 0rem;
}
body.site.view-viewings_valuations .main-section h1 {
  border-bottom: 1px solid #D2D2D2;
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  padding-bottom: 2rem;
  padding-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 1026px) {
  body.site.view-viewings_valuations .main-section h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-viewings_valuations .main-section h1 {
    font-size: 30px;
  }
}
body.site.view-viewings_valuations .main-section .appointments__details--section {
  padding: 4rem 7rem 4rem 7rem;
}
@media screen and (max-width: 599px) {
  body.site.view-viewings_valuations .main-section .appointments__details--section {
    padding: 2rem;
  }
}
body.site.view-viewings_valuations .main-section .appointments__details--section h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.view-viewings_valuations .main-section .appointments__details--section h2 {
    font-size: 25px;
  }
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content {
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 3rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes {
  padding: 0.5rem 0rem;
  position: relative;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes .title__select {
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  height: 33px;
  width: 50%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding-bottom: 5px;
  text-transform: uppercase;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes label span {
  color: #982065;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes input {
  border: 1px solid #0B0A1D;
  border-radius: 5px;
  color: #0B0A1D;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes .phone__select {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  height: 33px;
  width: 13%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__details--content .appointments__label--boxes .phone__input {
  border-radius: 0px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  position: absolute;
  width: 87%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__location--content {
  border-bottom: 1px solid #D2D2D2;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__location--content h4 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__location--content h4 span {
  color: #982065;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__location--content .appointments__location--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__location--content .appointments__checkboxes label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 3px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section {
  border-bottom: 1px solid #D2D2D2;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container {
  padding: 1rem 0rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container h4 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container h4 span {
  color: #982065;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container .appointments__select--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container select {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 33px;
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__selects--section .appointments__select--container textarea {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 150px;
  resize: none;
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container {
  background-color: #FBF8F8;
  border-bottom: 1px solid #D2D2D2;
  margin-top: 30px;
  float: left;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files {
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .text__info {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 0rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .text__drag {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding-bottom: 1rem;
  padding-top: 0rem;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileUpload {
  background: #982065;
  border: 2px solid #982065;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  margin: 1.25em auto;
  overflow: hidden;
  padding: 8px 30px 8px 30px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 200px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileUpload:hover, body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileUpload:active, body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileUpload:focus {
  background-color: #FFFFFF;
  color: #982065;
  border: 2px solid #982065;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 148px;
  height: 46px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files input[type=file] {
  bottom: 100%;
  position: fixed;
  right: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .custom-file-upload {
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  padding: 6px 12px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files p {
  text-align: center;
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .browseBtn {
  display: inline;
  width: 25%;
  background-color: #D2D2D2;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .dropzone__files .fileInfo {
  font-weight: 500;
  background-color: #D2D2D2;
  color: #939393;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list {
  float: left;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list .file-item {
  float: left;
  width: 18%;
  margin-right: 2%;
}
@media screen and (max-width: 599px) {
  body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list .file-item {
    width: 25%;
  }
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list .file-item .file-preview {
  position: relative;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list .file-item .file-preview .btn-remove {
  color: #982065;
  border-color: #982065;
  border-radius: 50%;
  padding: 5px 10px 5px 10px;
  position: absolute;
  right: 10px;
  top: 0px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .upload-container .file-list .file-item .file-preview .btn-remove .fa-times {
  font-size: 22px;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__date h2 {
  text-align: center;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking h4 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking h4 span {
  color: #982065;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking select {
  border-radius: 5px;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  height: 33px;
  width: 100%;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking .button__container {
  margin-top: 2rem;
  text-align: center;
}
body.site.view-viewings_valuations .main-section .appointments__details--section .appointments__time--booking .button__container button {
  padding: 0.2rem 3rem;
}

/*================================================================================
$ VALUATION APPOINTMENTS THANKYOU PAGE
================================================================================*/
body.site.view-valuations_thankyou .thankyou__top--heading {
  text-align: center;
}
body.site.view-valuations_thankyou .thankyou__top--heading h4 {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-valuations_thankyou .thankyou__sub-heading h1 {
  line-height: 1.2;
  margin: 0 auto;
  padding-bottom: 2rem;
  padding-top: 1rem;
  text-align: center;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  body.site.view-valuations_thankyou .thankyou__sub-heading h1 {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-valuations_thankyou .thankyou__sub-heading h1 {
    width: 100%;
  }
}
body.site.view-valuations_thankyou .thankyou__info {
  text-align: center;
}
body.site.view-valuations_thankyou .thankyou__buttons--container {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.view-valuations_thankyou .thankyou__buttons--container .homepage__btn {
    margin-bottom: 1rem;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-valuations_thankyou .thankyou__buttons--container .account__btn {
    width: 100%;
  }
}

/* OLD VALUATIONS / APPOINTMENTS STYLES - FELLOWS */
.account-content .introduction-text,
.account-content .wizard-steps-container {
  float: left;
  width: 100%;
}
.account-content .introduction-text {
  margin-bottom: 20px;
}
.account-content .wizard-steps-container .step-block {
  float: left;
  margin-bottom: 1rem;
  margin-top: 15px;
  width: 100%;
}
.account-content .wizard-steps-container .step-block .step-block__label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
.account-content .wizard-steps-container .step-block:first-child {
  margin-top: 0;
}
.account-content .wizard-steps-container .step-block label {
  color: #0B0A1D;
  font-size: 0.875rem;
}
.account-content .wizard-steps-container .step-block select {
  border: 1px solid #0B0A1D;
  border-radius: 5px;
  height: 35px;
  margin-top: 1rem;
  max-width: 300px;
  width: 100%;
}
.account-content .wizard-steps-container .step-block select option {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.account-content .wizard-steps-container .step-block textarea {
  border: 1px solid #0B0A1D;
  border-radius: 5px;
  margin-top: 1rem;
  max-width: 500px;
  min-width: 0;
}
@media screen and (max-width: 599px) {
  .account-content .wizard-steps-container .step-block textarea {
    max-width: 300px;
  }
}
.account-content .wizard-steps-container .step-block > label {
  float: left;
  margin-bottom: 5px;
  width: 100%;
}
.account-content .wizard-steps-container .step-block .input-box {
  float: left;
  width: 100%;
}
.account-content .wizard-steps-container .step-block .input-box--radio {
  margin-top: 0.5rem;
  text-align: left;
}
.account-content .wizard-steps-container .step-block .input-box--radio .input-box__inner {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}
.account-content .wizard-steps-container .step-block .input-box--radio .input-box__inner:first-child {
  margin-left: 0;
}
@media screen and (max-width: 416px) {
  .account-content .wizard-steps-container .step-block .input-box--radio .input-box__inner:last-child {
    margin-left: 5px;
  }
}
@media screen and (max-width: 377px) {
  .account-content .wizard-steps-container .step-block .input-box--radio .input-box__inner:last-child {
    margin-left: 0px;
  }
}
.account-content .wizard-steps-container .step-block .input-box--radio label,
.account-content .wizard-steps-container .step-block .input-box--radio input {
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  vertical-align: middle;
  width: auto;
}
.account-content .wizard-steps-container .step-block .input-box--radio label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
.account-content .wizard-steps-container .step-block .input-box--radio input {
  margin-right: 5px;
}
.account-content .wizard-steps-container .step-block .input-box--button {
  max-width: 500px;
}
.account-content .wizard-steps-container .step-block .input-box--button .input-box__inner {
  float: left;
  margin-left: 2%;
  width: 49%;
}
.account-content .wizard-steps-container .step-block .input-box--button .input-box__inner:first-child {
  margin-left: 0;
}
.account-content .wizard-steps-container .step-block .input-box--imageupload {
  margin-top: 20px;
}
.account-content .wizard-steps-container .step-block .input-box--imageupload .input-box__inner {
  max-width: 300px;
}
.account-content .wizard-steps-container .step-block .input-box--imageupload .upload-img-btn {
  cursor: pointer;
}
.account-content .wizard-steps-container .step-block .input-box .price-text {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.account-content .wizard-steps-container .step-block .input-box .empty-text {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.account-content .wizard-steps-container .step-block .input-box .upload-img-btn {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  padding: 0.2rem 1rem;
}
.account-content .wizard-steps-container .step-block--auction .input-box--datepicker,
.account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker {
  margin-top: 5px;
}
.account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-datepicker,
.account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-datepicker {
  float: left;
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 699px) {
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-datepicker,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-datepicker {
    max-width: 250px;
  }
}
@media screen and (max-width: 599px) {
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-datepicker,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-datepicker {
    max-width: none;
  }
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-datepicker .vc-container,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-datepicker .vc-container {
    display: block;
    margin: 0 auto;
  }
}
.account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout,
.account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout {
  border: 3px solid #0B0A1D;
  border-radius: 5px;
  float: left;
  margin-bottom: 1rem;
  margin-left: 30px;
  max-width: 330px;
  padding: 15px;
  width: 100%;
}
@media screen and (max-width: 699px) {
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout {
    margin-left: 15px;
    max-width: 260px;
    padding: 10px;
  }
}
@media screen and (max-width: 599px) {
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout {
    margin-left: 0;
    margin-top: 10px;
    max-width: none;
  }
}
.account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout__title,
.account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout__title {
  font-weight: bold;
}
.account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout__actions > a,
.account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout__actions > a {
  float: right;
  margin: 1.5rem 0;
  padding: 0.1rem 3rem;
  width: auto;
}
@media screen and (max-width: 599px) {
  .account-content .wizard-steps-container .step-block--auction .input-box--datepicker .appointment-popout__actions > a,
  .account-content .wizard-steps-container .step-block--datepicker .input-box--datepicker .appointment-popout__actions > a {
    float: left;
  }
}

/* ====== REGISTRATION ====== */
/* ======
REGISTRATION
    - General
    - Checkbox Override
    - Validation Override
    - Modal Override

    - GENERAL
    - STEP ONE - MY DETAILS
    - STEP TWO - INTERESTS
    - STEP THREE - CONTACT DETAILS (1)
    - STEP FOUR & FIVE - CONTACT DETAILS (2) (COMPANY DETAILS)
    - STEP SIX - VERIFY YOUR IDENTITY
    - STEP SEVEN - PROCESSING DATA
    - STEP NINE - NON UK DOMICILE BIDDER DEPOSIT
    - STEP TEN - ADD A PAYMENT CARD (OPTIONAL)
    - THANKYOU FOR REGISTERING

====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.view-register, .view-email_signup {
  background-color: #FFFFFF;
  /*================================================================================
  $ STEP ONE - MY DETAILS
  ================================================================================*/
  /*================================================================================
  $ STEP TWO - INTERESTS
  ================================================================================*/
  /*================================================================================
  $ STEP THREE - CONTACT DETAILS (1)
  ================================================================================*/
  /*================================================================================
  $ STEP FOUR & FIVE - CONTACT DETAILS (2) (COMPANY DETAILS)
  ================================================================================*/
  /*================================================================================
  $ STEP SIX - VERIFY YOUR IDENTITY
  ================================================================================*/
  /*================================================================================
  $ STEP SEVEN - PROCESSING DATA
  ================================================================================*/
  /*================================================================================
  $ STEP EIGHT - SELLING WITH ROSEBERYS
  ================================================================================*/
  /*================================================================================
  $ STEP NINE - NON UK DOMICILE BIDDER DEPOSIT
  ================================================================================*/
  /*================================================================================
  $ STEP TEN - ADD A PAYMENT CARD (OPTIONAL)
  ================================================================================*/
  /*================================================================================
  $ STEP TEN - THANKYOU FOR REGISTERING
  ================================================================================*/
}
body.view-register .header-container, .view-email_signup .header-container {
  background-color: #FFFFFF;
}
body.view-register .container-fluid, body.view-register .container-sm, body.view-register .container-md, body.view-register .container-lg, body.view-register .container-xl, body.view-register .container-xxl, .view-email_signup .container-fluid, .view-email_signup .container-sm, .view-email_signup .container-md, .view-email_signup .container-lg, .view-email_signup .container-xl, .view-email_signup .container-xxl {
  background-color: #FBF8F8;
}
body.view-register .container-fluid .register-wrapper, body.view-register .container-sm .register-wrapper, body.view-register .container-md .register-wrapper, body.view-register .container-lg .register-wrapper, body.view-register .container-xl .register-wrapper, body.view-register .container-xxl .register-wrapper, .view-email_signup .container-fluid .register-wrapper, .view-email_signup .container-sm .register-wrapper, .view-email_signup .container-md .register-wrapper, .view-email_signup .container-lg .register-wrapper, .view-email_signup .container-xl .register-wrapper, .view-email_signup .container-xxl .register-wrapper {
  width: 100%;
}
body.view-register .container-fluid .register-wrapper .container, body.view-register .container-sm .register-wrapper .container, body.view-register .container-md .register-wrapper .container, body.view-register .container-lg .register-wrapper .container, body.view-register .container-xl .register-wrapper .container, body.view-register .container-xxl .register-wrapper .container, .view-email_signup .container-fluid .register-wrapper .container, .view-email_signup .container-sm .register-wrapper .container, .view-email_signup .container-md .register-wrapper .container, .view-email_signup .container-lg .register-wrapper .container, .view-email_signup .container-xl .register-wrapper .container, .view-email_signup .container-xxl .register-wrapper .container {
  background-color: #FFFFFF;
}
body.view-register .container-fluid .container--stepcontainer, body.view-register .container-sm .container--stepcontainer, body.view-register .container-md .container--stepcontainer, body.view-register .container-lg .container--stepcontainer, body.view-register .container-xl .container--stepcontainer, body.view-register .container-xxl .container--stepcontainer, .view-email_signup .container-fluid .container--stepcontainer, .view-email_signup .container-sm .container--stepcontainer, .view-email_signup .container-md .container--stepcontainer, .view-email_signup .container-lg .container--stepcontainer, .view-email_signup .container-xl .container--stepcontainer, .view-email_signup .container-xxl .container--stepcontainer {
  background-color: #FFFFFF;
  margin-bottom: 3rem;
}
body.view-register .regHeading, .view-email_signup .regHeading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-top: 80px;
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 1026px) {
  body.view-register .regHeading, .view-email_signup .regHeading {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.view-register .regHeading, .view-email_signup .regHeading {
    font-size: 30px;
  }
}
body.view-register .regHeading .registration__step--info, .view-email_signup .regHeading .registration__step--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
body.view-register .regHeading + p, .view-email_signup .regHeading + p {
  margin-bottom: 60px;
}
body.view-register .regHeading span.title-border-left, .view-email_signup .regHeading span.title-border-left {
  width: 27%;
  height: 1px;
  background: #000;
}
body.view-register .regHeading span.title-border-right, .view-email_signup .regHeading span.title-border-right {
  width: 27%;
  height: 1px;
  background: #000;
}
body.view-register .regHeading h3.regHeading, .view-email_signup .regHeading h3.regHeading {
  width: 60%;
}
body.view-register .registration__stepAccountType--container, .view-email_signup .registration__stepAccountType--container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.view-register .registration__stepAccountType--container input, .view-email_signup .registration__stepAccountType--container input {
  margin-right: 10px;
}
body.view-register .registration__stepAccountType--container input[type=checkbox], .view-email_signup .registration__stepAccountType--container input[type=checkbox] {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-register .registration__stepAccountType--container input[type=checkbox]:checked, .view-email_signup .registration__stepAccountType--container input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-register .registration__stepAccountType--container input[type=checkbox]:hover, .view-email_signup .registration__stepAccountType--container input[type=checkbox]:hover {
  cursor: pointer;
}
body.view-register .registration__stepOne--container, .view-email_signup .registration__stepOne--container {
  margin: 0 auto;
  max-width: 500px;
}
body.view-register .registration__stepOne--container .registration__details,
body.view-register .registration__stepOne--container .registration__second--details,
body.view-register .registration__stepOne--container .registration__password--container, .view-email_signup .registration__stepOne--container .registration__details,
.view-email_signup .registration__stepOne--container .registration__second--details,
.view-email_signup .registration__stepOne--container .registration__password--container {
  border-bottom: 1px solid #D2D2D2;
  padding: 2rem 0rem;
}
body.view-register .registration__stepOne--container .registration__details label sup,
body.view-register .registration__stepOne--container .registration__second--details label sup,
body.view-register .registration__stepOne--container .registration__password--container label sup, .view-email_signup .registration__stepOne--container .registration__details label sup,
.view-email_signup .registration__stepOne--container .registration__second--details label sup,
.view-email_signup .registration__stepOne--container .registration__password--container label sup {
  color: #982065;
}
body.view-register .registration__stepOne--container .registration__details .password-input-control,
body.view-register .registration__stepOne--container .registration__second--details .password-input-control,
body.view-register .registration__stepOne--container .registration__password--container .password-input-control, .view-email_signup .registration__stepOne--container .registration__details .password-input-control,
.view-email_signup .registration__stepOne--container .registration__second--details .password-input-control,
.view-email_signup .registration__stepOne--container .registration__password--container .password-input-control {
  position: relative;
}
body.view-register .registration__stepOne--container .registration__details .password-input-control input,
body.view-register .registration__stepOne--container .registration__second--details .password-input-control input,
body.view-register .registration__stepOne--container .registration__password--container .password-input-control input, .view-email_signup .registration__stepOne--container .registration__details .password-input-control input,
.view-email_signup .registration__stepOne--container .registration__second--details .password-input-control input,
.view-email_signup .registration__stepOne--container .registration__password--container .password-input-control input {
  padding-right: 50px;
}
body.view-register .registration__stepOne--container .registration__details .password-input-control .btn,
body.view-register .registration__stepOne--container .registration__second--details .password-input-control .btn,
body.view-register .registration__stepOne--container .registration__password--container .password-input-control .btn, .view-email_signup .registration__stepOne--container .registration__details .password-input-control .btn,
.view-email_signup .registration__stepOne--container .registration__second--details .password-input-control .btn,
.view-email_signup .registration__stepOne--container .registration__password--container .password-input-control .btn {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
body.view-register .registration__stepOne--container .registration__details .registration__box,
body.view-register .registration__stepOne--container .registration__second--details .registration__box,
body.view-register .registration__stepOne--container .registration__password--container .registration__box, .view-email_signup .registration__stepOne--container .registration__details .registration__box,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box {
  padding: 0.5rem 0rem;
}
body.view-register .registration__stepOne--container .registration__details .registration__box.registration__box--phone .input-group,
body.view-register .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone .input-group,
body.view-register .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone .input-group, .view-email_signup .registration__stepOne--container .registration__details .registration__box.registration__box--phone .input-group,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone .input-group,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone .input-group {
  align-items: flex-start;
  flex-wrap: nowrap;
}
body.view-register .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
body.view-register .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
body.view-register .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code, .view-email_signup .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/icons/select-down-arrow.svg");
  background-position: 93% center;
  background-repeat: no-repeat;
  background-size: 12px;
  font-size: 0.75rem;
  max-width: 80px;
  padding-left: 5px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
  body.view-register .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
  body.view-register .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code, .view-email_signup .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
  .view-email_signup .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
  .view-email_signup .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code {
    max-width: 60px;
  }
}
body.view-register .registration__stepOne--container .registration__details .registration__box label,
body.view-register .registration__stepOne--container .registration__second--details .registration__box label,
body.view-register .registration__stepOne--container .registration__password--container .registration__box label, .view-email_signup .registration__stepOne--container .registration__details .registration__box label,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box label,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-register .registration__stepOne--container .registration__details .registration__box select,
body.view-register .registration__stepOne--container .registration__second--details .registration__box select,
body.view-register .registration__stepOne--container .registration__password--container .registration__box select, .view-email_signup .registration__stepOne--container .registration__details .registration__box select,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box select,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 13px;
  height: 42px;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepOne--container .registration__details .registration__box select,
  body.view-register .registration__stepOne--container .registration__second--details .registration__box select,
  body.view-register .registration__stepOne--container .registration__password--container .registration__box select, .view-email_signup .registration__stepOne--container .registration__details .registration__box select,
  .view-email_signup .registration__stepOne--container .registration__second--details .registration__box select,
  .view-email_signup .registration__stepOne--container .registration__password--container .registration__box select {
    width: 100%;
  }
}
body.view-register .registration__stepOne--container .registration__details .registration__box select#user-title,
body.view-register .registration__stepOne--container .registration__second--details .registration__box select#user-title,
body.view-register .registration__stepOne--container .registration__password--container .registration__box select#user-title, .view-email_signup .registration__stepOne--container .registration__details .registration__box select#user-title,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box select#user-title,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box select#user-title {
  max-width: 234px;
}
body.view-register .registration__stepOne--container .registration__details .registration__box input,
body.view-register .registration__stepOne--container .registration__second--details .registration__box input,
body.view-register .registration__stepOne--container .registration__password--container .registration__box input, .view-email_signup .registration__stepOne--container .registration__details .registration__box input,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box input,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 100%;
}
body.view-register .registration__stepOne--container .registration__details .registration__box .invalid-field,
body.view-register .registration__stepOne--container .registration__second--details .registration__box .invalid-field,
body.view-register .registration__stepOne--container .registration__password--container .registration__box .invalid-field, .view-email_signup .registration__stepOne--container .registration__details .registration__box .invalid-field,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box .invalid-field,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-register .registration__stepOne--container .registration__details .registration__box p,
body.view-register .registration__stepOne--container .registration__second--details .registration__box p,
body.view-register .registration__stepOne--container .registration__password--container .registration__box p, .view-email_signup .registration__stepOne--container .registration__details .registration__box p,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box p,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration__stepOne--container .registration__details .registration__box .registration__terms--info,
body.view-register .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info,
body.view-register .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info, .view-email_signup .registration__stepOne--container .registration__details .registration__box .registration__terms--info,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info {
  text-transform: none;
}
body.view-register .registration__stepOne--container .registration__details .registration__box .registration__terms--info span,
body.view-register .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info span,
body.view-register .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info span, .view-email_signup .registration__stepOne--container .registration__details .registration__box .registration__terms--info span,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info span,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info span {
  color: #982065;
  text-decoration: underline;
}
body.view-register .registration__stepOne--container .registration__details .registration__box .registration__checks,
body.view-register .registration__stepOne--container .registration__second--details .registration__box .registration__checks,
body.view-register .registration__stepOne--container .registration__password--container .registration__box .registration__checks, .view-email_signup .registration__stepOne--container .registration__details .registration__box .registration__checks,
.view-email_signup .registration__stepOne--container .registration__second--details .registration__box .registration__checks,
.view-email_signup .registration__stepOne--container .registration__password--container .registration__box .registration__checks {
  float: left;
  height: 21px;
  width: 21px;
  margin-right: 10px;
}
body.view-register .registration__stepOne--container .registration__details .checks__container,
body.view-register .registration__stepOne--container .registration__second--details .checks__container,
body.view-register .registration__stepOne--container .registration__password--container .checks__container, .view-email_signup .registration__stepOne--container .registration__details .checks__container,
.view-email_signup .registration__stepOne--container .registration__second--details .checks__container,
.view-email_signup .registration__stepOne--container .registration__password--container .checks__container {
  margin-top: 1rem;
}
body.view-register .registration__stepOne--container .registration__details .checks__container label,
body.view-register .registration__stepOne--container .registration__second--details .checks__container label,
body.view-register .registration__stepOne--container .registration__password--container .checks__container label, .view-email_signup .registration__stepOne--container .registration__details .checks__container label,
.view-email_signup .registration__stepOne--container .registration__second--details .checks__container label,
.view-email_signup .registration__stepOne--container .registration__password--container .checks__container label {
  font-size: 1rem;
}
body.view-register .registration__stepOne--container .registration__details .button__container,
body.view-register .registration__stepOne--container .registration__second--details .button__container,
body.view-register .registration__stepOne--container .registration__password--container .button__container, .view-email_signup .registration__stepOne--container .registration__details .button__container,
.view-email_signup .registration__stepOne--container .registration__second--details .button__container,
.view-email_signup .registration__stepOne--container .registration__password--container .button__container {
  margin: 2rem 0rem;
  text-align: center;
}
body.view-register .registration__stepOne--container .registration__details .button__container button,
body.view-register .registration__stepOne--container .registration__second--details .button__container button,
body.view-register .registration__stepOne--container .registration__password--container .button__container button, .view-email_signup .registration__stepOne--container .registration__details .button__container button,
.view-email_signup .registration__stepOne--container .registration__second--details .button__container button,
.view-email_signup .registration__stepOne--container .registration__password--container .button__container button {
  font-size: 0.75rem;
  padding: 0.7rem 1.4rem;
}
body.view-register .registration__stepOne--container .registration__details, .view-email_signup .registration__stepOne--container .registration__details {
  padding-top: 0rem;
}
body.view-register .registration__subscribe, .view-email_signup .registration__subscribe {
  display: flex;
  justify-content: center;
}
body.view-register .registration__subscribe input, .view-email_signup .registration__subscribe input {
  margin-right: 10px;
}
body.view-register .registration__subscribe input[type=checkbox], .view-email_signup .registration__subscribe input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  display: flex;
  align-items: center;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-register .registration__subscribe input[type=checkbox]:checked, .view-email_signup .registration__subscribe input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-register .registration__subscribe label, .view-email_signup .registration__subscribe label {
  color: #0B0A1D;
  float: left;
  font-family: "Arial", serif;
  font-weight: 400;
}
body.view-register .registration__stepTwo--container, .view-email_signup .registration__stepTwo--container {
  /*================================================================================
  $ KEYWORDS
  ================================================================================*/
}
body.view-register .registration__stepTwo--container .registration__interests--container, .view-email_signup .registration__stepTwo--container .registration__interests--container {
  margin-top: 2rem;
  justify-content: center;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline {
  margin-top: 15px;
  max-width: 30%;
  flex-direction: row;
  display: flex;
  float: left;
  position: relative;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline {
    max-width: 40%;
  }
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline {
    max-width: 100%;
  }
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img {
  float: left;
  min-width: 150px;
  height: 110px;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img ~ input[type=checkbox]:checked, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img ~ input[type=checkbox]:checked {
  border: 1px solid #982065;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline .interests-section__title, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline .interests-section__title {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline label, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline label {
  float: left;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 0 50px 0 15px;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox], .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  position: absolute;
  float: right;
  display: flex;
  align-items: center;
  right: 10px;
  top: 40px;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + span,
body.view-register .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + .interests-section__title, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + span,
.view-email_signup .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + .interests-section__title {
  border: 1px solid #982065;
}
body.view-register .registration__stepTwo--container .registration__interests--container .interests__rows, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests__rows {
  margin: 1rem 0rem;
}
@media screen and (max-width: 799px) {
  body.view-register .registration__stepTwo--container .registration__interests--container .interests__rows .interests__image img, .view-email_signup .registration__stepTwo--container .registration__interests--container .interests__rows .interests__image img {
    width: 100%;
  }
}
body.view-register .registration__stepTwo--container .interests__keywords, .view-email_signup .registration__stepTwo--container .interests__keywords {
  margin-top: 3rem;
}
body.view-register .registration__stepTwo--container .interests__keywords h2, .view-email_signup .registration__stepTwo--container .interests__keywords h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__info, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 992px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__info, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__info {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__info, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__info {
    width: 100%;
  }
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input {
  border-bottom: 1px solid #D2D2D2;
  margin: 1rem auto;
  padding-left: 10px;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input {
    width: 100%;
  }
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input input, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 90%;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__examples, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__examples {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons {
  margin: 1rem 1rem 2rem 0rem;
  position: relative;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn {
  padding: 0.2rem 2rem;
  position: relative;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn:hover, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn:hover {
  background-color: #982065;
  color: #FFFFFF;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn img, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn img {
  position: absolute;
  top: 5px;
  right: 11px;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__info--emails, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__info--emails {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us {
  margin: 2rem auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 100%;
  }
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us p, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us p span, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us p span {
  color: #982065;
}
body.view-register .registration__stepTwo--container .interests__keywords .keyword__hear--us select, .view-email_signup .registration__stepTwo--container .interests__keywords .keyword__hear--us select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 100%;
}
body.view-register .registration__stepTwo--container .button__container, .view-email_signup .registration__stepTwo--container .button__container {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.view-register .registration__stepTwo--container .button__container, .view-email_signup .registration__stepTwo--container .button__container {
    margin-top: 2rem;
  }
}
body.view-register .registration__stepTwo--container .button__container button, .view-email_signup .registration__stepTwo--container .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-register .registration__stepTwo--container .button__container .skip__link, .view-email_signup .registration__stepTwo--container .button__container .skip__link {
  color: #939393;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: underline;
}
body.view-register .registration-form--step3 h2, .view-email_signup .registration-form--step3 h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.view-register .registration-form--step3 .contact__billing, body.view-register .registration-form--step3 .contact__shipping, .view-email_signup .registration-form--step3 .contact__billing, .view-email_signup .registration-form--step3 .contact__shipping {
  border-bottom: 1px solid #D2D2D2;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
body.view-register .registration-form--step3 .contact__billing .shipping__checkbox, body.view-register .registration-form--step3 .contact__shipping .shipping__checkbox, .view-email_signup .registration-form--step3 .contact__billing .shipping__checkbox, .view-email_signup .registration-form--step3 .contact__shipping .shipping__checkbox {
  display: flex;
  align-items: center;
}
body.view-register .registration-form--step3 .contact__billing .shipping__checkbox .shipping__checks, body.view-register .registration-form--step3 .contact__shipping .shipping__checkbox .shipping__checks, .view-email_signup .registration-form--step3 .contact__billing .shipping__checkbox .shipping__checks, .view-email_signup .registration-form--step3 .contact__shipping .shipping__checkbox .shipping__checks {
  float: left;
  height: 17px;
  margin-right: 10px;
  width: 17px;
}
body.view-register .registration-form--step3 .contact__billing .shipping__checkbox label, body.view-register .registration-form--step3 .contact__shipping .shipping__checkbox label, .view-email_signup .registration-form--step3 .contact__billing .shipping__checkbox label, .view-email_signup .registration-form--step3 .contact__shipping .shipping__checkbox label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step3 .contact__billing .registration__box, body.view-register .registration-form--step3 .contact__shipping .registration__box, .view-email_signup .registration-form--step3 .contact__billing .registration__box, .view-email_signup .registration-form--step3 .contact__shipping .registration__box {
  padding: 0.5rem 0rem;
}
body.view-register .registration-form--step3 .contact__billing .registration__box label, body.view-register .registration-form--step3 .contact__shipping .registration__box label, .view-email_signup .registration-form--step3 .contact__billing .registration__box label, .view-email_signup .registration-form--step3 .contact__shipping .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-register .registration-form--step3 .contact__billing .registration__box label sup, body.view-register .registration-form--step3 .contact__shipping .registration__box label sup, .view-email_signup .registration-form--step3 .contact__billing .registration__box label sup, .view-email_signup .registration-form--step3 .contact__shipping .registration__box label sup {
  color: #982065;
}
body.view-register .registration-form--step3 .contact__billing .registration__box select, body.view-register .registration-form--step3 .contact__shipping .registration__box select, .view-email_signup .registration-form--step3 .contact__billing .registration__box select, .view-email_signup .registration-form--step3 .contact__shipping .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step3 .contact__billing .registration__box select, body.view-register .registration-form--step3 .contact__shipping .registration__box select, .view-email_signup .registration-form--step3 .contact__billing .registration__box select, .view-email_signup .registration-form--step3 .contact__shipping .registration__box select {
    width: 100%;
  }
}
body.view-register .registration-form--step3 .contact__billing .registration__box input, body.view-register .registration-form--step3 .contact__shipping .registration__box input, .view-email_signup .registration-form--step3 .contact__billing .registration__box input, .view-email_signup .registration-form--step3 .contact__shipping .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 100%;
}
body.view-register .registration-form--step3 .contact__billing .registration__box .invalid-field, body.view-register .registration-form--step3 .contact__shipping .registration__box .invalid-field, .view-email_signup .registration-form--step3 .contact__billing .registration__box .invalid-field, .view-email_signup .registration-form--step3 .contact__shipping .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-register .registration-form--step3 .contact__billing .registration__box p, body.view-register .registration-form--step3 .contact__shipping .registration__box p, .view-email_signup .registration-form--step3 .contact__billing .registration__box p, .view-email_signup .registration-form--step3 .contact__shipping .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step3 .button__container, .view-email_signup .registration-form--step3 .button__container {
  margin-top: 3rem;
  text-align: center;
}
body.view-register .registration-form--step3 .button__container button, .view-email_signup .registration-form--step3 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-register .registration-form--step4, body.view-register .registration-form--step5, .view-email_signup .registration-form--step4, .view-email_signup .registration-form--step5 {
  margin: 0 auto;
  max-width: 600px;
}
body.view-register .registration-form--step4 .company__intro, body.view-register .registration-form--step5 .company__intro, .view-email_signup .registration-form--step4 .company__intro, .view-email_signup .registration-form--step5 .company__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.view-register .registration-form--step4 .company__checkboxes, body.view-register .registration-form--step5 .company__checkboxes, .view-email_signup .registration-form--step4 .company__checkboxes, .view-email_signup .registration-form--step5 .company__checkboxes {
  border-bottom: 1px solid #D2D2D2;
  display: flex;
  padding-bottom: 2rem;
}
body.view-register .registration-form--step4 .company__checkboxes .company__yes--box, body.view-register .registration-form--step5 .company__checkboxes .company__yes--box, .view-email_signup .registration-form--step4 .company__checkboxes .company__yes--box, .view-email_signup .registration-form--step5 .company__checkboxes .company__yes--box {
  margin-right: 5rem;
}
body.view-register .registration-form--step4 .company__checkboxes .company__yes--box label, body.view-register .registration-form--step5 .company__checkboxes .company__yes--box label, .view-email_signup .registration-form--step4 .company__checkboxes .company__yes--box label, .view-email_signup .registration-form--step5 .company__checkboxes .company__yes--box label {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step4 .company__checkboxes .company__no--box label, body.view-register .registration-form--step5 .company__checkboxes .company__no--box label, .view-email_signup .registration-form--step4 .company__checkboxes .company__no--box label, .view-email_signup .registration-form--step5 .company__checkboxes .company__no--box label {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step4 .company__details .registration__box, body.view-register .registration-form--step4 .company__registered--address .registration__box, body.view-register .registration-form--step4 .company__shipping--address .registration__box, body.view-register .registration-form--step5 .company__details .registration__box, body.view-register .registration-form--step5 .company__registered--address .registration__box, body.view-register .registration-form--step5 .company__shipping--address .registration__box, .view-email_signup .registration-form--step4 .company__details .registration__box, .view-email_signup .registration-form--step4 .company__registered--address .registration__box, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box, .view-email_signup .registration-form--step5 .company__details .registration__box, .view-email_signup .registration-form--step5 .company__registered--address .registration__box, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box {
  padding: 0.5rem 0rem;
}
body.view-register .registration-form--step4 .company__details .registration__box label, body.view-register .registration-form--step4 .company__registered--address .registration__box label, body.view-register .registration-form--step4 .company__shipping--address .registration__box label, body.view-register .registration-form--step5 .company__details .registration__box label, body.view-register .registration-form--step5 .company__registered--address .registration__box label, body.view-register .registration-form--step5 .company__shipping--address .registration__box label, .view-email_signup .registration-form--step4 .company__details .registration__box label, .view-email_signup .registration-form--step4 .company__registered--address .registration__box label, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box label, .view-email_signup .registration-form--step5 .company__details .registration__box label, .view-email_signup .registration-form--step5 .company__registered--address .registration__box label, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-register .registration-form--step4 .company__details .registration__box label sup, body.view-register .registration-form--step4 .company__registered--address .registration__box label sup, body.view-register .registration-form--step4 .company__shipping--address .registration__box label sup, body.view-register .registration-form--step5 .company__details .registration__box label sup, body.view-register .registration-form--step5 .company__registered--address .registration__box label sup, body.view-register .registration-form--step5 .company__shipping--address .registration__box label sup, .view-email_signup .registration-form--step4 .company__details .registration__box label sup, .view-email_signup .registration-form--step4 .company__registered--address .registration__box label sup, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box label sup, .view-email_signup .registration-form--step5 .company__details .registration__box label sup, .view-email_signup .registration-form--step5 .company__registered--address .registration__box label sup, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box label sup {
  color: #982065;
}
body.view-register .registration-form--step4 .company__details .registration__box select, body.view-register .registration-form--step4 .company__registered--address .registration__box select, body.view-register .registration-form--step4 .company__shipping--address .registration__box select, body.view-register .registration-form--step5 .company__details .registration__box select, body.view-register .registration-form--step5 .company__registered--address .registration__box select, body.view-register .registration-form--step5 .company__shipping--address .registration__box select, .view-email_signup .registration-form--step4 .company__details .registration__box select, .view-email_signup .registration-form--step4 .company__registered--address .registration__box select, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box select, .view-email_signup .registration-form--step5 .company__details .registration__box select, .view-email_signup .registration-form--step5 .company__registered--address .registration__box select, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step4 .company__details .registration__box select, body.view-register .registration-form--step4 .company__registered--address .registration__box select, body.view-register .registration-form--step4 .company__shipping--address .registration__box select, body.view-register .registration-form--step5 .company__details .registration__box select, body.view-register .registration-form--step5 .company__registered--address .registration__box select, body.view-register .registration-form--step5 .company__shipping--address .registration__box select, .view-email_signup .registration-form--step4 .company__details .registration__box select, .view-email_signup .registration-form--step4 .company__registered--address .registration__box select, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box select, .view-email_signup .registration-form--step5 .company__details .registration__box select, .view-email_signup .registration-form--step5 .company__registered--address .registration__box select, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box select {
    width: 100%;
  }
}
body.view-register .registration-form--step4 .company__details .registration__box input, body.view-register .registration-form--step4 .company__registered--address .registration__box input, body.view-register .registration-form--step4 .company__shipping--address .registration__box input, body.view-register .registration-form--step5 .company__details .registration__box input, body.view-register .registration-form--step5 .company__registered--address .registration__box input, body.view-register .registration-form--step5 .company__shipping--address .registration__box input, .view-email_signup .registration-form--step4 .company__details .registration__box input, .view-email_signup .registration-form--step4 .company__registered--address .registration__box input, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box input, .view-email_signup .registration-form--step5 .company__details .registration__box input, .view-email_signup .registration-form--step5 .company__registered--address .registration__box input, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 100%;
}
body.view-register .registration-form--step4 .company__details .registration__box .invalid-field, body.view-register .registration-form--step4 .company__registered--address .registration__box .invalid-field, body.view-register .registration-form--step4 .company__shipping--address .registration__box .invalid-field, body.view-register .registration-form--step5 .company__details .registration__box .invalid-field, body.view-register .registration-form--step5 .company__registered--address .registration__box .invalid-field, body.view-register .registration-form--step5 .company__shipping--address .registration__box .invalid-field, .view-email_signup .registration-form--step4 .company__details .registration__box .invalid-field, .view-email_signup .registration-form--step4 .company__registered--address .registration__box .invalid-field, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box .invalid-field, .view-email_signup .registration-form--step5 .company__details .registration__box .invalid-field, .view-email_signup .registration-form--step5 .company__registered--address .registration__box .invalid-field, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-register .registration-form--step4 .company__details .registration__box p, body.view-register .registration-form--step4 .company__registered--address .registration__box p, body.view-register .registration-form--step4 .company__shipping--address .registration__box p, body.view-register .registration-form--step5 .company__details .registration__box p, body.view-register .registration-form--step5 .company__registered--address .registration__box p, body.view-register .registration-form--step5 .company__shipping--address .registration__box p, .view-email_signup .registration-form--step4 .company__details .registration__box p, .view-email_signup .registration-form--step4 .company__registered--address .registration__box p, .view-email_signup .registration-form--step4 .company__shipping--address .registration__box p, .view-email_signup .registration-form--step5 .company__details .registration__box p, .view-email_signup .registration-form--step5 .company__registered--address .registration__box p, .view-email_signup .registration-form--step5 .company__shipping--address .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step4 .company__details .postcode__lookup, body.view-register .registration-form--step4 .company__registered--address .postcode__lookup, body.view-register .registration-form--step4 .company__shipping--address .postcode__lookup, body.view-register .registration-form--step5 .company__details .postcode__lookup, body.view-register .registration-form--step5 .company__registered--address .postcode__lookup, body.view-register .registration-form--step5 .company__shipping--address .postcode__lookup, .view-email_signup .registration-form--step4 .company__details .postcode__lookup, .view-email_signup .registration-form--step4 .company__registered--address .postcode__lookup, .view-email_signup .registration-form--step4 .company__shipping--address .postcode__lookup, .view-email_signup .registration-form--step5 .company__details .postcode__lookup, .view-email_signup .registration-form--step5 .company__registered--address .postcode__lookup, .view-email_signup .registration-form--step5 .company__shipping--address .postcode__lookup {
  width: 50%;
}
body.view-register .registration-form--step4 .company__registered--address, body.view-register .registration-form--step4 .company__shipping--address, body.view-register .registration-form--step5 .company__registered--address, body.view-register .registration-form--step5 .company__shipping--address, .view-email_signup .registration-form--step4 .company__registered--address, .view-email_signup .registration-form--step4 .company__shipping--address, .view-email_signup .registration-form--step5 .company__registered--address, .view-email_signup .registration-form--step5 .company__shipping--address {
  border-bottom: 1px solid #D2D2D2;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}
body.view-register .registration-form--step4 .company__registered--address h2, body.view-register .registration-form--step4 .company__shipping--address h2, body.view-register .registration-form--step5 .company__registered--address h2, body.view-register .registration-form--step5 .company__shipping--address h2, .view-email_signup .registration-form--step4 .company__registered--address h2, .view-email_signup .registration-form--step4 .company__shipping--address h2, .view-email_signup .registration-form--step5 .company__registered--address h2, .view-email_signup .registration-form--step5 .company__shipping--address h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 0rem;
}
body.view-register .registration-form--step4 .company__registered--address .company__shipping--checks, body.view-register .registration-form--step4 .company__shipping--address .company__shipping--checks, body.view-register .registration-form--step5 .company__registered--address .company__shipping--checks, body.view-register .registration-form--step5 .company__shipping--address .company__shipping--checks, .view-email_signup .registration-form--step4 .company__registered--address .company__shipping--checks, .view-email_signup .registration-form--step4 .company__shipping--address .company__shipping--checks, .view-email_signup .registration-form--step5 .company__registered--address .company__shipping--checks, .view-email_signup .registration-form--step5 .company__shipping--address .company__shipping--checks {
  margin-top: 1rem;
}
body.view-register .registration-form--step4 .company__registered--address .company__shipping--checks label, body.view-register .registration-form--step4 .company__shipping--address .company__shipping--checks label, body.view-register .registration-form--step5 .company__registered--address .company__shipping--checks label, body.view-register .registration-form--step5 .company__shipping--address .company__shipping--checks label, .view-email_signup .registration-form--step4 .company__registered--address .company__shipping--checks label, .view-email_signup .registration-form--step4 .company__shipping--address .company__shipping--checks label, .view-email_signup .registration-form--step5 .company__registered--address .company__shipping--checks label, .view-email_signup .registration-form--step5 .company__shipping--address .company__shipping--checks label {
  color: #0B0A1D;
  float: left;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step4 .company__registered--address .company__shipping--checks input, body.view-register .registration-form--step4 .company__shipping--address .company__shipping--checks input, body.view-register .registration-form--step5 .company__registered--address .company__shipping--checks input, body.view-register .registration-form--step5 .company__shipping--address .company__shipping--checks input, .view-email_signup .registration-form--step4 .company__registered--address .company__shipping--checks input, .view-email_signup .registration-form--step4 .company__shipping--address .company__shipping--checks input, .view-email_signup .registration-form--step5 .company__registered--address .company__shipping--checks input, .view-email_signup .registration-form--step5 .company__shipping--address .company__shipping--checks input {
  float: left;
  margin-right: 10px;
  margin-top: 4px;
}
body.view-register .registration-form--step4 .button__container, body.view-register .registration-form--step5 .button__container, .view-email_signup .registration-form--step4 .button__container, .view-email_signup .registration-form--step5 .button__container {
  margin-top: 3rem;
  text-align: center;
}
body.view-register .registration-form--step4 .button__container button, body.view-register .registration-form--step5 .button__container button, .view-email_signup .registration-form--step4 .button__container button, .view-email_signup .registration-form--step5 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-register .verify__intro, .view-email_signup .verify__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 10px !important;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 992px) {
  body.view-register .registration-form--step6 .verify__boxes, .view-email_signup .registration-form--step6 .verify__boxes {
    margin-bottom: 2rem;
  }
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column {
  flex-direction: column;
  padding: 3rem;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  body.view-register .registration-form--step6 .verify__boxes .ss-upload.column, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column {
    height: 500px;
  }
}
@media screen and (max-width: 799px) {
  body.view-register .registration-form--step6 .verify__boxes .ss-upload.column, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column {
    height: auto;
  }
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message {
  width: 100%;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading {
    font-size: 25px;
  }
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__files--required, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__files--required {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__file--types, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__file--types {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--one, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--one {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--two, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--two {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .meta, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .meta {
  margin-bottom: 10px;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .dz-message label.btn-app, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .dz-message label.btn-app {
  background-color: #982065;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  margin-bottom: 1rem;
  max-width: 190px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
body.view-register .registration-form--step6 .verify__boxes .ss-upload.column .form-group.file-upload, .view-email_signup .registration-form--step6 .verify__boxes .ss-upload.column .form-group.file-upload {
  max-width: 190px;
  width: 100%;
}
body.view-register .registration-form--step6 .button__container, .view-email_signup .registration-form--step6 .button__container {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
body.view-register .registration-form--step6 .button__container button, .view-email_signup .registration-form--step6 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-register .registration-form--step6 .button__container .verify__info, .view-email_signup .registration-form--step6 .button__container .verify__info {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
}
body.view-register .registration-form--step7, .view-email_signup .registration-form--step7 {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
body.view-register .registration-form--step7 h2, .view-email_signup .registration-form--step7 h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.view-register .registration-form--step7 .processing__info, .view-email_signup .registration-form--step7 .processing__info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.view-register .selling__intro, .view-email_signup .selling__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem auto;
  margin-bottom: 10px !important;
  max-width: 600px;
}
body.view-register .registration-form--step8, .view-email_signup .registration-form--step8 {
  margin: 0 auto;
  max-width: 600px;
}
body.view-register .registration-form--step8 .selling__contents h2, .view-email_signup .registration-form--step8 .selling__contents h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step8 .selling__contents h2, .view-email_signup .registration-form--step8 .selling__contents h2 {
    font-size: 25px;
  }
}
body.view-register .registration-form--step8 .registration__box, .view-email_signup .registration-form--step8 .registration__box {
  padding: 0.5rem 0rem;
}
body.view-register .registration-form--step8 .registration__box label, .view-email_signup .registration-form--step8 .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-register .registration-form--step8 .registration__box label sup, .view-email_signup .registration-form--step8 .registration__box label sup {
  color: #982065;
}
body.view-register .registration-form--step8 .registration__box select, .view-email_signup .registration-form--step8 .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 50%;
}
body.view-register .registration-form--step8 .registration__box input, .view-email_signup .registration-form--step8 .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 33px;
  padding-left: 5px;
  width: 100%;
}
body.view-register .registration-form--step8 .registration__box .invalid-field, .view-email_signup .registration-form--step8 .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-register .registration-form--step8 .registration__box p, .view-email_signup .registration-form--step8 .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--step8 .sort__code input, .view-email_signup .registration-form--step8 .sort__code input {
  width: 50%;
}
body.view-register .registration-form--step8 .button__container, .view-email_signup .registration-form--step8 .button__container {
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step8 .button__container, .view-email_signup .registration-form--step8 .button__container {
    text-align: center;
  }
}
body.view-register .registration-form--step8 .button__container button, .view-email_signup .registration-form--step8 .button__container button {
  margin-right: 2rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--step8 .button__container button, .view-email_signup .registration-form--step8 .button__container button {
    padding: 0.7rem 1.4rem;
    margin-right: 0;
    margin-top: 2rem;
  }
}
body.view-register .registration-form--step8 .button__container .skip__link, .view-email_signup .registration-form--step8 .button__container .skip__link {
  color: #939393;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: underline;
}
body.view-register h1, .view-email_signup h1 {
  margin-top: 1rem !important;
}
body.view-register .domicile__overall, .view-email_signup .domicile__overall {
  margin: 0 auto;
  max-width: 600px;
}
body.view-register .domicile__overall .domicile__intro, .view-email_signup .domicile__overall .domicile__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 1rem 0rem;
  margin-bottom: 1rem !important;
  text-align: center;
}
body.view-register .domicile__overall .domicile__sub--info, .view-email_signup .domicile__overall .domicile__sub--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
body.view-register .button__container, .view-email_signup .button__container {
  text-align: center;
}
body.view-register .button__container button, .view-email_signup .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-register .payment__optional--container .payment__intro, .view-email_signup .payment__optional--container .payment__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px !important;
  margin-top: 1rem;
}
body.view-register .payment__optional--container .button__container, .view-email_signup .payment__optional--container .button__container {
  margin-top: 2rem;
  position: relative;
  text-align: left;
}
body.view-register .payment__optional--container .button__container button, .view-email_signup .payment__optional--container .button__container button {
  margin-right: 2rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-register .payment__optional--container .button__container button, .view-email_signup .payment__optional--container .button__container button {
    padding: 0.2rem 1rem;
  }
}
body.view-register .payment__optional--container .button__container .skip__link, .view-email_signup .payment__optional--container .button__container .skip__link {
  color: #939393;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: underline;
}
body.view-register .thankyou__sub--heading, .view-email_signup .thankyou__sub--heading {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}
body.view-register .registration-form--thanks, .view-email_signup .registration-form--thanks {
  margin: 0 auto;
  max-width: 600px;
}
body.view-register .registration-form--thanks p, .view-email_signup .registration-form--thanks p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-register .registration-form--thanks p a, .view-email_signup .registration-form--thanks p a {
  color: #982065;
  text-decoration: underline;
}
body.view-register .registration-form--thanks .button__container, .view-email_signup .registration-form--thanks .button__container {
  margin-top: 4rem;
  text-align: center;
}
body.view-register .registration-form--thanks .button__container a, .view-email_signup .registration-form--thanks .button__container a {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-register .registration-form--thanks .button__container a, .view-email_signup .registration-form--thanks .button__container a {
    margin-bottom: 1rem;
    width: 100%;
  }
}
body.view-register .container--loading, .view-email_signup .container--loading {
  padding: 200px 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.view-register .container--loading, .view-email_signup .container--loading {
    padding: 50px 10px;
  }
}
body.view-register .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step1, body.view-register .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step2, body.view-register .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step3, .view-email_signup .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step1, .view-email_signup .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step2, .view-email_signup .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step3 {
  max-width: 280px;
  width: 280px;
  font-weight: 500;
  font-size: 16px;
  padding: 0 20px;
}
body.view-register .container--stepcontainer .select-interests button, .view-email_signup .container--stepcontainer .select-interests button {
  font-size: 16px;
}
body.view-register .container--stepcontainer .select-interests button.btn.teal-outline, .view-email_signup .container--stepcontainer .select-interests button.btn.teal-outline {
  color: #5A5A5A;
  border: 1px solid #5A5A5A;
}
body.view-register .container--stepcontainer .select-interests button.btn.teal-outline:hover, .view-email_signup .container--stepcontainer .select-interests button.btn.teal-outline:hover {
  color: #FFFFFF;
  background: #5A5A5A;
}
body.view-register .verify-identity h5, .view-email_signup .verify-identity h5 {
  font-size: 1.3rem;
}
body.view-register .postcode__input, .view-email_signup .postcode__input {
  width: 50%;
}
body.view-register .postcode__lookup, .view-email_signup .postcode__lookup {
  width: 50%;
}
body.view-register .postcode__lookup .field-holder, .view-email_signup .postcode__lookup .field-holder {
  float: left;
  width: 100%;
  position: relative;
}
body.view-register .postcode__lookup .field-holder .address-options, .view-email_signup .postcode__lookup .field-holder .address-options {
  border: 0.5px solid #C4C4C4;
  height: 300px;
  overflow-y: auto;
}
body.view-register .postcode__lookup .field-holder .address-options ul.address-list, .view-email_signup .postcode__lookup .field-holder .address-options ul.address-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.view-register .postcode__lookup .field-holder .address-options ul.address-list li.address-item, .view-email_signup .postcode__lookup .field-holder .address-options ul.address-list li.address-item {
  cursor: pointer;
  color: #282C27;
  font-size: 0.9rem;
  padding: 10px;
  transition: all ease-in-out 0.3s;
  background: #FFFFFF;
}
body.view-register .postcode__lookup .field-holder .address-options ul.address-list li.address-item:hover, .view-email_signup .postcode__lookup .field-holder .address-options ul.address-list li.address-item:hover {
  background-color: #F8F8F8;
  color: #282C27;
}

.ss-upload.column {
  flex-direction: column;
  width: 100%;
}
.ss-upload.column .dz-message {
  width: 100%;
}
.ss-upload.column .dz-message .meta {
  margin-bottom: 10px;
}
.ss-upload.column .dz-message label.btn-app {
  background-color: #982065;
  color: #FFFFFF;
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  max-width: 190px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.ss-upload.column .form-group.file-upload {
  max-width: 190px;
  width: 100%;
}

/*================================================================================
$ CHECKBOX OVERRIDE
================================================================================*/
.registration-form--step5 .form-group.checkbox {
  height: auto;
  min-height: 60px;
}
@media screen and (max-width: 349px) {
  .registration-form--step5 .form-group.checkbox {
    min-height: 85px;
  }
}
.registration-form--step5 .form-group > label {
  line-height: 1.4;
}
.registration-form--step5 .form-group > label:before {
  top: 7px !important;
}
.registration-form--step5 .form-group > label:after {
  top: 3px !important;
}

/*================================================================================
$ VALIDATION OVERRIDE
================================================================================*/
.form-group--phonevalidation .iti {
  width: 100%;
}

/*================================================================================
$ MODAL OVERRIDE
================================================================================*/
#phoneVarification .form-group label {
  position: absolute;
}

/*================================================================================
$ CONFIRMATION POPUP - END OF REGISTRATION JOURNEY
================================================================================*/
body.view-register #step5Container .registration-form .mt-5 {
  margin-top: 2rem !important;
}
body.view-register #step5Container .registration-form .email_marketing {
  padding-top: 20px;
}
@media screen and (max-width: 770px) {
  body.view-register #step5Container .registration-form .email_marketing {
    padding-top: 30px;
  }
}
body.view-register #step5Container .registration-form .email_marketing h5 {
  color: #222E5B;
}
body.view-register #step5Container .registration-form .email_marketing .form-group {
  margin-top: -20px;
}
body.view-register #step5Container .registration-form .post_marketing {
  padding-top: 10px;
}
@media screen and (max-width: 416px) {
  body.view-register #step5Container .registration-form .post_marketing {
    padding-top: 50px;
  }
}
body.view-register #step5Container .registration-form .post_marketing h5 {
  color: #222E5B;
}
body.view-register #step5Container .registration-form #sms_marketing {
  padding-top: 30px;
}
@media screen and (max-width: 416px) {
  body.view-register #step5Container .registration-form #sms_marketing {
    padding-top: 50px;
  }
}
body.view-register #step5Container .registration-form #sms_marketing h5 {
  color: #222E5B;
}
body.view-register #step5Container .registration-form #telephone_marketing {
  padding-top: 10px;
}
@media screen and (max-width: 416px) {
  body.view-register #step5Container .registration-form #telephone_marketing {
    padding-top: 50px;
  }
}
body.view-register #step5Container .registration-form #telephone_marketing h5 {
  color: #222E5B;
}

/* ====== REGISTRATION ====== */
/* ======
REGISTRATION
    - General
    - Checkbox Override
    - Validation Override
    - Modal Override

    - GENERAL
    - STEP ONE - MY DETAILS
    - STEP TWO - INTERESTS
    - STEP THREE - CONTACT DETAILS (1)
    - STEP FOUR & FIVE - CONTACT DETAILS (2) (COMPANY DETAILS)
    - STEP SIX - VERIFY YOUR IDENTITY
    - STEP SEVEN - PROCESSING DATA
    - STEP NINE - NON UK DOMICILE BIDDER DEPOSIT
    - STEP TEN - ADD A PAYMENT CARD (OPTIONAL)
    - THANKYOU FOR REGISTERING

====== */
/*================================================================================
$ GENERAL
================================================================================*/
body.view-platform_approval {
  background-color: #FFFFFF;
  /*================================================================================
  $ STEP ONE - MY DETAILS
  ================================================================================*/
  /*================================================================================
  $ STEP TWO - INTERESTS
  ================================================================================*/
  /*================================================================================
  $ STEP THREE - CONTACT DETAILS (1)
  ================================================================================*/
  /*================================================================================
  $ STEP FOUR & FIVE - CONTACT DETAILS (2) (COMPANY DETAILS)
  ================================================================================*/
  /*================================================================================
  $ STEP SIX - VERIFY YOUR IDENTITY
  ================================================================================*/
  /*================================================================================
  $ STEP SEVEN - PROCESSING DATA
  ================================================================================*/
  /*================================================================================
  $ STEP EIGHT - SELLING WITH ROSEBERYS
  ================================================================================*/
  /*================================================================================
  $ STEP NINE - NON UK DOMICILE BIDDER DEPOSIT
  ================================================================================*/
  /*================================================================================
  $ STEP TEN - ADD A PAYMENT CARD (OPTIONAL)
  ================================================================================*/
  /*================================================================================
  $ STEP TEN - THANKYOU FOR REGISTERING
  ================================================================================*/
}
body.view-platform_approval .header-container {
  background-color: #FFFFFF;
}
body.view-platform_approval .container-fluid, body.view-platform_approval .container-sm, body.view-platform_approval .container-md, body.view-platform_approval .container-lg, body.view-platform_approval .container-xl, body.view-platform_approval .container-xxl {
  background-color: #FBF8F8;
}
body.view-platform_approval .container-fluid .register-wrapper, body.view-platform_approval .container-sm .register-wrapper, body.view-platform_approval .container-md .register-wrapper, body.view-platform_approval .container-lg .register-wrapper, body.view-platform_approval .container-xl .register-wrapper, body.view-platform_approval .container-xxl .register-wrapper {
  width: 100%;
}
body.view-platform_approval .container-fluid .register-wrapper .container, body.view-platform_approval .container-sm .register-wrapper .container, body.view-platform_approval .container-md .register-wrapper .container, body.view-platform_approval .container-lg .register-wrapper .container, body.view-platform_approval .container-xl .register-wrapper .container, body.view-platform_approval .container-xxl .register-wrapper .container {
  background-color: #FFFFFF;
}
body.view-platform_approval .container-fluid .container--stepcontainer, body.view-platform_approval .container-sm .container--stepcontainer, body.view-platform_approval .container-md .container--stepcontainer, body.view-platform_approval .container-lg .container--stepcontainer, body.view-platform_approval .container-xl .container--stepcontainer, body.view-platform_approval .container-xxl .container--stepcontainer {
  background-color: #FFFFFF;
  margin-bottom: 3rem;
}
body.view-platform_approval .regHeading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-top: 80px;
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 1026px) {
  body.view-platform_approval .regHeading {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .regHeading {
    font-size: 30px;
  }
}
body.view-platform_approval .regHeading .registration__step--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
body.view-platform_approval .regHeading + p {
  margin-bottom: 60px;
}
body.view-platform_approval .regHeading span.title-border-left {
  width: 27%;
  height: 1px;
  background: #000;
}
body.view-platform_approval .regHeading span.title-border-right {
  width: 27%;
  height: 1px;
  background: #000;
}
body.view-platform_approval .regHeading h3.regHeading {
  width: 60%;
}
body.view-platform_approval .progress-controls {
  width: 100px !important;
}
@media screen and (max-width: 767px) {
  body.view-platform_approval .progress-controls {
    width: 150px !important;
  }
}
body.view-platform_approval .registration__stepAccountType--container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.view-platform_approval .registration__stepAccountType--container input {
  margin-right: 10px;
}
body.view-platform_approval .registration__stepAccountType--container input[type=checkbox] {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-platform_approval .registration__stepAccountType--container input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-platform_approval .registration__stepOne--container {
  margin: 0 auto;
  max-width: 500px;
}
body.view-platform_approval .registration__stepOne--container .registration__details,
body.view-platform_approval .registration__stepOne--container .registration__second--details,
body.view-platform_approval .registration__stepOne--container .registration__password--container {
  border-bottom: 1px solid #D2D2D2;
  padding: 2rem 0rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details label sup,
body.view-platform_approval .registration__stepOne--container .registration__second--details label sup,
body.view-platform_approval .registration__stepOne--container .registration__password--container label sup {
  color: #982065;
}
body.view-platform_approval .registration__stepOne--container .registration__details .password-input-control,
body.view-platform_approval .registration__stepOne--container .registration__second--details .password-input-control,
body.view-platform_approval .registration__stepOne--container .registration__password--container .password-input-control {
  position: relative;
}
body.view-platform_approval .registration__stepOne--container .registration__details .password-input-control input,
body.view-platform_approval .registration__stepOne--container .registration__second--details .password-input-control input,
body.view-platform_approval .registration__stepOne--container .registration__password--container .password-input-control input {
  padding-right: 50px;
}
body.view-platform_approval .registration__stepOne--container .registration__details .password-input-control .btn,
body.view-platform_approval .registration__stepOne--container .registration__second--details .password-input-control .btn,
body.view-platform_approval .registration__stepOne--container .registration__password--container .password-input-control .btn {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
body.view-platform_approval .registration__stepOne--container .registration__details .dob_box,
body.view-platform_approval .registration__stepOne--container .registration__second--details .dob_box,
body.view-platform_approval .registration__stepOne--container .registration__password--container .dob_box {
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 2rem !important;
  margin-bottom: 2rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box {
  padding: 0.5rem 0rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box.registration__box--phone .input-group,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone .input-group,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone .input-group {
  align-items: flex-start;
  flex-wrap: nowrap;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/icons/select-down-arrow.svg");
  background-position: 93% center;
  background-repeat: no-repeat;
  background-size: 12px;
  font-size: 0.75rem;
  max-width: 80px;
  padding-left: 5px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepOne--container .registration__details .registration__box.registration__box--phone #dial_code,
  body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box.registration__box--phone #dial_code,
  body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box.registration__box--phone #dial_code {
    max-width: 60px;
  }
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box label,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box label,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box select,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box select,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 13px;
  height: 42px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepOne--container .registration__details .registration__box select,
  body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box select,
  body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box select {
    width: 100%;
  }
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box select#user-title,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box select#user-title,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box select#user-title {
  max-width: 234px;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box input,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box input,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 100%;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box .invalid-field,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box .invalid-field,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box p,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box p,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box .registration__terms--info,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info {
  text-transform: none;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box .registration__terms--info span,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box .registration__terms--info span,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box .registration__terms--info span {
  color: #982065;
  text-decoration: underline;
}
body.view-platform_approval .registration__stepOne--container .registration__details .registration__box .registration__checks,
body.view-platform_approval .registration__stepOne--container .registration__second--details .registration__box .registration__checks,
body.view-platform_approval .registration__stepOne--container .registration__password--container .registration__box .registration__checks {
  float: left;
  height: 21px;
  width: 21px;
  margin-right: 10px;
}
body.view-platform_approval .registration__stepOne--container .registration__details .checks__container,
body.view-platform_approval .registration__stepOne--container .registration__second--details .checks__container,
body.view-platform_approval .registration__stepOne--container .registration__password--container .checks__container {
  margin-top: 1rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details .checks__container label,
body.view-platform_approval .registration__stepOne--container .registration__second--details .checks__container label,
body.view-platform_approval .registration__stepOne--container .registration__password--container .checks__container label {
  font-size: 1rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details .button__container,
body.view-platform_approval .registration__stepOne--container .registration__second--details .button__container,
body.view-platform_approval .registration__stepOne--container .registration__password--container .button__container {
  margin: 2rem 0rem;
  text-align: center;
}
body.view-platform_approval .registration__stepOne--container .registration__details .button__container button,
body.view-platform_approval .registration__stepOne--container .registration__second--details .button__container button,
body.view-platform_approval .registration__stepOne--container .registration__password--container .button__container button {
  font-size: 0.75rem;
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .registration__stepOne--container .registration__details {
  padding-top: 0rem;
}
body.view-platform_approval .registration__subscribe {
  display: flex;
  justify-content: center;
}
body.view-platform_approval .registration__subscribe input {
  margin-right: 10px;
}
body.view-platform_approval .registration__subscribe input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  display: flex;
  align-items: center;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-platform_approval .registration__subscribe input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-platform_approval .registration__subscribe label {
  color: #0B0A1D;
  float: left;
  font-family: "Arial", serif;
  font-weight: 400;
}
body.view-platform_approval .registration__stepTwo--container {
  /*================================================================================
  $ KEYWORDS
  ================================================================================*/
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container {
  margin-top: 2rem;
  justify-content: center;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline {
  margin-top: 15px;
  max-width: 30%;
  flex-direction: row;
  display: flex;
  float: left;
  position: relative;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline {
    max-width: 40%;
  }
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline {
    max-width: 100%;
  }
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img {
  float: left;
  min-width: 150px;
  height: 110px;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline img.interests-img ~ input[type=checkbox]:checked {
  border: 1px solid #982065;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline .interests-section__title {
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  float: left;
  width: 100%;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline label {
  float: left;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  padding: 0 50px 0 15px;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox] {
  border: 1px solid transparent;
  display: flex;
  position: absolute;
  float: right;
  display: flex;
  align-items: center;
  right: 10px;
  top: 40px;
  border: 1px solid #C5C4C4;
  height: 25px;
  -webkit-appearance: none;
  width: 25px;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked {
  background-image: url(../images/icons/red-tick.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #982065;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + span,
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests-list-inline input[type=checkbox]:checked + .interests-section__title {
  border: 1px solid #982065;
}
body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests__rows {
  margin: 1rem 0rem;
}
@media screen and (max-width: 799px) {
  body.view-platform_approval .registration__stepTwo--container .registration__interests--container .interests__rows .interests__image img {
    width: 100%;
  }
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords {
  margin-top: 3rem;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 992px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__info {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__info {
    width: 100%;
  }
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input {
  border-bottom: 1px solid #D2D2D2;
  margin: 1rem auto;
  padding-left: 10px;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input {
    width: 100%;
  }
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 90%;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__examples {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons {
  margin: 1rem 1rem 2rem 0rem;
  position: relative;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn {
  padding: 0.2rem 2rem;
  position: relative;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn:hover {
  background-color: #982065;
  color: #FFFFFF;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__buttons .keyword__interest--btn img {
  position: absolute;
  top: 5px;
  right: 11px;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__search--input .keyword__info--emails {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us {
  margin: 2rem auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us {
    width: 100%;
  }
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us p span {
  color: #982065;
}
body.view-platform_approval .registration__stepTwo--container .interests__keywords .keyword__hear--us select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 100%;
}
body.view-platform_approval .registration__stepTwo--container .button__container {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration__stepTwo--container .button__container {
    margin-top: 2rem;
  }
}
body.view-platform_approval .registration__stepTwo--container .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .registration__stepTwo--container .button__container .skip__link {
  color: #939393;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  margin-top: 1rem;
  text-decoration: underline;
}
body.view-platform_approval .registration-form--step3 h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.view-platform_approval .registration-form--step3 .contact__billing, body.view-platform_approval .registration-form--step3 .contact__shipping {
  border-bottom: 1px solid #D2D2D2;
  margin-top: 2rem;
  padding-bottom: 2rem;
}
body.view-platform_approval .registration-form--step3 .contact__billing .shipping__checkbox, body.view-platform_approval .registration-form--step3 .contact__shipping .shipping__checkbox {
  display: flex;
  align-items: center;
}
body.view-platform_approval .registration-form--step3 .contact__billing .shipping__checkbox .shipping__checks, body.view-platform_approval .registration-form--step3 .contact__shipping .shipping__checkbox .shipping__checks {
  float: left;
  height: 17px;
  margin-right: 10px;
  width: 17px;
}
body.view-platform_approval .registration-form--step3 .contact__billing .shipping__checkbox label, body.view-platform_approval .registration-form--step3 .contact__shipping .shipping__checkbox label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box {
  padding: 0.5rem 0rem;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box label, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box label sup, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box label sup {
  color: #982065;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box select, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step3 .contact__billing .registration__box select, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box select {
    width: 100%;
  }
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box input, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 100%;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box .invalid-field, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step3 .contact__billing .registration__box p, body.view-platform_approval .registration-form--step3 .contact__shipping .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step3 .button__container {
  margin-top: 3rem;
  text-align: center;
}
body.view-platform_approval .registration-form--step3 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .registration-form--step4, body.view-platform_approval .registration-form--step5 {
  margin: 0 auto;
  max-width: 600px;
}
body.view-platform_approval .registration-form--step4 .company__intro, body.view-platform_approval .registration-form--step5 .company__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.view-platform_approval .registration-form--step4 .company__checkboxes, body.view-platform_approval .registration-form--step5 .company__checkboxes {
  border-bottom: 1px solid #D2D2D2;
  display: flex;
  padding-bottom: 2rem;
}
body.view-platform_approval .registration-form--step4 .company__checkboxes .company__yes--box, body.view-platform_approval .registration-form--step5 .company__checkboxes .company__yes--box {
  margin-right: 5rem;
}
body.view-platform_approval .registration-form--step4 .company__checkboxes .company__yes--box label, body.view-platform_approval .registration-form--step5 .company__checkboxes .company__yes--box label {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step4 .company__checkboxes .company__no--box label, body.view-platform_approval .registration-form--step5 .company__checkboxes .company__no--box label {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box, body.view-platform_approval .registration-form--step5 .company__details .registration__box, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box {
  padding: 0.5rem 0rem;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box label, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box label, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box label, body.view-platform_approval .registration-form--step5 .company__details .registration__box label, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box label, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box label sup, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box label sup, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box label sup, body.view-platform_approval .registration-form--step5 .company__details .registration__box label sup, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box label sup, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box label sup {
  color: #982065;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box select, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box select, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box select, body.view-platform_approval .registration-form--step5 .company__details .registration__box select, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box select, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 42px;
  padding-left: 15px;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step4 .company__details .registration__box select, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box select, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box select, body.view-platform_approval .registration-form--step5 .company__details .registration__box select, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box select, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box select {
    width: 100%;
  }
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box input, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box input, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box input, body.view-platform_approval .registration-form--step5 .company__details .registration__box input, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box input, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 100%;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box .invalid-field, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box .invalid-field, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box .invalid-field, body.view-platform_approval .registration-form--step5 .company__details .registration__box .invalid-field, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box .invalid-field, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step4 .company__details .registration__box p, body.view-platform_approval .registration-form--step4 .company__registered--address .registration__box p, body.view-platform_approval .registration-form--step4 .company__shipping--address .registration__box p, body.view-platform_approval .registration-form--step5 .company__details .registration__box p, body.view-platform_approval .registration-form--step5 .company__registered--address .registration__box p, body.view-platform_approval .registration-form--step5 .company__shipping--address .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step4 .company__details .address_box, body.view-platform_approval .registration-form--step4 .company__registered--address .address_box, body.view-platform_approval .registration-form--step4 .company__shipping--address .address_box, body.view-platform_approval .registration-form--step5 .company__details .address_box, body.view-platform_approval .registration-form--step5 .company__registered--address .address_box, body.view-platform_approval .registration-form--step5 .company__shipping--address .address_box {
  border-top: 1px solid #D2D2D2;
  padding-top: 2rem !important;
}
body.view-platform_approval .registration-form--step4 .company__details .postcode__lookup, body.view-platform_approval .registration-form--step4 .company__registered--address .postcode__lookup, body.view-platform_approval .registration-form--step4 .company__shipping--address .postcode__lookup, body.view-platform_approval .registration-form--step5 .company__details .postcode__lookup, body.view-platform_approval .registration-form--step5 .company__registered--address .postcode__lookup, body.view-platform_approval .registration-form--step5 .company__shipping--address .postcode__lookup {
  width: 50%;
  display: inline-block;
}
body.view-platform_approval .registration-form--step4 .company__registered--address, body.view-platform_approval .registration-form--step4 .company__shipping--address, body.view-platform_approval .registration-form--step5 .company__registered--address, body.view-platform_approval .registration-form--step5 .company__shipping--address {
  border-bottom: 1px solid #D2D2D2;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}
body.view-platform_approval .registration-form--step4 .company__registered--address h2, body.view-platform_approval .registration-form--step4 .company__shipping--address h2, body.view-platform_approval .registration-form--step5 .company__registered--address h2, body.view-platform_approval .registration-form--step5 .company__shipping--address h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 0rem;
}
body.view-platform_approval .registration-form--step4 .company__registered--address .company__shipping--checks, body.view-platform_approval .registration-form--step4 .company__shipping--address .company__shipping--checks, body.view-platform_approval .registration-form--step5 .company__registered--address .company__shipping--checks, body.view-platform_approval .registration-form--step5 .company__shipping--address .company__shipping--checks {
  margin-top: 1rem;
}
body.view-platform_approval .registration-form--step4 .company__registered--address .company__shipping--checks label, body.view-platform_approval .registration-form--step4 .company__shipping--address .company__shipping--checks label, body.view-platform_approval .registration-form--step5 .company__registered--address .company__shipping--checks label, body.view-platform_approval .registration-form--step5 .company__shipping--address .company__shipping--checks label {
  color: #0B0A1D;
  float: left;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step4 .company__registered--address .company__shipping--checks input, body.view-platform_approval .registration-form--step4 .company__shipping--address .company__shipping--checks input, body.view-platform_approval .registration-form--step5 .company__registered--address .company__shipping--checks input, body.view-platform_approval .registration-form--step5 .company__shipping--address .company__shipping--checks input {
  float: left;
  margin-right: 10px;
  margin-top: 4px;
}
body.view-platform_approval .registration-form--step4 .button__container, body.view-platform_approval .registration-form--step5 .button__container {
  margin-top: 3rem;
  text-align: center;
}
body.view-platform_approval .registration-form--step4 .button__container button, body.view-platform_approval .registration-form--step5 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .verify__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 10px !important;
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 992px) {
  body.view-platform_approval .registration-form--step6 .verify__boxes {
    margin-bottom: 2rem;
  }
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column {
  flex-direction: column;
  padding: 3rem;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column {
    height: 500px;
  }
}
@media screen and (max-width: 799px) {
  body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column {
    height: auto;
  }
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message {
  width: 100%;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__heading {
    font-size: 25px;
  }
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__files--required {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__file--types {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--one {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .verify__drag--two {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 15px;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message .meta {
  margin-bottom: 10px;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .dz-message label.btn-app {
  background-color: #982065;
  color: #FFFFFF;
  cursor: pointer;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  margin-bottom: 1rem;
  max-width: 190px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
body.view-platform_approval .registration-form--step6 .verify__boxes .ss-upload.column .form-group.file-upload {
  max-width: 190px;
  width: 100%;
}
body.view-platform_approval .registration-form--step6 .button__container {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
body.view-platform_approval .registration-form--step6 .button__container button {
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .registration-form--step6 .button__container .verify__info {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
}
body.view-platform_approval .registration-form--step7 {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
body.view-platform_approval .registration-form--step7 h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.view-platform_approval .registration-form--step7 .processing__info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.view-platform_approval .selling__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem auto;
  margin-bottom: 10px !important;
  max-width: 600px;
}
body.view-platform_approval .registration-form--step8 {
  margin: 0 auto;
  max-width: 600px;
}
body.view-platform_approval .registration-form--step8 .selling__contents h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step8 .selling__contents h2 {
    font-size: 25px;
  }
}
body.view-platform_approval .registration-form--step8 .registration__box {
  padding: 0.5rem 0rem;
}
body.view-platform_approval .registration-form--step8 .registration__box label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.view-platform_approval .registration-form--step8 .registration__box label sup {
  color: #982065;
}
body.view-platform_approval .registration-form--step8 .registration__box select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 33px;
  width: 50%;
}
body.view-platform_approval .registration-form--step8 .registration__box input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  height: 33px;
  padding-left: 5px;
  width: 100%;
}
body.view-platform_approval .registration-form--step8 .registration__box .invalid-field {
  color: #BA2B2B;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step8 .registration__box p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--step8 .sort__code input {
  width: 50%;
}
body.view-platform_approval .registration-form--step8 .button__container {
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step8 .button__container {
    text-align: center;
  }
}
body.view-platform_approval .registration-form--step8 .button__container button {
  margin-right: 2rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--step8 .button__container button {
    padding: 0.7rem 1.4rem;
    margin-right: 0;
    margin-top: 2rem;
  }
}
body.view-platform_approval .registration-form--step8 .button__container a {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  position: absolute;
  text-decoration: underline;
  top: 4rem;
}
@media (max-width: 767.98px) {
  body.view-platform_approval .registration-form--step8 .button__container a.skip-this-step {
    position: relative;
    top: 20px;
    margin-top: 40px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
body.view-platform_approval h1 {
  margin-top: 1rem !important;
}
body.view-platform_approval .domicile__overall {
  margin: 0 auto;
  max-width: 600px;
}
body.view-platform_approval .domicile__overall .domicile__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin: 1rem 0rem;
  margin-bottom: 1rem !important;
  text-align: center;
}
body.view-platform_approval .domicile__overall .domicile__sub--info {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
body.view-platform_approval .button__container {
  text-align: center;
}
body.view-platform_approval .button__container button {
  margin-top: 3rem;
  padding: 0.7rem 1.4rem;
}
body.view-platform_approval .payment__optional--container .payment__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px !important;
  margin-top: 1rem;
}
body.view-platform_approval .payment__optional--container .button__container {
  margin-top: 2rem;
  position: relative;
  text-align: left;
}
body.view-platform_approval .payment__optional--container .button__container button {
  margin-right: 2rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .payment__optional--container .button__container button {
    padding: 0.2rem 1rem;
  }
}
body.view-platform_approval .payment__optional--container .button__container a {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  position: absolute;
  text-decoration: underline;
  top: 4rem;
}
body.view-platform_approval .thankyou__sub--heading {
  color: #982065 !important;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
}
body.view-platform_approval .registration-form--thanks {
  margin: 0 auto;
  max-width: 600px;
}
body.view-platform_approval .registration-form--thanks p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.view-platform_approval .registration-form--thanks p a {
  color: #982065;
  text-decoration: underline;
}
body.view-platform_approval .registration-form--thanks p a span {
  display: -webkit-inline-box;
}
body.view-platform_approval .registration-form--thanks .button__container {
  margin-top: 4rem;
  text-align: center;
}
body.view-platform_approval .registration-form--thanks .button__container a {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.7rem 1.4rem;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .registration-form--thanks .button__container a {
    margin-bottom: 1rem;
    width: 100%;
  }
}
body.view-platform_approval .container--loading {
  padding: 200px 20px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.view-platform_approval .container--loading {
    padding: 50px 10px;
  }
}
body.view-platform_approval .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step1, body.view-platform_approval .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step2, body.view-platform_approval .container--stepcontainer button.btn.btn-register-continue.btn-register-continue--step3 {
  max-width: 280px;
  width: 280px;
  font-weight: 500;
  font-size: 16px;
  padding: 0 20px;
}
body.view-platform_approval .container--stepcontainer .select-interests button {
  font-size: 16px;
}
body.view-platform_approval .container--stepcontainer .select-interests button.btn.teal-outline {
  color: #5A5A5A;
  border: 1px solid #5A5A5A;
}
body.view-platform_approval .container--stepcontainer .select-interests button.btn.teal-outline:hover {
  color: #FFFFFF;
  background: #5A5A5A;
}
body.view-platform_approval .verify-identity h5 {
  font-size: 1.3rem;
}
body.view-platform_approval .postcode__input {
  width: 50%;
}
body.view-platform_approval .address_box {
  border-top: 1px solid #D2D2D2;
  padding-top: 2rem !important;
}
body.view-platform_approval .postcode__lookup {
  width: 50%;
  display: inline-block;
}
body.view-platform_approval .postcode__lookup .field-holder {
  float: left;
  width: 100%;
  position: relative;
}
body.view-platform_approval .postcode__lookup .field-holder .address-options {
  border: 0.5px solid #C4C4C4;
  height: 300px;
  overflow-y: auto;
}
body.view-platform_approval .postcode__lookup .field-holder .address-options ul.address-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.view-platform_approval .postcode__lookup .field-holder .address-options ul.address-list li.address-item {
  cursor: pointer;
  color: #282C27;
  font-size: 0.9rem;
  padding: 10px;
  transition: all ease-in-out 0.3s;
  background: #FFFFFF;
}
body.view-platform_approval .postcode__lookup .field-holder .address-options ul.address-list li.address-item:hover {
  background-color: #F8F8F8;
  color: #282C27;
}

.ss-upload.column {
  flex-direction: column;
  width: 100%;
}
.ss-upload.column .dz-message {
  width: 100%;
}
.ss-upload.column .dz-message .meta {
  margin-bottom: 10px;
}
.ss-upload.column .dz-message label.btn-app {
  background-color: #982065;
  color: #FFFFFF;
  display: block;
  height: 45px;
  line-height: 45px;
  margin: 10px auto 0;
  max-width: 190px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.ss-upload.column .form-group.file-upload {
  max-width: 190px;
  width: 100%;
}

/*================================================================================
$ CHECKBOX OVERRIDE
================================================================================*/
.registration-form--step5 .form-group.checkbox {
  height: auto;
  min-height: 60px;
}
@media screen and (max-width: 349px) {
  .registration-form--step5 .form-group.checkbox {
    min-height: 85px;
  }
}
.registration-form--step5 .form-group > label {
  line-height: 1.4;
}
.registration-form--step5 .form-group > label:before {
  top: 7px !important;
}
.registration-form--step5 .form-group > label:after {
  top: 3px !important;
}

/*================================================================================
$ VALIDATION OVERRIDE
================================================================================*/
.form-group--phonevalidation .iti {
  width: 100%;
}

/*================================================================================
$ MODAL OVERRIDE
================================================================================*/
#phoneVarification .form-group label {
  position: absolute;
}

/*================================================================================
$ CONFIRMATION POPUP - END OF REGISTRATION JOURNEY
================================================================================*/
body.view-platform_approval #step5Container .registration-form .mt-5 {
  margin-top: 2rem !important;
}
body.view-platform_approval #step5Container .registration-form .email_marketing {
  padding-top: 20px;
}
@media screen and (max-width: 770px) {
  body.view-platform_approval #step5Container .registration-form .email_marketing {
    padding-top: 30px;
  }
}
body.view-platform_approval #step5Container .registration-form .email_marketing h5 {
  color: #222E5B;
}
body.view-platform_approval #step5Container .registration-form .email_marketing .form-group {
  margin-top: -20px;
}
body.view-platform_approval #step5Container .registration-form .post_marketing {
  padding-top: 10px;
}
@media screen and (max-width: 416px) {
  body.view-platform_approval #step5Container .registration-form .post_marketing {
    padding-top: 50px;
  }
}
body.view-platform_approval #step5Container .registration-form .post_marketing h5 {
  color: #222E5B;
}
body.view-platform_approval #step5Container .registration-form #sms_marketing {
  padding-top: 30px;
}
@media screen and (max-width: 416px) {
  body.view-platform_approval #step5Container .registration-form #sms_marketing {
    padding-top: 50px;
  }
}
body.view-platform_approval #step5Container .registration-form #sms_marketing h5 {
  color: #222E5B;
}
body.view-platform_approval #step5Container .registration-form #telephone_marketing {
  padding-top: 10px;
}
@media screen and (max-width: 416px) {
  body.view-platform_approval #step5Container .registration-form #telephone_marketing {
    padding-top: 50px;
  }
}
body.view-platform_approval #step5Container .registration-form #telephone_marketing h5 {
  color: #222E5B;
}

/* My Bids

/* SPECFIC ACCOUNT STYLE PAGES */
.my-bids.my-watchlist .auctions-list .auction-wrapper .auction-details-right a {
  margin-top: 36px;
}
.my-bids .auctions-list .accordion {
  width: 100%;
}
.my-bids .auctions-list .accordion .card {
  border: none;
  box-shadow: none;
}
.my-bids .auctions-list .accordion .card .card-header {
  background: #fff;
  margin-top: 2rem;
  padding: 0.5rem 0rem;
}
@media (max-width: 575.98px) {
  .my-bids .auctions-list .accordion .card .card-header {
    margin-top: 0;
  }
}
.my-bids .auctions-list .accordion .card .card-header button.btn {
  align-items: center;
  border-top: 1px solid #d2d2d2;
  display: flex;
  justify-content: space-between;
  outline: none;
  padding: 2px 0;
  text-decoration: none;
  width: 100%;
}
.my-bids .auctions-list .accordion .card .card-header button.btn:focus {
  box-shadow: none;
}
.my-bids .auctions-list .accordion .card .card-header button.btn.collapsed {
  transition: 100ms ease;
}
.my-bids .auctions-list .accordion .card .card-header button.btn.collapsed::after {
  transform: rotate(-180deg);
}
.my-bids .auctions-list .accordion .card .card-header button.btn:first-child {
  border-top: 0;
}
.my-bids .auctions-list .accordion .card .card-header button.btn::after {
  background: url("../images/icons/arrow-down-mybids.svg") no-repeat;
  content: "";
  display: inline-flex;
  float: right;
  height: 10px;
  transform: rotate(0deg);
  transition: 100ms ease;
  width: 18px;
}
.my-bids .auctions-list .accordion .card .card-header button.btn[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
.my-bids .auctions-list .accordion .card .card-header button.btn[aria-expanded=false]::after {
  transform: rotate(0deg);
}
.my-bids .auctions-list .accordion .card .card-header button.btn p {
  letter-spacing: 0;
  margin-bottom: 0;
  text-transform: none;
}
.my-bids .auctions-list .accordion .card .card-header button.btn p.bid-details {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 18px;
}
.my-bids .auctions-list .accordion .card .card-header button.btn p.bid-details span {
  color: #0B0A1D;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 15px;
  padding-top: 10px;
}
.my-bids .auctions-list .accordion .card .card-header button.btn p.total-bids {
  color: #0B0A1D;
  float: right;
  font-family: "Arial", serif;
  font-size: 1rem;
  line-height: 16px;
  padding-right: 1rem;
}
.my-bids .auctions-list .accordion .card .card-header button.btn p.total-bids span {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .my-bids .auctions-list .accordion .card .card-header button.btn p.total-bids {
    display: none;
  }
}
.my-bids .auctions-list .accordion .card .card-body {
  padding: 0;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--name .sale__heading {
  border-bottom: 1px solid #0B0A1D;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--name .auction__name {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 400;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--number .sale__heading {
  border-bottom: 1px solid #0B0A1D;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--number .auction__number {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 400;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--date .sale__heading {
  border-bottom: 1px solid #0B0A1D;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
.my-bids .auctions-list .accordion .card .card-body .sales__content .sales__auction--date .auction__date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 400;
}
.my-bids .auctions-list .my-bids-bid-type .input-group-prepend {
  display: inline-flex;
  margin-right: -1px;
}
.my-bids .auctions-list .my-bids-bid-type label {
  border-bottom: 1px solid #D8D8D8;
  color: #3C3C3B;
  font-size: 12px;
  font-weight: 500;
  line-height: 23px;
  padding-left: 10px;
}
.my-bids .auctions-list .my-bids-bid-type label::before {
  background: url("../images/icons/bid-type-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  height: 12px;
  margin-left: -10px;
  margin-right: 10px;
  width: 10px;
}
.my-bids .auctions-list .my-bids-bid-type select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url("../images/icons/arrow-down-filter.svg") no-repeat;
  background-position: right center;
  border: none;
  border-bottom: 1px solid #D8D8D8;
  color: #3C3C3B;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 23px;
  margin-left: -5px;
  outline: none;
  padding-left: 5px;
  width: 120px;
}
.my-bids .auctions-list .auction-wrapper {
  background: white;
  border: 1px solid #939393;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  max-height: 235px;
  padding: 10px 0;
}
@media screen and (max-width: 599px) {
  .my-bids .auctions-list .auction-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .my-bids .auctions-list .auction-wrapper {
    max-height: initial;
  }
}
.my-bids .auctions-list .auction-wrapper .image__container {
  position: relative;
}
.my-bids .auctions-list .auction-wrapper .image__container img {
  max-height: 210px;
  object-fit: contain;
  width: 90%;
}
@media screen and (max-width: 799px) {
  .my-bids .auctions-list .auction-wrapper .image__container img {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .my-bids .auctions-list .auction-wrapper .image__container img {
    width: 100%;
  }
}
.my-bids .auctions-list .auction-wrapper .image__container .bids__info {
  bottom: 10px;
}
.my-bids .auctions-list .auction-wrapper .image__container .bids__info .winnerBid {
  background-color: #2FB400;
  border-radius: 4px;
  bottom: 10px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 500;
  left: 43px;
  margin-bottom: 0rem;
  padding: 0.5rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 140px;
}
@media screen and (max-width: 1199px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .winnerBid {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 799px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .winnerBid {
    left: 0.5rem;
    width: 120px;
  }
}
@media (max-width: 575.98px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .winnerBid {
    left: 0;
    margin: 0 10px;
    width: 95%;
  }
}
.my-bids .auctions-list .auction-wrapper .image__container .bids__info .outBid {
  background-color: #BA2B2B;
  border-radius: 4px;
  bottom: 10px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 500;
  left: 43px;
  margin-bottom: 0rem;
  padding: 0.5rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 140px;
}
@media screen and (max-width: 1199px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .outBid {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 799px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .outBid {
    left: 0.5rem;
    width: 120px;
  }
}
@media (max-width: 575.98px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .outBid {
    left: 0;
    margin: 0 10px;
    width: 95%;
  }
}
.my-bids .auctions-list .auction-wrapper .image__container .bids__info .belowBid, .my-bids .auctions-list .auction-wrapper .image__container .bids__info .reserveBid {
  background-color: #D2D2D2;
  border-radius: 4px;
  bottom: 0;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0rem;
  padding: 0.5rem;
  position: absolute;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .my-bids .auctions-list .auction-wrapper .image__container .bids__info .belowBid, .my-bids .auctions-list .auction-wrapper .image__container .bids__info .reserveBid {
    font-size: 0.75rem;
  }
}
.my-bids .auctions-list .auction-wrapper .auction-details {
  padding: 15px;
}
.my-bids .auctions-list .auction-wrapper .auction-details p {
  margin-bottom: 0;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.auction-id {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 14px;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.auction-title {
  -webkit-box-orient: vertical;
  color: #0B0A1D;
  display: -webkit-box;
  font-family: "Georgia", sans-serif;
  font-size: 17px;
  font-weight: 400;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
  max-width: 100%;
  min-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.estimate-title {
  color: #0B0A1D;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 400;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.estimate-title span.estimate-price {
  color: #0B0A1D;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 400;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.edit-excess-bid {
  display: inline-flex;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.edit-excess-bid a {
  color: #000000;
  text-decoration-line: underline;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.auction-current-bid-type {
  color: #6D6D6D;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.my-bids .auctions-list .auction-wrapper .auction-details p.auction-current-bid-price {
  color: #982065;
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  text-align: right;
}
.my-bids .auctions-list .auction-wrapper .auction-details .bid-status {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.my-bids .auctions-list .auction-wrapper .auction-details .bid-status.lost {
  color: #BA2B2B;
}
.my-bids .auctions-list .auction-wrapper .auction-details .bid-status.won {
  color: #2FB400;
}
.my-bids .auctions-list .auction-wrapper .auction-details a.view-details {
  align-items: center;
  color: #982065;
  cursor: pointer;
  display: flex;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 16px;
  text-decoration: underline;
  transition: 0.3s ease;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right {
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0px;
  width: 100%;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .lot-remaining-time {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  text-align: center;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .lot-remaining-time .time-label {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .lot-remaining-time .time-value {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .lot-remaining-time .time-value {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.telephone_bid {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.telephone_bid span {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding-left: 10px;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.commission_bid {
  background-color: #D2D2D2;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.hammer_bid {
  background-color: #982065;
  color: #FFFFFF;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.hammer_bid span {
  color: #FFFFFF;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.timed_bid {
  background-color: #D2D2D2;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.current_bid {
  font-size: 16px;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.your_maximum {
  font-size: 16px;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.reduce_bid {
  background-color: #D2D2D2;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.reduce_bid a {
  color: #0B0A1D;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.reduce_bid a:hover {
  text-decoration: none;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right p.bid_status {
  color: #C73154;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .commission_cancel {
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 10px 10px 0px 0px;
  padding: 5px 0px;
  text-align: center;
  text-decoration: underline;
  text-transform: uppercase;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .commission_cancel:hover {
  text-decoration: none;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .maximum_bid {
  background-color: #982065;
  border: 1px solid #982065;
  color: #FFFFFF;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 10px;
  padding: 5px 0px;
  text-align: center;
  text-transform: uppercase;
  width: 96%;
}
.my-bids .auctions-list .auction-wrapper .auction-details-right .reduceMaxBid {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 10px;
  padding: 5px 0px;
  text-align: center;
  text-transform: uppercase;
  width: 96%;
}

/* My wishlist */
.view-wishlist .my-bids .auction-wrapper img {
  object-fit: contain;
  width: 90%;
}
@media screen and (max-width: 599px) {
  .view-wishlist .my-bids .auction-wrapper img {
    width: 100%;
  }
}
.view-wishlist .my-bids .auction-wrapper .auction-details-right {
  background: #fff;
  padding: 40px 20px;
}
.view-wishlist .my-bids .auction-wrapper .auction-details-right button.btn-remove {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
  font-size: 0.75rem;
  line-height: 38px;
  min-height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  width: 100%;
}
.view-wishlist .my-bids .auction-wrapper .auction-details-right button.btn-remove:hover {
  background: #A60000;
  color: #fff;
}

/* ====== INVOICES ====== */
/* ======
INVOICES
	- TABS
	- INVOICES CONTENT
====== */
body.site.view-my_invoices {
  /*================================================================================
  $ TABS
  ================================================================================*/
  /*================================================================================
  $ INVOICES CONTENT
  ================================================================================*/
}
body.site.view-my_invoices .beneath-title-row {
  border-bottom: 1px solid #939393;
  float: left;
  margin-bottom: 40px;
  padding-bottom: 10px;
  width: 100%;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu {
  float: left;
  padding-top: 10px;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list {
  list-style: none;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list li.menu-item {
  float: left;
  padding-right: 30px;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list li.menu-item:last-child {
  padding-right: 0;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list li.menu-item > a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list li.menu-item > a:hover {
  text-decoration: none;
}
body.site.view-my_invoices .beneath-title-row .invoices-sub-menu ul.invoices-sub-menu-list li.menu-item > a.active {
  border-bottom: 3px solid #982065;
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding-bottom: 13px;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.view-my_invoices .invoices__container .invoices__content {
  border-bottom: 1px solid #939393;
  padding-bottom: 1.5rem;
  padding-top: 3rem;
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__left--column .invoices__auction {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__left--column .invoices__date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__left--column .invoices__link {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column {
  text-align: right;
}
@media screen and (max-width: 599px) {
  body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column {
    margin-top: 1rem;
    text-align: left;
  }
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column p {
    text-align: right;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column p {
    text-align: left;
  }
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column p span {
  display: inline-block;
  font-weight: 700;
  margin-left: 3rem;
}
body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column a {
  padding: 0.2rem 5rem;
}
@media screen and (max-width: 1199px) {
  body.site.view-my_invoices .invoices__container .invoices__content .invoices__right--column a {
    padding: 0.2rem 3rem;
  }
}
body.site.view-my_invoices .invoices__container .invoices__content:first-child {
  padding-top: 0rem;
}
body.site.view-my_invoices .invoices__container .no-invoices {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-top: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.view-my_invoices .invoices__container .no-invoices {
    font-size: 20px;
  }
}

.invoices__list-holder {
  float: left;
  width: 100%;
}
.invoices__list-holder .invoices__list-item {
  border-top: 1px solid #000;
  margin: 0 auto;
  padding: 15px;
  width: 80%;
}
@media screen and (max-width: 449px) {
  .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__right {
  text-align: right;
}
.invoices__list-holder .invoices__list-item h5 {
  font-family: "Georgia", sans-serif;
  font-weight: lighter;
}
/*================================================================================
$ BUTTONS
================================================================================*/
/*================================================================================
$ TEXT
================================================================================*/
.invoices__top-text {
  padding: 20px;
  text-align: center;
  width: 100%;
}

.invoices__top-text__title {
  margin: 0 auto;
  text-align: center;
}
.invoices__top-text__title h4 {
  display: inline-block;
  margin-right: 10px;
}
.invoices__top-text__title h5 {
  display: inline-block;
  margin-bottom: 10px;
}
.invoices__top-text__title img {
  display: inline-block;
  vertical-align: middle;
}

.invoices__top-text__content {
  margin: 0 auto;
  margin-top: 15px;
}

.invoice-total-box p {
  text-align: right;
}
.invoice-total-box .invoice-total__title {
  margin-right: 10px;
}
.invoice-total-box .invoice-total__value {
  color: #0d6efd;
}

.invoice-buttons-box {
  margin: 15px;
}

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

.view-my_invoices .invoices_list .invoice-lot {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.view-my_invoices .invoices_list .invoice-lot .invoice-info .row p {
  color: #000;
  margin-bottom: 0;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-info .row p:first-child {
  font-weight: 600;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-info a {
  font-size: 14px;
  color: #982065;
  font-weight: 600;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-status p {
  text-align: center;
  color: #9A9A9A;
  letter-spacing: 1px;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-status p span {
  justify-content: center;
  color: #3B8204;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0px;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-status p span.status-paid {
  color: #00570D;
}
.view-my_invoices .invoices_list .invoice-lot .invoice-status p span.status-unpaid {
  color: #C73154;
}

/*================================================================================
My Account - My Invoices - Overlay
================================================================================*/
.com_account.view-my_invoices #invoice_overlay .modal-xl {
  max-width: 990px;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl .card {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border: none;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl .card .invoices_list .invoice-lot {
  border: none;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl .card h6 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form .stripe-wrapper {
  background: #F6F4F4;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form #card-element {
  background: #F6F4F4;
  width: auto;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 4px;
}
@media (min-width: 992px) {
  .com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form #card-element {
    width: 60%;
  }
}
.com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form #card-element iframe {
  border: 1px solid #000000 !important;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form .register__payment-btn {
  font-size: 16px;
}
.com_account.view-my_invoices #invoice_overlay .modal-xl #payment-form .cancelBtn {
  background-color: transparent !important;
  background-image: url("../images/icons/cancel-btn-icon.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  border: none !important;
  border-radius: 0;
  color: #2D2D2D;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 5px 5px 22px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0px;
  opacity: 0.5;
}

/* ---------------- */
/* CMS */
/* ====== HOMEPAGE ====== */
/* ======
HOMEPAGE

	- YouTube Block

====== */
body.site.home {
  /*================================================================================
  $ 
  ================================================================================*/
  /*================================================================================
  $ 
  ================================================================================*/
  /*================================================================================
  $ 
  ================================================================================*/
}
body.site.home .container-fluid, body.site.home .container-sm, body.site.home .container-md, body.site.home .container-lg, body.site.home .container-xl, body.site.home .container-xxl {
  /*================================================================================
  $ HOME TOP BANNER
  ================================================================================*/
}
body.site.home .container-fluid .home__banner, body.site.home .container-sm .home__banner, body.site.home .container-md .home__banner, body.site.home .container-lg .home__banner, body.site.home .container-xl .home__banner, body.site.home .container-xxl .home__banner {
  /*================================================================================
  $ Featured Article addon - HP Top right
  ================================================================================*/
}
body.site.home .container-fluid .home__banner > .sppb-container-inner, body.site.home .container-sm .home__banner > .sppb-container-inner, body.site.home .container-md .home__banner > .sppb-container-inner, body.site.home .container-lg .home__banner > .sppb-container-inner, body.site.home .container-xl .home__banner > .sppb-container-inner, body.site.home .container-xxl .home__banner > .sppb-container-inner {
  margin: 0 auto;
  max-width: 1700px;
}
@media screen and (min-width: 992px) {
  body.site.home .container-fluid .home__banner .home__banner__slideshow .sp-slider, body.site.home .container-sm .home__banner .home__banner__slideshow .sp-slider, body.site.home .container-md .home__banner .home__banner__slideshow .sp-slider, body.site.home .container-lg .home__banner .home__banner__slideshow .sp-slider, body.site.home .container-xl .home__banner .home__banner__slideshow .sp-slider, body.site.home .container-xxl .home__banner .home__banner__slideshow .sp-slider,
  body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-md .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-section,
  body.site.home .container-fluid .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-sm .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-md .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-lg .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-xl .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-xxl .home__banner .home__banner__slideshow .banner__bottom--right-image,
  body.site.home .container-fluid .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-sm .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-md .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-lg .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-xl .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-xxl .home__banner .home__banner__boxes .sp-slider,
  body.site.home .container-fluid .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-sm .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-md .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-lg .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-xl .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-xxl .home__banner .home__banner__boxes .sppb-section,
  body.site.home .container-fluid .home__banner .home__banner__boxes .banner__bottom--right-image,
  body.site.home .container-sm .home__banner .home__banner__boxes .banner__bottom--right-image,
  body.site.home .container-md .home__banner .home__banner__boxes .banner__bottom--right-image,
  body.site.home .container-lg .home__banner .home__banner__boxes .banner__bottom--right-image,
  body.site.home .container-xl .home__banner .home__banner__boxes .banner__bottom--right-image,
  body.site.home .container-xxl .home__banner .home__banner__boxes .banner__bottom--right-image {
    border-radius: 7px;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  body.site.home .container-fluid .home__banner .home__banner__slideshow .sp-slider .sp-item, body.site.home .container-sm .home__banner .home__banner__slideshow .sp-slider .sp-item, body.site.home .container-md .home__banner .home__banner__slideshow .sp-slider .sp-item, body.site.home .container-lg .home__banner .home__banner__slideshow .sp-slider .sp-item, body.site.home .container-xl .home__banner .home__banner__slideshow .sp-slider .sp-item, body.site.home .container-xxl .home__banner .home__banner__slideshow .sp-slider .sp-item,
  body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-md .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-section .sp-item,
  body.site.home .container-fluid .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-sm .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-md .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-lg .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-xl .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-xxl .home__banner .home__banner__slideshow .banner__bottom--right-image .sp-item,
  body.site.home .container-fluid .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-sm .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-md .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-lg .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-xl .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-xxl .home__banner .home__banner__boxes .sp-slider .sp-item,
  body.site.home .container-fluid .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-sm .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-md .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-lg .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-xl .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-xxl .home__banner .home__banner__boxes .sppb-section .sp-item,
  body.site.home .container-fluid .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item,
  body.site.home .container-sm .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item,
  body.site.home .container-md .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item,
  body.site.home .container-lg .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item,
  body.site.home .container-xl .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item,
  body.site.home .container-xxl .home__banner .home__banner__boxes .banner__bottom--right-image .sp-item {
    border-radius: 7px;
    overflow: hidden;
  }
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article {
  position: relative;
  transition: 0.2s ease-in-out;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article:hover .sppb-article-img-wrap img {
  transform: scale(1.05);
  transition: 0.25s ease-in-out;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .sppb-article-img-wrap img {
  transition: 0.25s ease-in-out;
  border-radius: 5px;
  max-height: 390px;
  height: 390px;
  object-fit: cover;
  width: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 40%, transparent 70%) transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding: 20px;
  position: absolute;
  text-align: center;
  width: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 {
  font-size: 30px;
  line-height: 30px;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column h2 a:hover {
  text-decoration: dashed;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore {
  align-self: center;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 12px;
  padding: 12px 28px 12px 28px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}
body.site.home .container-fluid .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover, body.site.home .container-sm .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover, body.site.home .container-md .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover, body.site.home .container-lg .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover, body.site.home .container-xl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover, body.site.home .container-xxl .home__banner .home__banner__boxes .featured-article-top-right-wrapper .featured-article .news__featured--right-column a.sppb-readmore:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-addon-wrapper, body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-addon-wrapper, body.site.home .container-md .home__banner .home__banner__slideshow .sppb-addon-wrapper, body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-addon-wrapper, body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-addon-wrapper, body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-addon-wrapper {
  height: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441, body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441, body.site.home .container-md .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441, body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441, body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441, body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 {
  height: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider, body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider, body.site.home .container-md .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider, body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider, body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider, body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider {
  height: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage, body.site.home .container-sm .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage, body.site.home .container-md .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage, body.site.home .container-lg .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage, body.site.home .container-xl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage, body.site.home .container-xxl .home__banner .home__banner__slideshow .sppb-addon-wrapper #sppb-addon-1722602197441 .sppb-addon-sp-slider.sp-slider .sp-slider-outer-stage {
  height: 100%;
  min-height: 100%;
}
body.site.home .container-fluid .home__banner .home__banner__slideshow a.slider_url, body.site.home .container-sm .home__banner .home__banner__slideshow a.slider_url, body.site.home .container-md .home__banner .home__banner__slideshow a.slider_url, body.site.home .container-lg .home__banner .home__banner__slideshow a.slider_url, body.site.home .container-xl .home__banner .home__banner__slideshow a.slider_url, body.site.home .container-xxl .home__banner .home__banner__slideshow a.slider_url {
  display: block;
  height: 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sp-slider .sp-nav-control, body.site.home .container-sm .home__banner .sp-slider .sp-nav-control, body.site.home .container-md .home__banner .sp-slider .sp-nav-control, body.site.home .container-lg .home__banner .sp-slider .sp-nav-control, body.site.home .container-xl .home__banner .sp-slider .sp-nav-control, body.site.home .container-xxl .home__banner .sp-slider .sp-nav-control {
    top: -90px;
  }
}
body.site.home .container-fluid .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-sm .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-md .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-lg .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-xl .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-xxl .home__banner .sp-slider .sp-nav-control .nav-control {
  align-items: center;
  display: flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-sm .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-md .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-lg .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-xl .home__banner .sp-slider .sp-nav-control .nav-control, body.site.home .container-xxl .home__banner .sp-slider .sp-nav-control .nav-control {
    height: 25px;
    width: 25px;
  }
}
body.site.home .container-fluid .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before, body.site.home .container-sm .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before, body.site.home .container-md .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before, body.site.home .container-lg .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before, body.site.home .container-xl .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before, body.site.home .container-xxl .home__banner .sp-slider .sp-nav-control .nav-control i.fa::before {
  background: url(../images/icons/slider-arrow-icon.svg) no-repeat;
  background-size: contain;
  content: "";
  display: flex;
  height: 10px;
  width: 10px;
}
body.site.home .container-fluid .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before, body.site.home .container-sm .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before, body.site.home .container-md .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before, body.site.home .container-lg .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before, body.site.home .container-xl .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before, body.site.home .container-xxl .home__banner .sp-slider .sp-nav-control .nav-control i.fa.fa-angle-left::before {
  transform: rotate(180deg);
}
body.site.home .container-fluid .home__banner .sp-slider .sppb-sp-slider-button, body.site.home .container-sm .home__banner .sp-slider .sppb-sp-slider-button, body.site.home .container-md .home__banner .sp-slider .sppb-sp-slider-button, body.site.home .container-lg .home__banner .sp-slider .sppb-sp-slider-button, body.site.home .container-xl .home__banner .sp-slider .sppb-sp-slider-button, body.site.home .container-xxl .home__banner .sp-slider .sppb-sp-slider-button {
  margin-right: 0;
}
body.site.home .container-fluid .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-sm .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-md .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-lg .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-xl .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-xxl .home__banner .sp-slider .sp-slider-btn-text {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 10px 0 10px 0;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-sm .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-md .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-lg .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-xl .home__banner .sp-slider .sp-slider-btn-text, body.site.home .container-xxl .home__banner .sp-slider .sp-slider-btn-text {
    padding: 0 0 5px 0;
  }
}
body.site.home .container-fluid .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon, body.site.home .container-sm .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon, body.site.home .container-md .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon, body.site.home .container-lg .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon, body.site.home .container-xl .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon, body.site.home .container-xxl .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}
body.site.home .container-fluid .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before, body.site.home .container-sm .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before, body.site.home .container-md .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before, body.site.home .container-lg .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before, body.site.home .container-xl .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before, body.site.home .container-xxl .home__banner .sp-slider .sp-slider-btn-text .sp-slider-btn-icon i.fas.fa-chevron-right::before {
  background: url(../images/icons/explore-arrow-icon.png) no-repeat;
  background-size: contain;
  content: "";
  display: flex;
  height: 16px;
  margin-left: 10px;
  width: 14px;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12, body.site.home .container-sm .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12, body.site.home .container-md .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12, body.site.home .container-lg .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12, body.site.home .container-xl .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12, body.site.home .container-xxl .home__banner .sp-slider .sp-slider-outer-stage .sppb-container .sppb-col-sm-12 {
    padding: 0;
  }
}
body.site.home .container-fluid .home__banner .sppb-container, body.site.home .container-sm .home__banner .sppb-container, body.site.home .container-md .home__banner .sppb-container, body.site.home .container-lg .home__banner .sppb-container, body.site.home .container-xl .home__banner .sppb-container, body.site.home .container-xxl .home__banner .sppb-container {
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 75%);
  bottom: 0rem;
  max-width: none;
  padding: 11rem 2rem 1rem 2rem;
  position: absolute;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sppb-container, body.site.home .container-sm .home__banner .sppb-container, body.site.home .container-md .home__banner .sppb-container, body.site.home .container-lg .home__banner .sppb-container, body.site.home .container-xl .home__banner .sppb-container, body.site.home .container-xxl .home__banner .sppb-container {
    padding: 10rem 2rem 0.5rem 2rem;
  }
}
body.site.home .container-fluid .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-sm .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-md .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-lg .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-xl .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-xxl .home__banner .sppb-container .sppb-sp-slider-text {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 500;
  margin: 0.5rem 0;
  width: 100%;
}
@media screen and (max-width: 416px) {
  body.site.home .container-fluid .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-sm .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-md .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-lg .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-xl .home__banner .sppb-container .sppb-sp-slider-text, body.site.home .container-xxl .home__banner .sppb-container .sppb-sp-slider-text {
    font-size: 13px !important;
  }
}
body.site.home .container-fluid .home__banner .sppb-container h1, body.site.home .container-sm .home__banner .sppb-container h1, body.site.home .container-md .home__banner .sppb-container h1, body.site.home .container-lg .home__banner .sppb-container h1, body.site.home .container-xl .home__banner .sppb-container h1, body.site.home .container-xxl .home__banner .sppb-container h1 {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif !important;
  font-size: 54px;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  body.site.home .container-fluid .home__banner .sppb-container h1, body.site.home .container-sm .home__banner .sppb-container h1, body.site.home .container-md .home__banner .sppb-container h1, body.site.home .container-lg .home__banner .sppb-container h1, body.site.home .container-xl .home__banner .sppb-container h1, body.site.home .container-xxl .home__banner .sppb-container h1 {
    font-size: 35px !important;
  }
}
@media screen and (max-width: 416px) {
  body.site.home .container-fluid .home__banner .sppb-container h1, body.site.home .container-sm .home__banner .sppb-container h1, body.site.home .container-md .home__banner .sppb-container h1, body.site.home .container-lg .home__banner .sppb-container h1, body.site.home .container-xl .home__banner .sppb-container h1, body.site.home .container-xxl .home__banner .sppb-container h1 {
    font-size: 30px !important;
  }
}
body.site.home .container-fluid .home__banner .sppb-container .banner__dates, body.site.home .container-sm .home__banner .sppb-container .banner__dates, body.site.home .container-md .home__banner .sppb-container .banner__dates, body.site.home .container-lg .home__banner .sppb-container .banner__dates, body.site.home .container-xl .home__banner .sppb-container .banner__dates, body.site.home .container-xxl .home__banner .sppb-container .banner__dates {
  display: inline-block;
  width: 70%;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sppb-container .banner__dates, body.site.home .container-sm .home__banner .sppb-container .banner__dates, body.site.home .container-md .home__banner .sppb-container .banner__dates, body.site.home .container-lg .home__banner .sppb-container .banner__dates, body.site.home .container-xl .home__banner .sppb-container .banner__dates, body.site.home .container-xxl .home__banner .sppb-container .banner__dates {
    width: 100%;
  }
}
body.site.home .container-fluid .home__banner .sppb-container a, body.site.home .container-sm .home__banner .sppb-container a, body.site.home .container-md .home__banner .sppb-container a, body.site.home .container-lg .home__banner .sppb-container a, body.site.home .container-xl .home__banner .sppb-container a, body.site.home .container-xxl .home__banner .sppb-container a {
  color: #FFFFFF;
  float: right;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.home .container-fluid .home__banner .sppb-container a, body.site.home .container-sm .home__banner .sppb-container a, body.site.home .container-md .home__banner .sppb-container a, body.site.home .container-lg .home__banner .sppb-container a, body.site.home .container-xl .home__banner .sppb-container a, body.site.home .container-xxl .home__banner .sppb-container a {
    float: left;
  }
}
body.site.home .container-fluid .home__banner .sppb-container a:hover, body.site.home .container-sm .home__banner .sppb-container a:hover, body.site.home .container-md .home__banner .sppb-container a:hover, body.site.home .container-lg .home__banner .sppb-container a:hover, body.site.home .container-xl .home__banner .sppb-container a:hover, body.site.home .container-xxl .home__banner .sppb-container a:hover {
  text-decoration: none;
}
body.site.home .container-fluid .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-sm .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-md .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-lg .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xxl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control {
  top: 60px;
}
@media screen and (max-width: 799px) {
  body.site.home .container-fluid .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-sm .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-md .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-lg .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xxl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control {
    right: 20px;
    top: 90px;
  }
}
@media screen and (max-width: 479px) {
  body.site.home .container-fluid .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-sm .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-md .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-lg .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control, body.site.home .container-xxl .home__banner .sp-video-background .sp-video-background-mask .sp-video-control {
    right: 30px;
    top: 20px;
  }
}
body.site.home .container-fluid .home__banner .banner__top--right-image, body.site.home .container-sm .home__banner .banner__top--right-image, body.site.home .container-md .home__banner .banner__top--right-image, body.site.home .container-lg .home__banner .banner__top--right-image, body.site.home .container-xl .home__banner .banner__top--right-image, body.site.home .container-xxl .home__banner .banner__top--right-image {
  height: 390px;
  position: relative;
}
@media screen and (max-width: 1026px) {
  body.site.home .container-fluid .home__banner .banner__top--right-image, body.site.home .container-sm .home__banner .banner__top--right-image, body.site.home .container-md .home__banner .banner__top--right-image, body.site.home .container-lg .home__banner .banner__top--right-image, body.site.home .container-xl .home__banner .banner__top--right-image, body.site.home .container-xxl .home__banner .banner__top--right-image {
    height: 330px;
  }
}
body.site.home .container-fluid .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-sm .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-md .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-lg .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-xl .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-xxl .home__banner .banner__top--right-image .banner__static--content {
  bottom: 3rem;
  left: 4rem;
  position: absolute;
  text-align: center;
}
@media screen and (max-width: 1284px) {
  body.site.home .container-fluid .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-sm .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-md .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-lg .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-xl .home__banner .banner__top--right-image .banner__static--content, body.site.home .container-xxl .home__banner .banner__top--right-image .banner__static--content {
    left: 1rem;
  }
}
body.site.home .container-fluid .home__banner .banner__top--right-image .banner__static--content h4, body.site.home .container-sm .home__banner .banner__top--right-image .banner__static--content h4, body.site.home .container-md .home__banner .banner__top--right-image .banner__static--content h4, body.site.home .container-lg .home__banner .banner__top--right-image .banner__static--content h4, body.site.home .container-xl .home__banner .banner__top--right-image .banner__static--content h4, body.site.home .container-xxl .home__banner .banner__top--right-image .banner__static--content h4 {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.home .container-fluid .home__banner .banner__top--right-image .banner__static--content p, body.site.home .container-sm .home__banner .banner__top--right-image .banner__static--content p, body.site.home .container-md .home__banner .banner__top--right-image .banner__static--content p, body.site.home .container-lg .home__banner .banner__top--right-image .banner__static--content p, body.site.home .container-xl .home__banner .banner__top--right-image .banner__static--content p, body.site.home .container-xxl .home__banner .banner__top--right-image .banner__static--content p {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.home .container-fluid .home__banner .banner__bottom--right-image, body.site.home .container-sm .home__banner .banner__bottom--right-image, body.site.home .container-md .home__banner .banner__bottom--right-image, body.site.home .container-lg .home__banner .banner__bottom--right-image, body.site.home .container-xl .home__banner .banner__bottom--right-image, body.site.home .container-xxl .home__banner .banner__bottom--right-image {
  height: 290px;
  position: relative;
}
@media screen and (max-width: 1026px) {
  body.site.home .container-fluid .home__banner .banner__bottom--right-image, body.site.home .container-sm .home__banner .banner__bottom--right-image, body.site.home .container-md .home__banner .banner__bottom--right-image, body.site.home .container-lg .home__banner .banner__bottom--right-image, body.site.home .container-xl .home__banner .banner__bottom--right-image, body.site.home .container-xxl .home__banner .banner__bottom--right-image {
    height: auto;
  }
}
body.site.home .container-fluid .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-sm .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-md .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-lg .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-xl .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-xxl .home__banner .banner__bottom--right-image .banner__static--content {
  bottom: 3rem;
  left: 15px;
  position: absolute;
  text-align: center;
  width: 90%;
}
@media screen and (max-width: 1284px) {
  body.site.home .container-fluid .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-sm .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-md .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-lg .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-xl .home__banner .banner__bottom--right-image .banner__static--content, body.site.home .container-xxl .home__banner .banner__bottom--right-image .banner__static--content {
    left: 1rem;
  }
}
body.site.home .container-fluid .home__banner .banner__bottom--right-image .banner__static--content h4, body.site.home .container-sm .home__banner .banner__bottom--right-image .banner__static--content h4, body.site.home .container-md .home__banner .banner__bottom--right-image .banner__static--content h4, body.site.home .container-lg .home__banner .banner__bottom--right-image .banner__static--content h4, body.site.home .container-xl .home__banner .banner__bottom--right-image .banner__static--content h4, body.site.home .container-xxl .home__banner .banner__bottom--right-image .banner__static--content h4 {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 2rem;
}
body.site.home .container-fluid .home__banner .banner__bottom--right-image .banner__static--content a, body.site.home .container-sm .home__banner .banner__bottom--right-image .banner__static--content a, body.site.home .container-md .home__banner .banner__bottom--right-image .banner__static--content a, body.site.home .container-lg .home__banner .banner__bottom--right-image .banner__static--content a, body.site.home .container-xl .home__banner .banner__bottom--right-image .banner__static--content a, body.site.home .container-xxl .home__banner .banner__bottom--right-image .banner__static--content a {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 1rem 2rem;
  text-transform: uppercase;
}
body.site.home .container-fluid .home__banner .banner__bottom--right-image .banner__static--content a:hover, body.site.home .container-sm .home__banner .banner__bottom--right-image .banner__static--content a:hover, body.site.home .container-md .home__banner .banner__bottom--right-image .banner__static--content a:hover, body.site.home .container-lg .home__banner .banner__bottom--right-image .banner__static--content a:hover, body.site.home .container-xl .home__banner .banner__bottom--right-image .banner__static--content a:hover, body.site.home .container-xxl .home__banner .banner__bottom--right-image .banner__static--content a:hover {
  text-decoration: none;
}
body.site.home .container-fluid .home__banner #column-id-1671024569163, body.site.home .container-sm .home__banner #column-id-1671024569163, body.site.home .container-md .home__banner #column-id-1671024569163, body.site.home .container-lg .home__banner #column-id-1671024569163, body.site.home .container-xl .home__banner #column-id-1671024569163, body.site.home .container-xxl .home__banner #column-id-1671024569163 {
  align-items: flex-end;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.home .container-fluid .home__banner #column-wrap-id-1671024569157, body.site.home .container-sm .home__banner #column-wrap-id-1671024569157, body.site.home .container-md .home__banner #column-wrap-id-1671024569157, body.site.home .container-lg .home__banner #column-wrap-id-1671024569157, body.site.home .container-xl .home__banner #column-wrap-id-1671024569157, body.site.home .container-xxl .home__banner #column-wrap-id-1671024569157 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  body.site.home .container-fluid .home__banner #column-wrap-id-1671024569159, body.site.home .container-sm .home__banner #column-wrap-id-1671024569159, body.site.home .container-md .home__banner #column-wrap-id-1671024569159, body.site.home .container-lg .home__banner #column-wrap-id-1671024569159, body.site.home .container-xl .home__banner #column-wrap-id-1671024569159, body.site.home .container-xxl .home__banner #column-wrap-id-1671024569159 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  body.site.home .container-fluid .home__banner #column-id-1671024569163, body.site.home .container-sm .home__banner #column-id-1671024569163, body.site.home .container-md .home__banner #column-id-1671024569163, body.site.home .container-lg .home__banner #column-id-1671024569163, body.site.home .container-xl .home__banner #column-id-1671024569163, body.site.home .container-xxl .home__banner #column-id-1671024569163 {
    height: 290px;
  }
  body.site.home .container-fluid .home__banner #column-id-1675682225950, body.site.home .container-sm .home__banner #column-id-1675682225950, body.site.home .container-md .home__banner #column-id-1675682225950, body.site.home .container-lg .home__banner #column-id-1675682225950, body.site.home .container-xl .home__banner #column-id-1675682225950, body.site.home .container-xxl .home__banner #column-id-1675682225950 {
    height: 290px;
  }
}
body.site.home .home__departments {
  position: relative;
}
body.site.home .home__departments img.sppb-img-responsive {
  border-radius: 4px;
}
body.site.home .home__departments .dpt__titles {
  background-color: #FFFFFF;
  border-radius: 3px;
  margin-top: -86px;
  position: absolute;
  z-index: 999;
}
@media (max-width: 575.98px) {
  body.site.home .home__departments .dpt__titles {
    bottom: 14px;
    margin-top: initial;
  }
}
body.site.home .home__departments .dpt__titles a {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 1rem;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  body.site.home .home__departments .dpt__titles a {
    padding: 0.3rem 1rem;
  }
}
body.site.home .home__departments .dpt__titles a:hover {
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  body.site.home .home__departments .sppb-col-md-3 {
    width: 50%;
  }
}
@media screen and (max-width: 574px) {
  body.site.home .home__departments .sppb-col-md-3 {
    width: 100%;
  }
}
body.site.home .home__valuation .valuation__right--side {
  height: 530px;
  padding: 3rem;
}
@media screen and (max-width: 1199px) {
  body.site.home .home__valuation .valuation__right--side {
    margin-top: -6.5rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.home .home__valuation .valuation__right--side {
    border-radius: 4px;
    height: auto;
    margin-left: 10%;
    max-width: 80%;
    padding: 2rem;
  }
}
@media screen and (max-width: 599px) {
  body.site.home .home__valuation .valuation__right--side {
    margin-left: 2.5%;
    max-width: 95%;
    padding: 1.5rem;
    width: 100%;
  }
}
body.site.home .home__valuation .valuation__right--side h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  body.site.home .home__valuation .valuation__right--side h2 {
    font-size: 36px;
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.home .home__valuation .valuation__right--side h2 {
    font-size: 30px;
    width: 100%;
  }
}
body.site.home .home__valuation .valuation__right--side .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.home .home__valuation .valuation__right--side .valuation__sub-heading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.home .home__valuation .valuation__right--side .valuation__button {
  text-align: center;
}
body.site.home .home__valuation .valuation__right--side .valuation__button a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.home .home__valuation .valuation__right--side .valuation__button a:hover {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}
body.site.home .home__buying--heading h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.home .home__social--heading h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.home .home__social--heading h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.home .home__social--heading h2 {
    font-size: 27px;
  }
}
body.site.home .home__social--heading .home__social--media {
  padding-top: 10px;
}
body.site.home .home__social--heading .home__social--media ul {
  padding-left: 0px;
}
body.site.home .home__social--heading .home__social--media ul li {
  display: inline;
  list-style-type: none;
  padding-right: 8px;
}
body.site.home .highlights__module--overall {
  background-color: #FFFFFF !important;
}

#homepage-container {
  /*================================================================================
  $ Slideshow Section
  ================================================================================*/
  /*================================================================================
  $ CREATE ACCOUNT Section
  ================================================================================*/
}
#homepage-container .container, #homepage-container .sppb-row-container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0;
}
#homepage-container .container-fluid, #homepage-container .container-sm, #homepage-container .container-md, #homepage-container .container-lg, #homepage-container .container-xl, #homepage-container .container-xxl {
  max-width: 1600px;
}
#homepage-container .upcoming-lots-container {
  box-shadow: none;
  max-width: 100%;
  width: 2000px;
}
@media (max-width: 575.98px) {
  #homepage-container .upcoming-lots-container {
    box-shadow: none;
  }
}
#homepage-container .front__banner--slides-container {
  position: relative;
}
#homepage-container .mobile-panel {
  background-size: cover;
  height: 500px;
  padding-bottom: 10px;
}
#homepage-container .mobile-panel .bg-image {
  background-size: cover;
  height: 390px;
  position: absolute;
  top: 0;
  width: 420px;
}
@media (max-width: 575.98px) {
  #homepage-container .mobile-panel .bg-image {
    width: 420px;
  }
}
@media screen and (max-width: 399px) {
  #homepage-container .mobile-panel .bg-image {
    width: 390px;
  }
}
#homepage-container .mobile-panel .slide-details {
  background-color: #ffffff;
  bottom: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  min-height: 200px;
  padding: 20px 20px 10px 20px;
  position: absolute;
  transition: 0.2s ease-in;
  width: 360px;
  z-index: 1000;
}
@media (max-width: 575.98px) {
  #homepage-container .mobile-panel .slide-details {
    min-height: 120px;
  }
}
#homepage-container .mobile-panel .slide-details p.slide-title {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: "baskerville-display-pt", serif;
  font-size: 25px;
}
#homepage-container .mobile-panel .slide-details span.slide-date {
  align-items: flex-end;
  color: #2D2D2D;
  display: flex;
  flex: 0.5;
  flex-direction: column;
  font-size: 16px;
}
#homepage-container .mobile-panel .slide-details ul {
  align-items: center;
  display: inline-flex;
  flex: 1;
}
#homepage-container .mobile-panel .slide-details ul li {
  background: #46939D;
  border-radius: 50%;
  color: #46939D;
  display: inline-flex;
  float: left;
  font-size: 2rem;
  height: 8px;
  margin: 0 7px;
  position: relative;
  width: 8px;
}
#homepage-container .mobile-panel .slide-details ul li.active {
  background: #FFFFFF;
  border: 2px solid #46939D;
  height: 15px;
  width: 15px;
}
#homepage-container .mobile-panel .slide-details a.slide-link {
  align-items: flex-end;
  display: flex;
  flex: 1;
  flex-direction: column;
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 575.98px) {
  #homepage-container .mobile-panel .slide-details a.slide-link {
    margin-right: 10px;
  }
}
#homepage-container .mobile-panel .slide-details a.slide-link::after {
  content: url(../images/icons/continue-reading-icon.svg);
  display: inline-flex;
  height: 13px;
  padding: 0px;
  padding-left: 5px;
  position: absolute;
  right: 0;
  width: 8px;
}
#homepage-container .container-slider {
  align-items: center;
  display: none;
  justify-content: center;
  width: 100%;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider {
    overflow: hidden;
  }
}
#homepage-container .container-slider .panel {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px;
  box-shadow: inset 0 0 0 100px rgba(45, 45, 45, 0.5);
  color: #ffffff;
  cursor: pointer;
  flex: 0.4;
  height: 600px;
  margin: 5px;
  position: relative;
  transition: all 400ms ease-in;
}
#homepage-container .container-slider .panel .slider-title {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: "Arial", serif;
  font-size: 24px;
  height: 600px;
  justify-content: flex-end;
  position: relative;
  transform: rotate(90deg);
  z-index: 9;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slider-title {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  #homepage-container .container-slider .panel .slider-title {
    justify-content: center;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #homepage-container .container-slider .panel .slider-title {
    font-size: 21px;
    justify-content: space-evenly;
    line-height: 21px;
  }
}
#homepage-container .container-slider .panel .slider-title span {
  position: absolute;
  width: max-content;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #homepage-container .container-slider .panel .slider-title span {
    width: 60vh;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #homepage-container .container-slider .panel .slider-title span br {
    display: none;
  }
}
#homepage-container .container-slider .panel a.slide-nav {
  background: url(../images/icons/slide-nav-arrow.svg) no-repeat;
  background-size: contain;
  bottom: 80px;
  box-shadow: none;
  display: flex;
  height: 41px;
  margin: 0 auto;
  position: relative;
  width: 41px;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel a.slide-nav {
    left: 0;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #homepage-container .container-slider .panel a.slide-nav {
    left: 3px;
  }
}
#homepage-container .container-slider .panel .slide-details {
  background: #fff;
  bottom: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  left: 120px;
  padding: 30px 30px 10px 30px;
  position: absolute;
  transition: 0.2s ease-out;
  width: 440px;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slide-details {
    left: 0;
    padding: 30px 15px;
    width: 100%;
  }
}
#homepage-container .container-slider .panel .slide-details ul {
  align-items: center;
  display: inline-flex;
  flex: 1;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slide-details ul {
    display: none;
  }
}
#homepage-container .container-slider .panel .slide-details ul li {
  background: #982065;
  border-radius: 50%;
  color: #982065;
  display: inline-flex;
  float: left;
  font-size: 2rem;
  height: 8px;
  margin: 0 7px;
  position: relative;
  width: 8px;
}
#homepage-container .container-slider .panel .slide-details ul li:first-child {
  margin-left: 0;
}
#homepage-container .container-slider .panel .slide-details ul li.active {
  background: #FFFFFF;
  border: 2px solid #982065;
  height: 15px;
  width: 15px;
}
#homepage-container .container-slider .panel .slide-details p.slide-title {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: "Arial", serif;
  font-size: 25px;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slide-details p.slide-title {
    font-size: 19px;
  }
}
#homepage-container .container-slider .panel .slide-details span.slide-date {
  align-items: flex-end;
  color: #2D2D2D;
  display: flex;
  flex: 0.5;
  flex-direction: column;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slide-details span.slide-date {
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
#homepage-container .container-slider .panel .slide-details a.slide-link {
  align-items: flex-end;
  display: flex;
  flex: 0.6;
  flex-direction: column;
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 575.98px) {
  #homepage-container .container-slider .panel .slide-details a.slide-link {
    align-items: flex-start;
  }
}
#homepage-container .container-slider .panel .slide-details a.slide-link::after {
  content: url(../images/icons/continue-reading-icon.svg);
  display: inline-flex;
  height: 13px;
  padding: 0px;
  padding-left: 5px;
  position: absolute;
  right: 0;
  width: 8px;
}
#homepage-container .container-slider .panel h3 {
  bottom: 20px;
  font-size: 24px;
  left: 20px;
  margin: 0;
  opacity: 0;
  position: absolute;
}
#homepage-container .container-slider .panel.active {
  box-shadow: none;
  flex: 5;
}
#homepage-container .container-slider .panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
#homepage-container .container-slider .panel.active .slide-details {
  display: flex;
  transition: 0.2s ease-in;
}
#homepage-container .container-slider .panel.active .slider-title {
  display: none;
  transition: 0.2 ease-out;
}
#homepage-container .container-slider .panel iframe {
  height: 100%;
  width: 100%;
}
@media (min-width: 992px) {
  #homepage-container .container-slider .panel iframe {
    width: 100vw;
  }
}
@media (min-width: 1200px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 100vw;
  }
}
@media (min-width: 1400px) {
  #homepage-container .container-slider .panel iframe {
    height: 100vh;
    object-fit: cover;
    width: 100vw;
  }
}
@media (min-width: 1430px) and (min-width: 850px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
}
@media (min-width: 1450px) and (min-width: 900px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 100vw;
  }
}
@media (min-width: 1500px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 100vw;
  }
}
@media (min-width: 1600px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 90vw;
  }
}
@media (min-width: 1900px) {
  #homepage-container .container-slider .panel iframe {
    height: 100%;
    object-fit: cover;
    width: 80vw;
  }
}
#homepage-container .create-account-section {
  border-bottom: 1px solid #000000;
  border-top: 1px solid #000000;
  padding: 50px 0;
}
#homepage-container .create-account-section h3 {
  font-family: "Arial", serif;
}
#homepage-container .create-account-section a.create-account {
  align-items: center;
  color: #982065;
  display: flex;
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 27px;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(0px);
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  #homepage-container .create-account-section a.create-account {
    font-size: 18px;
    justify-content: flex-end;
    line-height: 20px;
  }
}
#homepage-container .create-account-section a.create-account:hover {
  text-decoration: underline;
  transform: translateX(10px);
  transition: 0.3s;
}
#homepage-container .create-account-section a.create-account::after {
  background: url("../images/icons/create-account-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  display: flex;
  height: 58px;
  margin-left: 10px;
  position: relative;
  width: 58px;
}
@media (max-width: 575.98px) {
  #homepage-container .create-account-section a.create-account::after {
    background-size: contain;
    height: 36px;
    width: 36px;
  }
}

.news__title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .news__title h2 {
    font-size: 27px;
  }
}
.news__title a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
.news__title img {
  padding-left: 0.5rem;
}

/*================================================================================
$ NEWS ARTICLES (ADDON)
================================================================================*/
.featured-articles .sppb-addon-article {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}
.featured-articles .sppb-addon-article .sppb-img-responsive {
  max-height: 300px;
  min-height: 300px;
  object-fit: contain;
  width: 100%;
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap {
  min-height: 300px;
  padding: 40px 40px 30px 40px;
}
@media screen and (max-width: 1199px) {
  .featured-articles .sppb-addon-article .sppb-article-info-wrap {
    min-height: 350px;
  }
}
@media (max-width: 575.98px) {
  .featured-articles .sppb-addon-article .sppb-article-info-wrap {
    min-height: auto;
  }
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap h3 {
  line-height: 120%;
  min-height: 120px;
}
@media screen and (max-width: 799px) {
  .featured-articles .sppb-addon-article .sppb-article-info-wrap h3 {
    min-height: 240px;
  }
}
@media screen and (max-width: 599px) {
  .featured-articles .sppb-addon-article .sppb-article-info-wrap h3 {
    min-height: auto;
  }
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap h3 a {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap h3 a:hover {
  text-decoration: underline;
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap .sppb-readmore {
  margin-top: 1rem;
  padding: 0.2rem 2rem;
}
.featured-articles .sppb-addon-article .sppb-article-info-wrap .sppb-article-introtext {
  color: #969696;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .featured-articles a.see-more {
    justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .featured-articles .featured-articles-headline .sppb-container-inner {
    padding: 15px;
  }
}
@media screen and (max-width: 992px) {
  .featured-articles .hp-news .sppb-col-sm-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .featured-articles .hp-news .sppb-col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.upcoming-lots {
  display: flex;
  flex-wrap: nowrap;
  max-width: 120%;
  overflow-x: scroll;
  width: 100%;
}
@media (max-width: 767.98px) {
  .upcoming-lots {
    flex-wrap: wrap;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    white-space: normal;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .upcoming-lots {
    width: 102%;
  }
}
.upcoming-lots .col-lg-3 {
  width: 22%;
}
@media (min-width: 1200px) {
  .upcoming-lots .col-lg-3 {
    width: 335px;
  }
}
@media (max-width: 991.98px) {
  .upcoming-lots .col-lg-3 {
    width: 33%;
  }
}
@media (max-width: 767.98px) {
  .upcoming-lots .col-lg-3 {
    padding-left: 0;
    width: 50%;
  }
}
.upcoming-lots .sppb-row-container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
.upcoming-lots .lotListing {
  border: 1px solid rgba(0, 0, 0, 0.1);
  max-width: 310px;
  position: relative;
  transition: 0.3s ease;
}
.upcoming-lots .lotListing:hover {
  border: 1px solid #982065;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  outline: 1px solid #982065;
  transition: 0.3s ease;
}
.upcoming-lots .lotListing:hover img {
  box-shadow: none;
  filter: none;
}
.upcoming-lots .lotListing:hover a.upcoming-lots-link::after {
  background: url("../images/icons/sale-more-icon-hover.svg") no-repeat;
  right: 12px;
  transition: 0.4s ease;
}
.upcoming-lots .lotListing p.lot-no {
  background: rgba(255, 255, 255, 0.9019607843);
  color: #982065;
  float: left;
  font-size: 14px;
  font-weight: 300;
  left: 15px;
  letter-spacing: 2px;
  padding: 5px;
  position: absolute;
  top: 15px;
  z-index: 9;
}
@media (max-width: 575.98px) {
  .upcoming-lots .lotListing p.lot-no {
    padding: 10px;
  }
}
.upcoming-lots .lotListing .watchCount {
  background: rgba(255, 255, 255, 0.9019607843);
  float: right;
  height: 34px;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 34px;
  z-index: 99;
}
@media (max-width: 575.98px) {
  .upcoming-lots .lotListing .watchCount {
    right: 0;
    top: 0;
  }
}
.upcoming-lots .lotListing .watchCount .ss-heart-outline::before {
  transition: 0.2s ease-out;
}
.upcoming-lots .lotListing .watchCount .ss-heart-outline:hover::before {
  transform: scale(1.4);
  transition: 0.2s ease-in;
}
.upcoming-lots .lotListing .image {
  align-items: center;
  display: flex;
  flex-direction: column;
  float: left;
  height: 310px;
  justify-content: center;
}
.upcoming-lots .lotListing .info {
  background: #F6F4F4;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  min-height: 140px;
}
@media (max-width: 575.98px) {
  .upcoming-lots .lotListing .info {
    height: auto;
    min-height: 220px;
    padding: 15px 15px;
  }
}
@media (max-width: 991.98px) {
  .upcoming-lots .lotListing .info {
    height: 200px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Landscape) {
  .upcoming-lots .lotListing .info {
    height: 200px;
  }
}
.upcoming-lots .lotListing .info p.lot-title {
  -webkit-box-orient: vertical;
  color: #000000;
  display: flex;
  display: -webkit-box;
  font-family: "Arial", serif;
  font-size: 13px;
  font-weight: 300;
  justify-content: flex-start;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  white-space: normal;
}
.upcoming-lots .lotListing .info p.estimate-price {
  align-items: center;
  display: flex;
  font-family: "Georgia", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .upcoming-lots .lotListing .info p.estimate-price {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
}
.upcoming-lots .lotListing .info p.estimate-price span {
  color: #2D2D2D;
  font-family: "Georgia", sans-serif;
  font-weight: 600;
  margin-left: 15px;
}
@media (max-width: 575.98px) {
  .upcoming-lots .lotListing .info p.estimate-price span {
    display: flex;
    justify-content: flex-start;
    margin-left: 0;
  }
}
.upcoming-lots .lotListing .info p.no-reserve {
  color: #2D2D2D;
  font-family: "Georgia", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.5;
  text-transform: uppercase;
}
.upcoming-lots .lotListing .info a.upcoming-lots-link {
  display: flex;
  position: relative;
  z-index: 9;
}
.upcoming-lots .lotListing .info a.upcoming-lots-link::after {
  background: url("../images/icons/sale-more-icon.svg") no-repeat;
  bottom: -5px;
  content: "";
  display: inline-flex;
  display: flex;
  height: 28px;
  margin-left: 10px;
  position: absolute;
  right: 0px;
  transition: 0.3s ease;
  width: 28px;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: Landscape) {
  .upcoming-lots .lotListing .info a.upcoming-lots-link::after {
    bottom: -32px;
  }
}
.upcoming-lots .lotListing .info a.upcoming-lots-link:hover::after {
  background: url("../images/icons/sale-more-icon-hover.svg") no-repeat;
}
.upcoming-lots .lotListing .info:hover a.upcoming-lots-link::after {
  background: url("../images/icons/sale-more-icon-hover.svg") no-repeat;
  right: -5px;
  transition: 0.4s ease;
}

.featured-auction-title {
  align-items: center;
  display: flex;
  max-width: 900px;
}
@media (min-width: 992px) {
  .featured-auction-title {
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .featured-auction-title {
    flex-direction: column;
  }
}
.featured-auction-title span.title-border-mobile {
  background: #982065;
  height: 4px;
  margin-left: 15px;
  margin-top: 30px;
  width: 80px;
}
.featured-auction-title h2.featured-title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  padding-bottom: 1rem;
  width: 100%;
}
@media (max-width: 767.98px) {
  .featured-auction-title h2.featured-title {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .featured-auction-title h2.featured-title {
    font-size: 30px;
    width: 100%;
  }
}
.featured-auction-title .upcoming__auction--calendar-link {
  color: #982065;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.featured-auction-title .upcoming__auction--calendar-link img {
  margin-left: 0.5rem;
  margin-top: -3px;
}

.featured-auction,
.department-auction {
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media screen and (max-width: 991px) {
  .featured-auction,
  .department-auction {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .featured-auction,
  .department-auction {
    width: 99%;
  }
}
.featured-auction .upcoming__auctions--image,
.department-auction .upcoming__auctions--image {
  min-height: 350px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1077px) {
  .featured-auction .upcoming__auctions--image,
  .department-auction .upcoming__auctions--image {
    min-height: auto;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--image,
  .department-auction .upcoming__auctions--image {
    min-height: auto;
  }
}
.featured-auction .upcoming__auctions--image > a,
.department-auction .upcoming__auctions--image > a {
  display: block;
}
.featured-auction .upcoming__auctions--image img,
.department-auction .upcoming__auctions--image img {
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  max-height: 350px;
  min-height: 350px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1077px) {
  .featured-auction .upcoming__auctions--image img,
  .department-auction .upcoming__auctions--image img {
    max-height: 240px;
    min-height: 240px;
  }
}
@media (max-width: 575.98px) {
  .featured-auction .upcoming__auctions--image img,
  .department-auction .upcoming__auctions--image img {
    height: auto;
    min-height: 330px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--image img,
  .department-auction .upcoming__auctions--image img {
    max-height: 270px;
    min-height: 270px;
    object-fit: cover;
  }
}
.featured-auction .upcoming__auctions--image button,
.department-auction .upcoming__auctions--image button {
  bottom: 0;
  left: 0;
  position: absolute;
}
.featured-auction .upcoming__auctions--content,
.department-auction .upcoming__auctions--content {
  margin-top: 1rem;
  min-height: 240px;
  width: 100%;
}
@media screen and (max-width: 1077px) {
  .featured-auction .upcoming__auctions--content,
  .department-auction .upcoming__auctions--content {
    min-height: auto;
  }
}
@media (max-width: 575.98px) {
  .featured-auction .upcoming__auctions--content,
  .department-auction .upcoming__auctions--content {
    margin-bottom: 10px;
    min-height: auto;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content,
  .department-auction .upcoming__auctions--content {
    min-height: auto;
  }
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
.department-auction .upcoming__auctions--content .upcoming__auctions--inner {
  min-height: 90px;
}
@media screen and (max-width: 1199px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner {
    min-height: 220px;
  }
}
@media screen and (max-width: 1077px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner {
    min-height: auto;
  }
}
@media screen and (max-width: 991px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner {
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner {
    min-height: auto;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner {
    min-height: 100px;
  }
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--inner h4,
.department-auction .upcoming__auctions--content .upcoming__auctions--inner h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0rem;
  min-height: 60px;
}
@media screen and (max-width: 1199px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner h4,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner h4 {
    font-size: 21px;
  }
}
@media (max-width: 575.98px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner h4,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner h4 {
    min-height: 0;
  }
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--inner .upcoming__auctions--catalogue-live,
.department-auction .upcoming__auctions--content .upcoming__auctions--inner .upcoming__auctions--catalogue-live {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date,
.department-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1077px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date {
    margin-bottom: 1rem;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date,
  .department-auction .upcoming__auctions--content .upcoming__auctions--inner p.featured-auction-date {
    margin-bottom: 1rem;
  }
}
.featured-auction .upcoming__auctions--content .controls,
.department-auction .upcoming__auctions--content .controls {
  display: flex;
  flex-direction: row;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content .controls,
  .department-auction .upcoming__auctions--content .controls {
    flex-direction: column;
  }
}
.featured-auction .upcoming__auctions--content .controls .btn,
.department-auction .upcoming__auctions--content .controls .btn {
  align-items: center;
  align-self: flex-start;
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
}
.featured-auction .upcoming__auctions--content .controls .btn:first-child,
.department-auction .upcoming__auctions--content .controls .btn:first-child {
  margin-right: 10px;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content .controls .btn:first-child,
  .department-auction .upcoming__auctions--content .controls .btn:first-child {
    margin-bottom: 10px;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .featured-auction .upcoming__auctions--content .controls .btn,
  .department-auction .upcoming__auctions--content .controls .btn {
    width: 100%;
  }
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now,
.department-auction .upcoming__auctions--content .upcoming__auctions--bid-now {
  border: 1px solid #982065;
  padding: 0.5rem;
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 1026px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now,
  .department-auction .upcoming__auctions--content .upcoming__auctions--bid-now {
    width: 50%;
  }
}
@media screen and (max-width: 1026px) {
  .featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now,
  .department-auction .upcoming__auctions--content .upcoming__auctions--bid-now {
    width: 70%;
  }
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now a,
.department-auction .upcoming__auctions--content .upcoming__auctions--bid-now a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now a:hover,
.department-auction .upcoming__auctions--content .upcoming__auctions--bid-now a:hover {
  text-decoration: none;
}
.featured-auction .upcoming__auctions--content .upcoming__auctions--bid-now a:hover::after,
.department-auction .upcoming__auctions--content .upcoming__auctions--bid-now a:hover::after {
  transform: translateX(10px);
  transition: 0.3s ease-in;
}

a.see-more {
  color: #982065;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(0px);
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  a.see-more {
    font-size: 18px;
    justify-content: flex-end;
    line-height: 20px;
  }
}
a.see-more:hover {
  text-decoration: underline;
  transform: translateX(10px);
  transition: 0.3s;
}
a.see-more::after {
  background: url("../images/icons/view-more-icon.svg") no-repeat;
  content: "";
  display: inline-flex;
  display: flex;
  height: 9px;
  margin-left: 10px;
  position: relative;
  width: 9px;
}
@media (max-width: 575.98px) {
  a.see-more::after {
    background-size: contain;
  }
}
a.find-out-more, a.view-catalogue {
  align-items: center;
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
a.find-out-more:hover::after, a.view-catalogue:hover::after {
  transform: translateX(10px);
  transition: 0.3s ease-in;
}

@media (max-width: 575.98px) {
  .about-elmwoods .elmwoods-headline .sppb-addon-title {
    justify-content: flex-start;
  }
  .about-elmwoods .elmwoods-headline .animated-heading-after-part {
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .passionate-about-jewelry.sppb-section-content-center .sppb-row-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.carousel-homepage-mobile .sppb-carousel-indicators {
  align-items: center;
  bottom: 60px;
  display: inline-flex;
  flex: 1;
  margin-left: -39%;
}
.carousel-homepage-mobile .sppb-carousel-indicators li {
  background: #982065;
  border-radius: 50%;
  color: #982065;
  display: inline-flex;
  float: left;
  font-size: 2rem;
  height: 10px;
  margin: 0 7px;
  position: relative;
  width: 10px;
}
.carousel-homepage-mobile .sppb-carousel-indicators li:first-child {
  margin-left: 0;
}
.carousel-homepage-mobile .sppb-carousel-indicators li.active {
  background: #FFFFFF;
  border: 2px solid #982065;
  height: 15px;
  width: 15px;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg {
  background-position: top center !important;
  background-size: contain !important;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner {
  padding: 20px 0;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner .sppb-carousel-pro-inner-content .sppb-container .sppb-carousel-pro-text {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  margin-top: 300px;
  min-height: 200px;
  padding: 30px 0 30px 30px;
  position: relative;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner .sppb-carousel-pro-inner-content .sppb-container .sppb-carousel-pro-text h2 {
  margin-right: 50px;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner .sppb-carousel-pro-inner-content .sppb-container .sppb-carousel-pro-text .sppb-carousel-pro-content {
  letter-spacing: 1px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner .sppb-carousel-pro-inner-content .sppb-container .sppb-carousel-pro-text a.sppb-btn {
  float: right;
}
.carousel-homepage-mobile .sppb-carousel-inner .sppb-item-has-bg .sppb-carousel-item-inner .sppb-carousel-pro-inner-content .sppb-container .sppb-carousel-pro-text a.sppb-btn i::after {
  background: url(../images/icons/continue-reading-icon.svg) no-repeat;
  content: "";
  display: inline-flex;
  display: flex;
  height: 12px;
  margin-left: 5px;
  position: relative;
  transform: translateX(0px);
  transition: 0.3s ease-out;
  width: 8px;
}

@media (max-width: 991.98px) {
  #sppb-addon-1643062126818 h2 {
    align-items: flex-start;
  }
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #sppb-addon-1643062126818 h2 {
    align-items: flex-start;
  }
}

@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #sppb-addon-1655484805274 .sppb-divider {
    width: 100%;
  }
}

#sppb-addon-1671024569174 h2.sppb-addon-title {
  color: white;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #sppb-addon-1671024569174 h2.sppb-addon-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 1440px) {
  #sppb-addon-1671024569174 h2.sppb-addon-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 900px) {
  #sppb-addon-1671024569174 h2.sppb-addon-title {
    color: white;
  }
}

@media (max-width: 1440px) {
  #sppb-addon-1675682225951 h2.sppb-addon-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  #sppb-addon-1675682225951 h2.sppb-addon-title {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  #sppb-addon-1675682225951 h2.sppb-addon-title {
    font-size: 24px;
    line-height: 24px;
  }
}

/* ====== VALUATIONS ====== */
/* ======
REQUEST A VALUATION PAGE

- HOME LINK
- INTRO
- ONLINE VALUATION FORM
- STEP 1 - MY DETAILS
- STEP 2 - ITEM DETAILS
- STEP 3 - ITEMS UPLOADED
- STEP 4 - VALUATION THANK YOU

====== */
/*================================================================================
$ REQUEST A VALUATION PAGE
================================================================================*/
body.site.request-a-valuation {
  /*================================================================================
  $ ONLINE VALUATION FORM
  ================================================================================*/
}
body.site.request-a-valuation .main-container {
  background: #FBF8F8;
}
body.site.request-a-valuation .valuation__online--form {
  margin: 0 auto !important;
  max-width: 1110px;
  padding: 50px 300px;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container {
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ INTRODUCTION
  ================================================================================*/
  /*================================================================================
  $ STEP 1 - MY DETAILS
  ================================================================================*/
  /*================================================================================
  $ STEP 2 - ITEM DETAILS
  ================================================================================*/
  /*================================================================================
  $ STEP 3 - ITEMS UPLOADED
  ================================================================================*/
  /*================================================================================
  $ STEP 4 - VALUATION THANK YOU
  ================================================================================*/
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__home--link {
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 575.98px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__home--link {
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__home--link a {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__home--link a img {
  margin-right: 1rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro {
  margin-bottom: 2.5rem;
  text-align: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 799px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro h1 {
    font-size: 40px;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro h4 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  width: 100%;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__intro p {
    margin-top: 2rem;
    width: 100%;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details {
  padding-bottom: 2rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails h2, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  z-index: 9;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails h3, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes {
  margin: 0.5rem 0rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber select, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/icons/select-down-arrow.svg");
  background-position: 93% center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  max-width: 80px;
  outline: none;
  padding-left: 5px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber select, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber select {
    max-width: 65px;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber input, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block.valuations__form-block--phonenumber input {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block label, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block label {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
}
@media (max-width: 575.98px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block label, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block label {
    margin-bottom: 5px;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block label sup, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block label sup {
  color: #982065;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block input,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block select,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block textarea, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block input,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block select,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block textarea {
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block input,
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block select,
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block textarea, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block input,
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block select,
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block textarea {
    height: 42px;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block input:focus,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block select:focus,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .valuation__boxes .valuations__form-block textarea:focus, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block input:focus,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block select:focus,
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__boxes .valuations__form-block textarea:focus {
  outline: 0;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .button__container, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .button__container {
  margin-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .button__container a, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .button__container a {
  padding: 0.2rem 3rem;
  height: 44px;
  display: inline-flex;
  align-items: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__mydetails .button__container .valuation__submit, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .button__container .valuation__submit {
  display: inline-flex;
  margin-right: 2rem;
  justify-content: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__item-details .valuation__item--content {
  padding-bottom: 2rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__photographs {
  margin-top: 2rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__photographs h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .valuations__upload-sentence-one {
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .valuations__upload-sentence-two {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .fileUpload {
  background: #982065;
  border: 2px solid #982065;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 1.25em auto; /*20px/16px 0*/
  overflow: hidden;
  padding: 0.5rem 3rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 200px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .fileUpload:hover, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .fileUpload:active, body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .fileUpload:focus {
  background-color: #FFFFFF;
  color: #982065;
  border: 2px solid #982065;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuations__upload-section .fileUpload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 148px;
  height: 46px;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form {
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form .valuations__upload-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
  cursor: pointer;
  height: 200px;
  margin-top: 20px;
  pointer-events: all;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form .valuations__upload-section {
    width: 100%;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form .valuations__upload-section .file-input {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form .valuations__upload-section .file-input input {
  height: 100%;
  width: 100%;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .dropzone.valuation-form .valuations__upload-section .dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .valuation__photos--files {
  margin-top: 0.5rem;
  text-align: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .button__container {
  margin-top: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .button__container a {
  padding: 0.2rem 3rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .button__container .valuation__submit {
  display: inline-flex;
  margin-right: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__photo-upload .button__container .valuation__submit {
    margin-bottom: 1rem;
    margin-right: 0rem;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded {
  border-bottom: 1px solid #D2D2D2;
  border-top: 1px solid #D2D2D2;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container {
  box-shadow: rgba(100, 100, 111, 0.15) 0px 0 15px 0px;
  margin-top: 1rem;
  padding: 1rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container:first-child {
  margin-top: 0;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__image {
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__image {
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__image {
    padding: 0;
  }
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__image img {
    display: block;
    margin: 0 auto;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__content {
  border-left: 1px solid #D2D2D2;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__content {
    padding-left: 15px;
  }
}
@media screen and (max-width: 575px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__content {
    border-left: none;
    margin: 10px;
    padding: 0;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__content p {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .valuation__item--container .item__content a {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .button__container {
  display: flex;
  margin-top: 3rem;
  padding-bottom: 0;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .button__container {
    text-align: center;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .button__container a {
  flex-basis: 49%;
  padding: 10px 7px;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuations__items--uploaded .button__container .valuation__another {
  margin-left: auto;
  justify-content: center;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks {
  margin-top: 3rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .thankyou__contents .thanks__heading {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .thankyou__contents h1 {
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin: 1rem auto;
  text-align: center;
  width: 60%;
}
@media screen and (max-width: 799px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .thankyou__contents h1 {
    font-size: 40px;
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .thankyou__contents h1 {
    font-size: 35px;
    width: 100%;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container {
  margin-top: 3rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container {
    text-align: center;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container a {
  padding: 0.2rem 3rem;
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container .home__btn {
  display: inline-flex;
  align-items: center;
  float: left;
  height: 44px;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container .home__btn {
    float: none;
    margin-bottom: 1rem;
  }
}
body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container .account__btn {
  display: inline-flex;
  align-items: center;
  float: right;
  height: 44px;
}
@media screen and (max-width: 599px) {
  body.site.request-a-valuation .valuation__online--form .valuations__form-container .valuation__thanks .button__container .account__btn {
    float: none;
  }
}

/* CONTACT PAGE */
/*================================================================================
SECTIONS

- LEFT SIDE - CONTACT INFO
// RIGHT SIDE CONTACT FORM - is on contact_form.scss

================================================================================*/
body.site.contact-page .container-fluid, body.site.contact-page .container-sm, body.site.contact-page .container-md, body.site.contact-page .container-lg, body.site.contact-page .container-xl, body.site.contact-page .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container, body.site.contact-page .container-md .sp-page-builder .contact__overall--container, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container {
  /*================================================================================
  $ LEFT SIDE - CONTACT INFO
  ================================================================================*/
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-md .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-md .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 1026px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-md .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container h2, body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-md .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container h4 {
    font-size: 40px;
  }
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-md .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container h4, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container h4 {
  font-size: 28px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__form--intro, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__form--intro, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__form--intro, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__form--intro, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__form--intro, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__form--intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side a.contact__home--link img {
  margin-right: 1rem;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__initial--intro a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address,
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone,
body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone,
body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone,
body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone,
body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone,
body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address img,
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img,
body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img,
body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img,
body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img,
body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img,
body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone img {
  margin-right: 1rem;
  max-width: 26px;
  width: 100%;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__email--address {
  text-decoration: underline;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .sppb-addon-content .contact__phone {
  color: #0B0A1D;
  text-decoration: none;
  text-transform: none;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul {
  padding-left: 0px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  list-style-type: none;
  padding-left: 40px;
}
@media screen and (max-width: 1199px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li {
    font-size: 1rem;
  }
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li img {
  margin-right: 1rem;
  max-width: 26px;
  width: 100%;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses ul li:first-child {
  padding-left: 0;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses .contact__opening--hours {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  padding-left: 3rem;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 25%;
}
@media screen and (max-width: 1026px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a {
    width: 50%;
  }
}
@media screen and (max-width: 799px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a {
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__addresses a {
    margin-left: 10px;
    width: 50%;
  }
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container {
  margin-top: 2rem;
}
@media screen and (max-width: 799px) {
  body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container {
    margin-bottom: 3rem;
  }
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul {
  padding-left: 0px;
  padding-top: 10px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container ul li {
  display: inline;
  list-style-type: none;
  padding-right: 8px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media {
  padding-top: 10px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul {
  padding-left: 0px;
}
body.site.contact-page .container-fluid .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li, body.site.contact-page .container-sm .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li, body.site.contact-page .container-md .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li, body.site.contact-page .container-lg .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li, body.site.contact-page .container-xl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li, body.site.contact-page .container-xxl .sp-page-builder .contact__overall--container .contact__left--side .contact__social--container .home__social--media ul li {
  display: inline;
  list-style-type: none;
  padding-right: 8px;
}

/* Selling page

/*================================================================================
SECTIONS

- TOP BANNER
- TOP ROW
- HOME LINK 
- INITIAL VALUATION
- ENTERING YOUR ITEMS
- ITEMS 1ST ROW
- ITEMS 2ND ROW
- BEFORE AUCTION TITLE
- BEFORE THE AUCTION
- BEFORE THE AUCTION (Bottom section - Charges)
- AFTER THE AUCTION
- START A VALUATION
- UPCOMING AUCTIONS

================================================================================*/
body.site.selling-page .sppb-sticky-wrap .sppb-sticky-it {
  z-index: 19 !important;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.selling-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 23px !important;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 40px !important;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.selling-page #sppb-addon-1675166798643 li a {
    font-size: 0.75rem;
    margin-right: 0 !important;
    padding-right: 7px !important;
  }
}
body.site.selling-page .container-fluid, body.site.selling-page .container-sm, body.site.selling-page .container-md, body.site.selling-page .container-lg, body.site.selling-page .container-xl, body.site.selling-page .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ TOP BANNER
  ================================================================================*/
  /*================================================================================
  $ TOP ROW
  ================================================================================*/
  /*================================================================================
  $ INITIAL VALUATION
  ================================================================================*/
  /*================================================================================
  $ ENTERING YOUR ITEMS
  ================================================================================*/
  /*================================================================================
  $ ITEMS 1ST ROW
  ================================================================================*/
  /*================================================================================
  $ ITEMS 2ND ROW
  ================================================================================*/
  /*================================================================================
  $ BEFORE AUCTION TITLE
  ================================================================================*/
  /*================================================================================
  $ BEFORE THE AUCTION
  ================================================================================*/
  /*================================================================================
  $ BEFORE THE AUCTION (Bottom section - Charges)
  ================================================================================*/
  /*================================================================================
  $ AFTER THE AUCTION
  ================================================================================*/
  /*================================================================================
  $ START A VALUATION
  ================================================================================*/
  /*================================================================================
  $ UPCOMING AUCTIONS
  ================================================================================*/
}
body.site.selling-page .container-fluid .selling__top-row, body.site.selling-page .container-sm .selling__top-row, body.site.selling-page .container-md .selling__top-row, body.site.selling-page .container-lg .selling__top-row, body.site.selling-page .container-xl .selling__top-row, body.site.selling-page .container-xxl .selling__top-row {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
}
body.site.selling-page .container-fluid .selling__top-row .selling__home-link, body.site.selling-page .container-sm .selling__top-row .selling__home-link, body.site.selling-page .container-md .selling__top-row .selling__home-link, body.site.selling-page .container-lg .selling__top-row .selling__home-link, body.site.selling-page .container-xl .selling__top-row .selling__home-link, body.site.selling-page .container-xxl .selling__top-row .selling__home-link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.selling-page .container-fluid .selling__top-row .selling__home-link img, body.site.selling-page .container-sm .selling__top-row .selling__home-link img, body.site.selling-page .container-md .selling__top-row .selling__home-link img, body.site.selling-page .container-lg .selling__top-row .selling__home-link img, body.site.selling-page .container-xl .selling__top-row .selling__home-link img, body.site.selling-page .container-xxl .selling__top-row .selling__home-link img {
  margin-right: 1rem;
}
body.site.selling-page .container-fluid .selling__top-row h2, body.site.selling-page .container-sm .selling__top-row h2, body.site.selling-page .container-md .selling__top-row h2, body.site.selling-page .container-lg .selling__top-row h2, body.site.selling-page .container-xl .selling__top-row h2, body.site.selling-page .container-xxl .selling__top-row h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__top-row h2, body.site.selling-page .container-sm .selling__top-row h2, body.site.selling-page .container-md .selling__top-row h2, body.site.selling-page .container-lg .selling__top-row h2, body.site.selling-page .container-xl .selling__top-row h2, body.site.selling-page .container-xxl .selling__top-row h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__top-row h2, body.site.selling-page .container-sm .selling__top-row h2, body.site.selling-page .container-md .selling__top-row h2, body.site.selling-page .container-lg .selling__top-row h2, body.site.selling-page .container-xl .selling__top-row h2, body.site.selling-page .container-xxl .selling__top-row h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__top-row h2, body.site.selling-page .container-sm .selling__top-row h2, body.site.selling-page .container-md .selling__top-row h2, body.site.selling-page .container-lg .selling__top-row h2, body.site.selling-page .container-xl .selling__top-row h2, body.site.selling-page .container-xxl .selling__top-row h2 {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__top-row .sppb-addon-content, body.site.selling-page .container-sm .selling__top-row .sppb-addon-content, body.site.selling-page .container-md .selling__top-row .sppb-addon-content, body.site.selling-page .container-lg .selling__top-row .sppb-addon-content, body.site.selling-page .container-xl .selling__top-row .sppb-addon-content, body.site.selling-page .container-xxl .selling__top-row .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__top-row .useful__links, body.site.selling-page .container-sm .selling__top-row .useful__links, body.site.selling-page .container-md .selling__top-row .useful__links, body.site.selling-page .container-lg .selling__top-row .useful__links, body.site.selling-page .container-xl .selling__top-row .useful__links, body.site.selling-page .container-xxl .selling__top-row .useful__links {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
  height: 550px;
  margin-bottom: 1rem;
  padding: 3rem;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__top-row .useful__links, body.site.selling-page .container-sm .selling__top-row .useful__links, body.site.selling-page .container-md .selling__top-row .useful__links, body.site.selling-page .container-lg .selling__top-row .useful__links, body.site.selling-page .container-xl .selling__top-row .useful__links, body.site.selling-page .container-xxl .selling__top-row .useful__links {
    padding: 2rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__top-row .useful__links, body.site.selling-page .container-sm .selling__top-row .useful__links, body.site.selling-page .container-md .selling__top-row .useful__links, body.site.selling-page .container-lg .selling__top-row .useful__links, body.site.selling-page .container-xl .selling__top-row .useful__links, body.site.selling-page .container-xxl .selling__top-row .useful__links {
    height: 430px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__top-row .useful__links, body.site.selling-page .container-sm .selling__top-row .useful__links, body.site.selling-page .container-md .selling__top-row .useful__links, body.site.selling-page .container-lg .selling__top-row .useful__links, body.site.selling-page .container-xl .selling__top-row .useful__links, body.site.selling-page .container-xxl .selling__top-row .useful__links {
    height: 450px;
  }
}
body.site.selling-page .container-fluid .selling__top-row .useful__links .sppb-addon-content, body.site.selling-page .container-sm .selling__top-row .useful__links .sppb-addon-content, body.site.selling-page .container-md .selling__top-row .useful__links .sppb-addon-content, body.site.selling-page .container-lg .selling__top-row .useful__links .sppb-addon-content, body.site.selling-page .container-xl .selling__top-row .useful__links .sppb-addon-content, body.site.selling-page .container-xxl .selling__top-row .useful__links .sppb-addon-content {
  text-align: center;
}
body.site.selling-page .container-fluid .selling__top-row .useful__links .sppb-addon-content h3, body.site.selling-page .container-sm .selling__top-row .useful__links .sppb-addon-content h3, body.site.selling-page .container-md .selling__top-row .useful__links .sppb-addon-content h3, body.site.selling-page .container-lg .selling__top-row .useful__links .sppb-addon-content h3, body.site.selling-page .container-xl .selling__top-row .useful__links .sppb-addon-content h3, body.site.selling-page .container-xxl .selling__top-row .useful__links .sppb-addon-content h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.site.selling-page .container-fluid .selling__top-row .useful__links .sppb-addon-content ul, body.site.selling-page .container-sm .selling__top-row .useful__links .sppb-addon-content ul, body.site.selling-page .container-md .selling__top-row .useful__links .sppb-addon-content ul, body.site.selling-page .container-lg .selling__top-row .useful__links .sppb-addon-content ul, body.site.selling-page .container-xl .selling__top-row .useful__links .sppb-addon-content ul, body.site.selling-page .container-xxl .selling__top-row .useful__links .sppb-addon-content ul {
  padding-left: 0px;
}
body.site.selling-page .container-fluid .selling__top-row .useful__links .sppb-addon-content ul li, body.site.selling-page .container-sm .selling__top-row .useful__links .sppb-addon-content ul li, body.site.selling-page .container-md .selling__top-row .useful__links .sppb-addon-content ul li, body.site.selling-page .container-lg .selling__top-row .useful__links .sppb-addon-content ul li, body.site.selling-page .container-xl .selling__top-row .useful__links .sppb-addon-content ul li, body.site.selling-page .container-xxl .selling__top-row .useful__links .sppb-addon-content ul li {
  background-color: #FBF8F8;
  list-style-type: none;
  margin-bottom: 10px;
  padding: 10px 5px;
}
body.site.selling-page .container-fluid .selling__top-row .useful__links .sppb-addon-content ul li a, body.site.selling-page .container-sm .selling__top-row .useful__links .sppb-addon-content ul li a, body.site.selling-page .container-md .selling__top-row .useful__links .sppb-addon-content ul li a, body.site.selling-page .container-lg .selling__top-row .useful__links .sppb-addon-content ul li a, body.site.selling-page .container-xl .selling__top-row .useful__links .sppb-addon-content ul li a, body.site.selling-page .container-xxl .selling__top-row .useful__links .sppb-addon-content ul li a {
  color: #982065;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.selling-page .container-fluid .selling__valuation h2, body.site.selling-page .container-sm .selling__valuation h2, body.site.selling-page .container-md .selling__valuation h2, body.site.selling-page .container-lg .selling__valuation h2, body.site.selling-page .container-xl .selling__valuation h2, body.site.selling-page .container-xxl .selling__valuation h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__valuation h2, body.site.selling-page .container-sm .selling__valuation h2, body.site.selling-page .container-md .selling__valuation h2, body.site.selling-page .container-lg .selling__valuation h2, body.site.selling-page .container-xl .selling__valuation h2, body.site.selling-page .container-xxl .selling__valuation h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__valuation h2, body.site.selling-page .container-sm .selling__valuation h2, body.site.selling-page .container-md .selling__valuation h2, body.site.selling-page .container-lg .selling__valuation h2, body.site.selling-page .container-xl .selling__valuation h2, body.site.selling-page .container-xxl .selling__valuation h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__valuation h2, body.site.selling-page .container-sm .selling__valuation h2, body.site.selling-page .container-md .selling__valuation h2, body.site.selling-page .container-lg .selling__valuation h2, body.site.selling-page .container-xl .selling__valuation h2, body.site.selling-page .container-xxl .selling__valuation h2 {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__valuation h3, body.site.selling-page .container-sm .selling__valuation h3, body.site.selling-page .container-md .selling__valuation h3, body.site.selling-page .container-lg .selling__valuation h3, body.site.selling-page .container-xl .selling__valuation h3, body.site.selling-page .container-xxl .selling__valuation h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.site.selling-page .container-fluid .selling__valuation a.valuation__link, body.site.selling-page .container-sm .selling__valuation a.valuation__link, body.site.selling-page .container-md .selling__valuation a.valuation__link, body.site.selling-page .container-lg .selling__valuation a.valuation__link, body.site.selling-page .container-xl .selling__valuation a.valuation__link, body.site.selling-page .container-xxl .selling__valuation a.valuation__link {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__valuation a.valuation__link, body.site.selling-page .container-sm .selling__valuation a.valuation__link, body.site.selling-page .container-md .selling__valuation a.valuation__link, body.site.selling-page .container-lg .selling__valuation a.valuation__link, body.site.selling-page .container-xl .selling__valuation a.valuation__link, body.site.selling-page .container-xxl .selling__valuation a.valuation__link {
    margin-top: 1rem;
    padding: 0.5rem 0.75rem;
  }
}
body.site.selling-page .container-fluid .selling__valuation a.valuation__link:hover, body.site.selling-page .container-sm .selling__valuation a.valuation__link:hover, body.site.selling-page .container-md .selling__valuation a.valuation__link:hover, body.site.selling-page .container-lg .selling__valuation a.valuation__link:hover, body.site.selling-page .container-xl .selling__valuation a.valuation__link:hover, body.site.selling-page .container-xxl .selling__valuation a.valuation__link:hover {
  background-color: #FFFFFF;
  color: #982065;
  border: 1px solid #982065;
}
body.site.selling-page .container-fluid .selling__valuation a.person__link, body.site.selling-page .container-sm .selling__valuation a.person__link, body.site.selling-page .container-md .selling__valuation a.person__link, body.site.selling-page .container-lg .selling__valuation a.person__link, body.site.selling-page .container-xl .selling__valuation a.person__link, body.site.selling-page .container-xxl .selling__valuation a.person__link {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__valuation a.person__link, body.site.selling-page .container-sm .selling__valuation a.person__link, body.site.selling-page .container-md .selling__valuation a.person__link, body.site.selling-page .container-lg .selling__valuation a.person__link, body.site.selling-page .container-xl .selling__valuation a.person__link, body.site.selling-page .container-xxl .selling__valuation a.person__link {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 479px) {
  body.site.selling-page .container-fluid .selling__valuation a.person__link, body.site.selling-page .container-sm .selling__valuation a.person__link, body.site.selling-page .container-md .selling__valuation a.person__link, body.site.selling-page .container-lg .selling__valuation a.person__link, body.site.selling-page .container-xl .selling__valuation a.person__link, body.site.selling-page .container-xxl .selling__valuation a.person__link {
    margin-left: 0.5rem;
  }
}
body.site.selling-page .container-fluid .selling__valuation img, body.site.selling-page .container-sm .selling__valuation img, body.site.selling-page .container-md .selling__valuation img, body.site.selling-page .container-lg .selling__valuation img, body.site.selling-page .container-xl .selling__valuation img, body.site.selling-page .container-xxl .selling__valuation img {
  padding-left: 0.5rem;
}
@media screen and (max-width: 479px) {
  body.site.selling-page .container-fluid .selling__valuation img, body.site.selling-page .container-sm .selling__valuation img, body.site.selling-page .container-md .selling__valuation img, body.site.selling-page .container-lg .selling__valuation img, body.site.selling-page .container-xl .selling__valuation img, body.site.selling-page .container-xxl .selling__valuation img {
    padding-left: 0.25rem;
  }
}
body.site.selling-page .container-fluid .selling__items--title h2, body.site.selling-page .container-sm .selling__items--title h2, body.site.selling-page .container-md .selling__items--title h2, body.site.selling-page .container-lg .selling__items--title h2, body.site.selling-page .container-xl .selling__items--title h2, body.site.selling-page .container-xxl .selling__items--title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__items--title h2, body.site.selling-page .container-sm .selling__items--title h2, body.site.selling-page .container-md .selling__items--title h2, body.site.selling-page .container-lg .selling__items--title h2, body.site.selling-page .container-xl .selling__items--title h2, body.site.selling-page .container-xxl .selling__items--title h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__items--title h2, body.site.selling-page .container-sm .selling__items--title h2, body.site.selling-page .container-md .selling__items--title h2, body.site.selling-page .container-lg .selling__items--title h2, body.site.selling-page .container-xl .selling__items--title h2, body.site.selling-page .container-xxl .selling__items--title h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__items--title h2, body.site.selling-page .container-sm .selling__items--title h2, body.site.selling-page .container-md .selling__items--title h2, body.site.selling-page .container-lg .selling__items--title h2, body.site.selling-page .container-xl .selling__items--title h2, body.site.selling-page .container-xxl .selling__items--title h2 {
    font-size: 35px;
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__items--1st .items__section, body.site.selling-page .container-sm .selling__items--1st .items__section, body.site.selling-page .container-md .selling__items--1st .items__section, body.site.selling-page .container-lg .selling__items--1st .items__section, body.site.selling-page .container-xl .selling__items--1st .items__section, body.site.selling-page .container-xxl .selling__items--1st .items__section {
  background-color: #FFFFFF;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__items--1st .items__section, body.site.selling-page .container-sm .selling__items--1st .items__section, body.site.selling-page .container-md .selling__items--1st .items__section, body.site.selling-page .container-lg .selling__items--1st .items__section, body.site.selling-page .container-xl .selling__items--1st .items__section, body.site.selling-page .container-xxl .selling__items--1st .items__section {
    padding: 2rem 1rem;
  }
}
body.site.selling-page .container-fluid .selling__items--1st .items__section h4, body.site.selling-page .container-sm .selling__items--1st .items__section h4, body.site.selling-page .container-md .selling__items--1st .items__section h4, body.site.selling-page .container-lg .selling__items--1st .items__section h4, body.site.selling-page .container-xl .selling__items--1st .items__section h4, body.site.selling-page .container-xxl .selling__items--1st .items__section h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__items--1st .items__section a, body.site.selling-page .container-sm .selling__items--1st .items__section a, body.site.selling-page .container-md .selling__items--1st .items__section a, body.site.selling-page .container-lg .selling__items--1st .items__section a, body.site.selling-page .container-xl .selling__items--1st .items__section a, body.site.selling-page .container-xxl .selling__items--1st .items__section a {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__items--1st .items__section img, body.site.selling-page .container-sm .selling__items--1st .items__section img, body.site.selling-page .container-md .selling__items--1st .items__section img, body.site.selling-page .container-lg .selling__items--1st .items__section img, body.site.selling-page .container-xl .selling__items--1st .items__section img, body.site.selling-page .container-xxl .selling__items--1st .items__section img {
  padding-left: 0.5rem;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section, body.site.selling-page .container-sm .selling__items--2nd .items__section, body.site.selling-page .container-md .selling__items--2nd .items__section, body.site.selling-page .container-lg .selling__items--2nd .items__section, body.site.selling-page .container-xl .selling__items--2nd .items__section, body.site.selling-page .container-xxl .selling__items--2nd .items__section {
  background-color: #FFFFFF;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__items--2nd .items__section, body.site.selling-page .container-sm .selling__items--2nd .items__section, body.site.selling-page .container-md .selling__items--2nd .items__section, body.site.selling-page .container-lg .selling__items--2nd .items__section, body.site.selling-page .container-xl .selling__items--2nd .items__section, body.site.selling-page .container-xxl .selling__items--2nd .items__section {
    padding: 2rem 1rem;
  }
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section h4, body.site.selling-page .container-sm .selling__items--2nd .items__section h4, body.site.selling-page .container-md .selling__items--2nd .items__section h4, body.site.selling-page .container-lg .selling__items--2nd .items__section h4, body.site.selling-page .container-xl .selling__items--2nd .items__section h4, body.site.selling-page .container-xxl .selling__items--2nd .items__section h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section a, body.site.selling-page .container-sm .selling__items--2nd .items__section a, body.site.selling-page .container-md .selling__items--2nd .items__section a, body.site.selling-page .container-lg .selling__items--2nd .items__section a, body.site.selling-page .container-xl .selling__items--2nd .items__section a, body.site.selling-page .container-xxl .selling__items--2nd .items__section a {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section img, body.site.selling-page .container-sm .selling__items--2nd .items__section img, body.site.selling-page .container-md .selling__items--2nd .items__section img, body.site.selling-page .container-lg .selling__items--2nd .items__section img, body.site.selling-page .container-xl .selling__items--2nd .items__section img, body.site.selling-page .container-xxl .selling__items--2nd .items__section img {
  margin-left: 0.5rem;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section .mail__icon, body.site.selling-page .container-sm .selling__items--2nd .items__section .mail__icon, body.site.selling-page .container-md .selling__items--2nd .items__section .mail__icon, body.site.selling-page .container-lg .selling__items--2nd .items__section .mail__icon, body.site.selling-page .container-xl .selling__items--2nd .items__section .mail__icon, body.site.selling-page .container-xxl .selling__items--2nd .items__section .mail__icon {
  margin-right: 1rem;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section .bids__link, body.site.selling-page .container-sm .selling__items--2nd .items__section .bids__link, body.site.selling-page .container-md .selling__items--2nd .items__section .bids__link, body.site.selling-page .container-lg .selling__items--2nd .items__section .bids__link, body.site.selling-page .container-xl .selling__items--2nd .items__section .bids__link, body.site.selling-page .container-xxl .selling__items--2nd .items__section .bids__link {
  font-size: 1rem;
  text-transform: none;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section .phone__icon, body.site.selling-page .container-sm .selling__items--2nd .items__section .phone__icon, body.site.selling-page .container-md .selling__items--2nd .items__section .phone__icon, body.site.selling-page .container-lg .selling__items--2nd .items__section .phone__icon, body.site.selling-page .container-xl .selling__items--2nd .items__section .phone__icon, body.site.selling-page .container-xxl .selling__items--2nd .items__section .phone__icon {
  margin-right: 1rem;
}
body.site.selling-page .container-fluid .selling__items--2nd .items__section #beforeAuction, body.site.selling-page .container-sm .selling__items--2nd .items__section #beforeAuction, body.site.selling-page .container-md .selling__items--2nd .items__section #beforeAuction, body.site.selling-page .container-lg .selling__items--2nd .items__section #beforeAuction, body.site.selling-page .container-xl .selling__items--2nd .items__section #beforeAuction, body.site.selling-page .container-xxl .selling__items--2nd .items__section #beforeAuction {
  font-size: 1rem;
}
body.site.selling-page .container-fluid .selling__before--auction-title h2, body.site.selling-page .container-sm .selling__before--auction-title h2, body.site.selling-page .container-md .selling__before--auction-title h2, body.site.selling-page .container-lg .selling__before--auction-title h2, body.site.selling-page .container-xl .selling__before--auction-title h2, body.site.selling-page .container-xxl .selling__before--auction-title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__before--auction-title h2, body.site.selling-page .container-sm .selling__before--auction-title h2, body.site.selling-page .container-md .selling__before--auction-title h2, body.site.selling-page .container-lg .selling__before--auction-title h2, body.site.selling-page .container-xl .selling__before--auction-title h2, body.site.selling-page .container-xxl .selling__before--auction-title h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__before--auction-title h2, body.site.selling-page .container-sm .selling__before--auction-title h2, body.site.selling-page .container-md .selling__before--auction-title h2, body.site.selling-page .container-lg .selling__before--auction-title h2, body.site.selling-page .container-xl .selling__before--auction-title h2, body.site.selling-page .container-xxl .selling__before--auction-title h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__before--auction-title h2, body.site.selling-page .container-sm .selling__before--auction-title h2, body.site.selling-page .container-md .selling__before--auction-title h2, body.site.selling-page .container-lg .selling__before--auction-title h2, body.site.selling-page .container-xl .selling__before--auction-title h2, body.site.selling-page .container-xxl .selling__before--auction-title h2 {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__before--the-auction h3, body.site.selling-page .container-sm .selling__before--the-auction h3, body.site.selling-page .container-md .selling__before--the-auction h3, body.site.selling-page .container-lg .selling__before--the-auction h3, body.site.selling-page .container-xl .selling__before--the-auction h3, body.site.selling-page .container-xxl .selling__before--the-auction h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom h3, body.site.selling-page .container-sm .selling__before--auction-bottom h3, body.site.selling-page .container-md .selling__before--auction-bottom h3, body.site.selling-page .container-lg .selling__before--auction-bottom h3, body.site.selling-page .container-xl .selling__before--auction-bottom h3, body.site.selling-page .container-xxl .selling__before--auction-bottom h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .sppb-addon-content, body.site.selling-page .container-sm .selling__before--auction-bottom .sppb-addon-content, body.site.selling-page .container-md .selling__before--auction-bottom .sppb-addon-content, body.site.selling-page .container-lg .selling__before--auction-bottom .sppb-addon-content, body.site.selling-page .container-xl .selling__before--auction-bottom .sppb-addon-content, body.site.selling-page .container-xxl .selling__before--auction-bottom .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-sm .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-md .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-lg .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-xl .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-xxl .selling__before--auction-bottom .sppb-addon-content .last__paragraph {
  width: 80%;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-sm .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-md .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-lg .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-xl .selling__before--auction-bottom .sppb-addon-content .last__paragraph, body.site.selling-page .container-xxl .selling__before--auction-bottom .sppb-addon-content .last__paragraph {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section {
    padding: 2rem 1rem;
  }
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section h3, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section h3, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section h3, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section h3, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section h3, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container {
  float: left;
  width: 100%;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side {
  float: left;
  padding-right: 4%;
  width: 46%;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side {
    padding-right: 0%;
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side a {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__left--side img {
  margin-right: 0.5rem;
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side {
  float: left;
  padding-left: 3%;
  width: 47%;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side {
    padding-left: 0%;
    width: 100%;
    margin-top: 15px;
  }
}
body.site.selling-page .container-fluid .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic, body.site.selling-page .container-sm .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic, body.site.selling-page .container-md .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic, body.site.selling-page .container-lg .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic, body.site.selling-page .container-xl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic, body.site.selling-page .container-xxl .selling__before--auction-bottom .charges__section .sppb-addon-content .charges__container .charges__right--side .charges__italic {
  font-style: italic;
}
body.site.selling-page .container-fluid .selling__after--auction h2, body.site.selling-page .container-sm .selling__after--auction h2, body.site.selling-page .container-md .selling__after--auction h2, body.site.selling-page .container-lg .selling__after--auction h2, body.site.selling-page .container-xl .selling__after--auction h2, body.site.selling-page .container-xxl .selling__after--auction h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__after--auction h2, body.site.selling-page .container-sm .selling__after--auction h2, body.site.selling-page .container-md .selling__after--auction h2, body.site.selling-page .container-lg .selling__after--auction h2, body.site.selling-page .container-xl .selling__after--auction h2, body.site.selling-page .container-xxl .selling__after--auction h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__after--auction h2, body.site.selling-page .container-sm .selling__after--auction h2, body.site.selling-page .container-md .selling__after--auction h2, body.site.selling-page .container-lg .selling__after--auction h2, body.site.selling-page .container-xl .selling__after--auction h2, body.site.selling-page .container-xxl .selling__after--auction h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__after--auction h2, body.site.selling-page .container-sm .selling__after--auction h2, body.site.selling-page .container-md .selling__after--auction h2, body.site.selling-page .container-lg .selling__after--auction h2, body.site.selling-page .container-xl .selling__after--auction h2, body.site.selling-page .container-xxl .selling__after--auction h2 {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__after--auction h4, body.site.selling-page .container-sm .selling__after--auction h4, body.site.selling-page .container-md .selling__after--auction h4, body.site.selling-page .container-lg .selling__after--auction h4, body.site.selling-page .container-xl .selling__after--auction h4, body.site.selling-page .container-xxl .selling__after--auction h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__after--auction a, body.site.selling-page .container-sm .selling__after--auction a, body.site.selling-page .container-md .selling__after--auction a, body.site.selling-page .container-lg .selling__after--auction a, body.site.selling-page .container-xl .selling__after--auction a, body.site.selling-page .container-xxl .selling__after--auction a {
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__after--auction a.terms__link, body.site.selling-page .container-sm .selling__after--auction a.terms__link, body.site.selling-page .container-md .selling__after--auction a.terms__link, body.site.selling-page .container-lg .selling__after--auction a.terms__link, body.site.selling-page .container-xl .selling__after--auction a.terms__link, body.site.selling-page .container-xxl .selling__after--auction a.terms__link {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.selling-page .container-fluid .selling__after--auction a.terms__link:hover, body.site.selling-page .container-sm .selling__after--auction a.terms__link:hover, body.site.selling-page .container-md .selling__after--auction a.terms__link:hover, body.site.selling-page .container-lg .selling__after--auction a.terms__link:hover, body.site.selling-page .container-xl .selling__after--auction a.terms__link:hover, body.site.selling-page .container-xxl .selling__after--auction a.terms__link:hover {
  background-color: #FFFFFF;
  color: #982065;
  border: 1px solid #982065;
}
body.site.selling-page .container-fluid .selling__after--auction img, body.site.selling-page .container-sm .selling__after--auction img, body.site.selling-page .container-md .selling__after--auction img, body.site.selling-page .container-lg .selling__after--auction img, body.site.selling-page .container-xl .selling__after--auction img, body.site.selling-page .container-xxl .selling__after--auction img {
  margin-right: 0.5rem;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__start--valuation .sppb-row-container, body.site.selling-page .container-sm .selling__start--valuation .sppb-row-container, body.site.selling-page .container-md .selling__start--valuation .sppb-row-container, body.site.selling-page .container-lg .selling__start--valuation .sppb-row-container, body.site.selling-page .container-xl .selling__start--valuation .sppb-row-container, body.site.selling-page .container-xxl .selling__start--valuation .sppb-row-container {
    padding-left: 0;
    padding-right: 0;
  }
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side {
  height: 530px;
  padding: 3rem;
}
@media screen and (max-width: 1199px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side {
    margin-top: -6rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side {
    height: 450px;
    margin-left: 10%;
    max-width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side {
    height: auto;
    margin-left: 2.5%;
    max-width: 95%;
    padding: 1.5rem;
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side h2 {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side h2, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side h2 {
    width: 100%;
  }
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .sppb-addon-content, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .sppb-addon-content, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .sppb-addon-content, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .sppb-addon-content, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .sppb-addon-content, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .valuation__sub-heading, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .valuation__sub-heading, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .valuation__sub-heading, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .valuation__sub-heading, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .valuation__sub-heading, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .valuation__sub-heading {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .valuation__button, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .valuation__button, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .valuation__button, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .valuation__button, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .valuation__button, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .valuation__button {
  text-align: center;
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .valuation__button a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .valuation__button a, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .valuation__button a {
    margin-top: 0;
  }
}
body.site.selling-page .container-fluid .selling__start--valuation .valuation__right--side .valuation__button a:hover, body.site.selling-page .container-sm .selling__start--valuation .valuation__right--side .valuation__button a:hover, body.site.selling-page .container-md .selling__start--valuation .valuation__right--side .valuation__button a:hover, body.site.selling-page .container-lg .selling__start--valuation .valuation__right--side .valuation__button a:hover, body.site.selling-page .container-xl .selling__start--valuation .valuation__right--side .valuation__button a:hover, body.site.selling-page .container-xxl .selling__start--valuation .valuation__right--side .valuation__button a:hover {
  background-color: #FFFFFF;
  color: #982065;
  border: 1px solid #982065;
}
body.site.selling-page .btn.pink--general-selling-page {
  background-color: #982065;
  color: #FFFFFF;
  height: 38px;
  padding: 0.5rem 4rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
}
body.site.selling-page .btn.pink--general-selling-page:hover {
  background-color: #FFFFFF;
  color: #982065;
  border: 1px solid #982065;
}

/* Buying page

/*================================================================================
SECTIONS

- HOME LINK
- FIND YOUR FAVOURITE ITEMS
- BEFORE THE AUCTION
- HOW TO BID
- HOW TO REGISTER
- AFTER THE AUCTION
- AFTER AUCTION IMAGE
- TERMS & CONDITIONS / BANK TRANSFERS
- UPCOMING AUCTIONS

================================================================================*/
body.site.buying-page .sppb-sticky-wrap .sppb-sticky-it {
  z-index: 19 !important;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.buying-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 23px !important;
  }
}
@media screen and (max-width: 991px) {
  body.site.buying-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.buying-page .sppb-sticky-wrap .sppb-sticky-it {
    top: 40px !important;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.buying-page #section-id-1675108121940 li a {
    font-size: 0.75rem;
    margin-right: 0 !important;
    padding-right: 7px !important;
  }
}
body.site.buying-page .container-fluid, body.site.buying-page .container-sm, body.site.buying-page .container-md, body.site.buying-page .container-lg, body.site.buying-page .container-xl, body.site.buying-page .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ FIND YOUR FAVOURITE ITEMS
  ================================================================================*/
  /*================================================================================
  $ BEFORE THE AUCTION
  ================================================================================*/
  /*================================================================================
  $ HOW TO BID
  ================================================================================*/
  /*================================================================================
  $ HOW TO REGISTER
  ================================================================================*/
  /*================================================================================
  $ AFTER THE AUCTION
  ================================================================================*/
  /*================================================================================
  $ AFTER AUCTION IMAGE
  ================================================================================*/
  /*================================================================================
  $ TERMS & CONDITIONS / BANK TRANSFERS
  ================================================================================*/
  /*================================================================================
  $ UPCOMING AUCTIONS
  ================================================================================*/
}
body.site.buying-page .container-fluid .buying__top-row, body.site.buying-page .container-sm .buying__top-row, body.site.buying-page .container-md .buying__top-row, body.site.buying-page .container-lg .buying__top-row, body.site.buying-page .container-xl .buying__top-row, body.site.buying-page .container-xxl .buying__top-row {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
}
body.site.buying-page .container-fluid .buying__top-row .buying__home-link, body.site.buying-page .container-sm .buying__top-row .buying__home-link, body.site.buying-page .container-md .buying__top-row .buying__home-link, body.site.buying-page .container-lg .buying__top-row .buying__home-link, body.site.buying-page .container-xl .buying__top-row .buying__home-link, body.site.buying-page .container-xxl .buying__top-row .buying__home-link {
  align-items: center;
  color: #982065;
  display: flex;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.buying-page .container-fluid .buying__top-row .buying__home-link img, body.site.buying-page .container-sm .buying__top-row .buying__home-link img, body.site.buying-page .container-md .buying__top-row .buying__home-link img, body.site.buying-page .container-lg .buying__top-row .buying__home-link img, body.site.buying-page .container-xl .buying__top-row .buying__home-link img, body.site.buying-page .container-xxl .buying__top-row .buying__home-link img {
  margin-right: 1rem;
}
body.site.buying-page .container-fluid .buying__top-row h1, body.site.buying-page .container-sm .buying__top-row h1, body.site.buying-page .container-md .buying__top-row h1, body.site.buying-page .container-lg .buying__top-row h1, body.site.buying-page .container-xl .buying__top-row h1, body.site.buying-page .container-xxl .buying__top-row h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.buying-page .container-fluid .buying__top-row h1, body.site.buying-page .container-sm .buying__top-row h1, body.site.buying-page .container-md .buying__top-row h1, body.site.buying-page .container-lg .buying__top-row h1, body.site.buying-page .container-xl .buying__top-row h1, body.site.buying-page .container-xxl .buying__top-row h1 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__top-row h1, body.site.buying-page .container-sm .buying__top-row h1, body.site.buying-page .container-md .buying__top-row h1, body.site.buying-page .container-lg .buying__top-row h1, body.site.buying-page .container-xl .buying__top-row h1, body.site.buying-page .container-xxl .buying__top-row h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__top-row h1, body.site.buying-page .container-sm .buying__top-row h1, body.site.buying-page .container-md .buying__top-row h1, body.site.buying-page .container-lg .buying__top-row h1, body.site.buying-page .container-xl .buying__top-row h1, body.site.buying-page .container-xxl .buying__top-row h1 {
    width: 100%;
  }
}
body.site.buying-page .container-fluid .buying__top-row h2, body.site.buying-page .container-sm .buying__top-row h2, body.site.buying-page .container-md .buying__top-row h2, body.site.buying-page .container-lg .buying__top-row h2, body.site.buying-page .container-xl .buying__top-row h2, body.site.buying-page .container-xxl .buying__top-row h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.buying-page .container-fluid .buying__top-row h2, body.site.buying-page .container-sm .buying__top-row h2, body.site.buying-page .container-md .buying__top-row h2, body.site.buying-page .container-lg .buying__top-row h2, body.site.buying-page .container-xl .buying__top-row h2, body.site.buying-page .container-xxl .buying__top-row h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__top-row h2, body.site.buying-page .container-sm .buying__top-row h2, body.site.buying-page .container-md .buying__top-row h2, body.site.buying-page .container-lg .buying__top-row h2, body.site.buying-page .container-xl .buying__top-row h2, body.site.buying-page .container-xxl .buying__top-row h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__top-row h2, body.site.buying-page .container-sm .buying__top-row h2, body.site.buying-page .container-md .buying__top-row h2, body.site.buying-page .container-lg .buying__top-row h2, body.site.buying-page .container-xl .buying__top-row h2, body.site.buying-page .container-xxl .buying__top-row h2 {
    width: 100%;
  }
}
body.site.buying-page .container-fluid .buying__top-row .sppb-addon-content, body.site.buying-page .container-sm .buying__top-row .sppb-addon-content, body.site.buying-page .container-md .buying__top-row .sppb-addon-content, body.site.buying-page .container-lg .buying__top-row .sppb-addon-content, body.site.buying-page .container-xl .buying__top-row .sppb-addon-content, body.site.buying-page .container-xxl .buying__top-row .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__top-row .useful__links, body.site.buying-page .container-sm .buying__top-row .useful__links, body.site.buying-page .container-md .buying__top-row .useful__links, body.site.buying-page .container-lg .buying__top-row .useful__links, body.site.buying-page .container-xl .buying__top-row .useful__links, body.site.buying-page .container-xxl .buying__top-row .useful__links {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
  height: 550px;
  margin-bottom: 1rem;
  padding: 3rem;
}
@media screen and (max-width: 1026px) {
  body.site.buying-page .container-fluid .buying__top-row .useful__links, body.site.buying-page .container-sm .buying__top-row .useful__links, body.site.buying-page .container-md .buying__top-row .useful__links, body.site.buying-page .container-lg .buying__top-row .useful__links, body.site.buying-page .container-xl .buying__top-row .useful__links, body.site.buying-page .container-xxl .buying__top-row .useful__links {
    padding: 2rem;
  }
}
body.site.buying-page .container-fluid .buying__top-row .useful__links .sppb-addon-content, body.site.buying-page .container-sm .buying__top-row .useful__links .sppb-addon-content, body.site.buying-page .container-md .buying__top-row .useful__links .sppb-addon-content, body.site.buying-page .container-lg .buying__top-row .useful__links .sppb-addon-content, body.site.buying-page .container-xl .buying__top-row .useful__links .sppb-addon-content, body.site.buying-page .container-xxl .buying__top-row .useful__links .sppb-addon-content {
  text-align: center;
}
body.site.buying-page .container-fluid .buying__top-row .useful__links .sppb-addon-content h3, body.site.buying-page .container-sm .buying__top-row .useful__links .sppb-addon-content h3, body.site.buying-page .container-md .buying__top-row .useful__links .sppb-addon-content h3, body.site.buying-page .container-lg .buying__top-row .useful__links .sppb-addon-content h3, body.site.buying-page .container-xl .buying__top-row .useful__links .sppb-addon-content h3, body.site.buying-page .container-xxl .buying__top-row .useful__links .sppb-addon-content h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.site.buying-page .container-fluid .buying__top-row .useful__links .sppb-addon-content ul, body.site.buying-page .container-sm .buying__top-row .useful__links .sppb-addon-content ul, body.site.buying-page .container-md .buying__top-row .useful__links .sppb-addon-content ul, body.site.buying-page .container-lg .buying__top-row .useful__links .sppb-addon-content ul, body.site.buying-page .container-xl .buying__top-row .useful__links .sppb-addon-content ul, body.site.buying-page .container-xxl .buying__top-row .useful__links .sppb-addon-content ul {
  padding-left: 0px;
}
body.site.buying-page .container-fluid .buying__top-row .useful__links .sppb-addon-content ul li, body.site.buying-page .container-sm .buying__top-row .useful__links .sppb-addon-content ul li, body.site.buying-page .container-md .buying__top-row .useful__links .sppb-addon-content ul li, body.site.buying-page .container-lg .buying__top-row .useful__links .sppb-addon-content ul li, body.site.buying-page .container-xl .buying__top-row .useful__links .sppb-addon-content ul li, body.site.buying-page .container-xxl .buying__top-row .useful__links .sppb-addon-content ul li {
  background-color: #FBF8F8;
  list-style-type: none;
  margin-bottom: 10px;
  padding: 10px 5px;
}
body.site.buying-page .container-fluid .buying__top-row .useful__links .sppb-addon-content ul li a, body.site.buying-page .container-sm .buying__top-row .useful__links .sppb-addon-content ul li a, body.site.buying-page .container-md .buying__top-row .useful__links .sppb-addon-content ul li a, body.site.buying-page .container-lg .buying__top-row .useful__links .sppb-addon-content ul li a, body.site.buying-page .container-xl .buying__top-row .useful__links .sppb-addon-content ul li a, body.site.buying-page .container-xxl .buying__top-row .useful__links .sppb-addon-content ul li a {
  color: #982065;
  cursor: pointer;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.buying-page .container-fluid .buying__favourite--heading h2, body.site.buying-page .container-sm .buying__favourite--heading h2, body.site.buying-page .container-md .buying__favourite--heading h2, body.site.buying-page .container-lg .buying__favourite--heading h2, body.site.buying-page .container-xl .buying__favourite--heading h2, body.site.buying-page .container-xxl .buying__favourite--heading h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__favourite--heading h2, body.site.buying-page .container-sm .buying__favourite--heading h2, body.site.buying-page .container-md .buying__favourite--heading h2, body.site.buying-page .container-lg .buying__favourite--heading h2, body.site.buying-page .container-xl .buying__favourite--heading h2, body.site.buying-page .container-xxl .buying__favourite--heading h2 {
    font-size: 40px;
  }
}
body.site.buying-page .container-fluid .buying__favourite h5, body.site.buying-page .container-sm .buying__favourite h5, body.site.buying-page .container-md .buying__favourite h5, body.site.buying-page .container-lg .buying__favourite h5, body.site.buying-page .container-xl .buying__favourite h5, body.site.buying-page .container-xxl .buying__favourite h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__favourite p, body.site.buying-page .container-sm .buying__favourite p, body.site.buying-page .container-md .buying__favourite p, body.site.buying-page .container-lg .buying__favourite p, body.site.buying-page .container-xl .buying__favourite p, body.site.buying-page .container-xxl .buying__favourite p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__favourite a, body.site.buying-page .container-sm .buying__favourite a, body.site.buying-page .container-md .buying__favourite a, body.site.buying-page .container-lg .buying__favourite a, body.site.buying-page .container-xl .buying__favourite a, body.site.buying-page .container-xxl .buying__favourite a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.buying-page .container-fluid .buying__favourite img, body.site.buying-page .container-sm .buying__favourite img, body.site.buying-page .container-md .buying__favourite img, body.site.buying-page .container-lg .buying__favourite img, body.site.buying-page .container-xl .buying__favourite img, body.site.buying-page .container-xxl .buying__favourite img {
  margin-top: -3px;
  padding-left: 0.5rem;
}
body.site.buying-page .container-fluid .buying__favourite .viewing__container, body.site.buying-page .container-sm .buying__favourite .viewing__container, body.site.buying-page .container-md .buying__favourite .viewing__container, body.site.buying-page .container-lg .buying__favourite .viewing__container, body.site.buying-page .container-xl .buying__favourite .viewing__container, body.site.buying-page .container-xxl .buying__favourite .viewing__container {
  background-color: #FBF8F8;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
  width: 85%;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__favourite .viewing__container, body.site.buying-page .container-sm .buying__favourite .viewing__container, body.site.buying-page .container-md .buying__favourite .viewing__container, body.site.buying-page .container-lg .buying__favourite .viewing__container, body.site.buying-page .container-xl .buying__favourite .viewing__container, body.site.buying-page .container-xxl .buying__favourite .viewing__container {
    padding: 2rem;
    width: 100%;
  }
}
body.site.buying-page .container-fluid .buying__favourite .viewing__container a.viewing__links, body.site.buying-page .container-sm .buying__favourite .viewing__container a.viewing__links, body.site.buying-page .container-md .buying__favourite .viewing__container a.viewing__links, body.site.buying-page .container-lg .buying__favourite .viewing__container a.viewing__links, body.site.buying-page .container-xl .buying__favourite .viewing__container a.viewing__links, body.site.buying-page .container-xxl .buying__favourite .viewing__container a.viewing__links {
  display: block;
  font-size: 1rem;
  padding-bottom: 0.5rem;
  text-transform: none;
}
body.site.buying-page .container-fluid .buying__favourite .viewing__container img.viewing__icon, body.site.buying-page .container-sm .buying__favourite .viewing__container img.viewing__icon, body.site.buying-page .container-md .buying__favourite .viewing__container img.viewing__icon, body.site.buying-page .container-lg .buying__favourite .viewing__container img.viewing__icon, body.site.buying-page .container-xl .buying__favourite .viewing__container img.viewing__icon, body.site.buying-page .container-xxl .buying__favourite .viewing__container img.viewing__icon {
  float: left;
  margin-right: 1rem;
}
body.site.buying-page .container-fluid .buying__before--auction-title h2, body.site.buying-page .container-sm .buying__before--auction-title h2, body.site.buying-page .container-md .buying__before--auction-title h2, body.site.buying-page .container-lg .buying__before--auction-title h2, body.site.buying-page .container-xl .buying__before--auction-title h2, body.site.buying-page .container-xxl .buying__before--auction-title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__before--auction-title h2, body.site.buying-page .container-sm .buying__before--auction-title h2, body.site.buying-page .container-md .buying__before--auction-title h2, body.site.buying-page .container-lg .buying__before--auction-title h2, body.site.buying-page .container-xl .buying__before--auction-title h2, body.site.buying-page .container-xxl .buying__before--auction-title h2 {
    font-size: 40px;
  }
}
body.site.buying-page .container-fluid .buying__before--the-auction h3, body.site.buying-page .container-sm .buying__before--the-auction h3, body.site.buying-page .container-md .buying__before--the-auction h3, body.site.buying-page .container-lg .buying__before--the-auction h3, body.site.buying-page .container-xl .buying__before--the-auction h3, body.site.buying-page .container-xxl .buying__before--the-auction h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__before--the-auction .sppb-addon-content, body.site.buying-page .container-sm .buying__before--the-auction .sppb-addon-content, body.site.buying-page .container-md .buying__before--the-auction .sppb-addon-content, body.site.buying-page .container-lg .buying__before--the-auction .sppb-addon-content, body.site.buying-page .container-xl .buying__before--the-auction .sppb-addon-content, body.site.buying-page .container-xxl .buying__before--the-auction .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__bid-title h2, body.site.buying-page .container-sm .buying__bid-title h2, body.site.buying-page .container-md .buying__bid-title h2, body.site.buying-page .container-lg .buying__bid-title h2, body.site.buying-page .container-xl .buying__bid-title h2, body.site.buying-page .container-xxl .buying__bid-title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__bid-title h2, body.site.buying-page .container-sm .buying__bid-title h2, body.site.buying-page .container-md .buying__bid-title h2, body.site.buying-page .container-lg .buying__bid-title h2, body.site.buying-page .container-xl .buying__bid-title h2, body.site.buying-page .container-xxl .buying__bid-title h2 {
    font-size: 40px;
  }
}
body.site.buying-page .container-fluid .buying__how--bid h3, body.site.buying-page .container-sm .buying__how--bid h3, body.site.buying-page .container-md .buying__how--bid h3, body.site.buying-page .container-lg .buying__how--bid h3, body.site.buying-page .container-xl .buying__how--bid h3, body.site.buying-page .container-xxl .buying__how--bid h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__how--bid .sppb-addon-content, body.site.buying-page .container-sm .buying__how--bid .sppb-addon-content, body.site.buying-page .container-md .buying__how--bid .sppb-addon-content, body.site.buying-page .container-lg .buying__how--bid .sppb-addon-content, body.site.buying-page .container-xl .buying__how--bid .sppb-addon-content, body.site.buying-page .container-xxl .buying__how--bid .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__how--bid .bid__link, body.site.buying-page .container-sm .buying__how--bid .bid__link, body.site.buying-page .container-md .buying__how--bid .bid__link, body.site.buying-page .container-lg .buying__how--bid .bid__link, body.site.buying-page .container-xl .buying__how--bid .bid__link, body.site.buying-page .container-xxl .buying__how--bid .bid__link {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.buying-page .container-fluid .buying__how--bid .bid__link:hover, body.site.buying-page .container-sm .buying__how--bid .bid__link:hover, body.site.buying-page .container-md .buying__how--bid .bid__link:hover, body.site.buying-page .container-lg .buying__how--bid .bid__link:hover, body.site.buying-page .container-xl .buying__how--bid .bid__link:hover, body.site.buying-page .container-xxl .buying__how--bid .bid__link:hover {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}
body.site.buying-page .container-fluid .buying__how--bid a, body.site.buying-page .container-sm .buying__how--bid a, body.site.buying-page .container-md .buying__how--bid a, body.site.buying-page .container-lg .buying__how--bid a, body.site.buying-page .container-xl .buying__how--bid a, body.site.buying-page .container-xxl .buying__how--bid a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  padding-bottom: 10px;
}
body.site.buying-page .container-fluid .buying__how--bid img, body.site.buying-page .container-sm .buying__how--bid img, body.site.buying-page .container-md .buying__how--bid img, body.site.buying-page .container-lg .buying__how--bid img, body.site.buying-page .container-xl .buying__how--bid img, body.site.buying-page .container-xxl .buying__how--bid img {
  display: block;
  float: left;
  margin-right: 1rem;
  margin-top: 2px;
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__register .sppb-row-container, body.site.buying-page .container-sm .buying__register .sppb-row-container, body.site.buying-page .container-md .buying__register .sppb-row-container, body.site.buying-page .container-lg .buying__register .sppb-row-container, body.site.buying-page .container-xl .buying__register .sppb-row-container, body.site.buying-page .container-xxl .buying__register .sppb-row-container {
    padding-left: 0;
    padding-right: 0;
  }
}
body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
  height: 610px;
  margin-top: 1.3rem;
  padding: 0rem 3rem 0rem 2rem;
  width: 650px;
}
@media screen and (max-width: 1199px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
    margin-top: -3rem;
  }
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
    height: auto;
    width: 550px;
  }
}
@media screen and (max-width: 991px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
    border-radius: 5px;
    height: auto;
    margin-left: 10%;
    margin-top: -6rem;
    max-width: 80%;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
    margin-left: 7.5%;
    max-width: 85%;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side, body.site.buying-page .container-sm .buying__register .register__right--side, body.site.buying-page .container-md .buying__register .register__right--side, body.site.buying-page .container-lg .buying__register .register__right--side, body.site.buying-page .container-xl .buying__register .register__right--side, body.site.buying-page .container-xxl .buying__register .register__right--side {
    margin-left: 2.5%;
    max-width: 95%;
  }
}
body.site.buying-page .container-fluid .buying__register .register__right--side h2, body.site.buying-page .container-sm .buying__register .register__right--side h2, body.site.buying-page .container-md .buying__register .register__right--side h2, body.site.buying-page .container-lg .buying__register .register__right--side h2, body.site.buying-page .container-xl .buying__register .register__right--side h2, body.site.buying-page .container-xxl .buying__register .register__right--side h2 {
  color: #0B0A1D;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side h2, body.site.buying-page .container-sm .buying__register .register__right--side h2, body.site.buying-page .container-md .buying__register .register__right--side h2, body.site.buying-page .container-lg .buying__register .register__right--side h2, body.site.buying-page .container-xl .buying__register .register__right--side h2, body.site.buying-page .container-xxl .buying__register .register__right--side h2 {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side h2, body.site.buying-page .container-sm .buying__register .register__right--side h2, body.site.buying-page .container-md .buying__register .register__right--side h2, body.site.buying-page .container-lg .buying__register .register__right--side h2, body.site.buying-page .container-xl .buying__register .register__right--side h2, body.site.buying-page .container-xxl .buying__register .register__right--side h2 {
    width: 100%;
  }
}
body.site.buying-page .container-fluid .buying__register .register__right--side .registerStarted, body.site.buying-page .container-sm .buying__register .register__right--side .registerStarted, body.site.buying-page .container-md .buying__register .register__right--side .registerStarted, body.site.buying-page .container-lg .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xl .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xxl .buying__register .register__right--side .registerStarted {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  float: right;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side .registerStarted, body.site.buying-page .container-sm .buying__register .register__right--side .registerStarted, body.site.buying-page .container-md .buying__register .register__right--side .registerStarted, body.site.buying-page .container-lg .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xl .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xxl .buying__register .register__right--side .registerStarted {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  body.site.buying-page .container-fluid .buying__register .register__right--side .registerStarted, body.site.buying-page .container-sm .buying__register .register__right--side .registerStarted, body.site.buying-page .container-md .buying__register .register__right--side .registerStarted, body.site.buying-page .container-lg .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xl .buying__register .register__right--side .registerStarted, body.site.buying-page .container-xxl .buying__register .register__right--side .registerStarted {
    float: left;
    margin-top: 5px;
  }
}
body.site.buying-page .container-fluid .buying__register .register__right--side .registerStarted:hover, body.site.buying-page .container-sm .buying__register .register__right--side .registerStarted:hover, body.site.buying-page .container-md .buying__register .register__right--side .registerStarted:hover, body.site.buying-page .container-lg .buying__register .register__right--side .registerStarted:hover, body.site.buying-page .container-xl .buying__register .register__right--side .registerStarted:hover, body.site.buying-page .container-xxl .buying__register .register__right--side .registerStarted:hover {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  color: #982065;
}
body.site.buying-page .container-fluid .buying__register .register__right--side .sppb-addon-content, body.site.buying-page .container-sm .buying__register .register__right--side .sppb-addon-content, body.site.buying-page .container-md .buying__register .register__right--side .sppb-addon-content, body.site.buying-page .container-lg .buying__register .register__right--side .sppb-addon-content, body.site.buying-page .container-xl .buying__register .register__right--side .sppb-addon-content, body.site.buying-page .container-xxl .buying__register .register__right--side .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__register .register__right--side a, body.site.buying-page .container-sm .buying__register .register__right--side a, body.site.buying-page .container-md .buying__register .register__right--side a, body.site.buying-page .container-lg .buying__register .register__right--side a, body.site.buying-page .container-xl .buying__register .register__right--side a, body.site.buying-page .container-xxl .buying__register .register__right--side a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
body.site.buying-page .container-fluid .buying__register .register__right--side img, body.site.buying-page .container-sm .buying__register .register__right--side img, body.site.buying-page .container-md .buying__register .register__right--side img, body.site.buying-page .container-lg .buying__register .register__right--side img, body.site.buying-page .container-xl .buying__register .register__right--side img, body.site.buying-page .container-xxl .buying__register .register__right--side img {
  float: left;
  margin-right: 0.5rem;
  margin-top: -2px;
}
body.site.buying-page .container-fluid .buying__after--auction h2, body.site.buying-page .container-sm .buying__after--auction h2, body.site.buying-page .container-md .buying__after--auction h2, body.site.buying-page .container-lg .buying__after--auction h2, body.site.buying-page .container-xl .buying__after--auction h2, body.site.buying-page .container-xxl .buying__after--auction h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .buying__after--auction h2, body.site.buying-page .container-sm .buying__after--auction h2, body.site.buying-page .container-md .buying__after--auction h2, body.site.buying-page .container-lg .buying__after--auction h2, body.site.buying-page .container-xl .buying__after--auction h2, body.site.buying-page .container-xxl .buying__after--auction h2 {
    font-size: 40px;
  }
}
body.site.buying-page .container-fluid .buying__after--auction .sppb-addon-content, body.site.buying-page .container-sm .buying__after--auction .sppb-addon-content, body.site.buying-page .container-md .buying__after--auction .sppb-addon-content, body.site.buying-page .container-lg .buying__after--auction .sppb-addon-content, body.site.buying-page .container-xl .buying__after--auction .sppb-addon-content, body.site.buying-page .container-xxl .buying__after--auction .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__after--auction .sppb-addon-content .delivery__sub-headings, body.site.buying-page .container-sm .buying__after--auction .sppb-addon-content .delivery__sub-headings, body.site.buying-page .container-md .buying__after--auction .sppb-addon-content .delivery__sub-headings, body.site.buying-page .container-lg .buying__after--auction .sppb-addon-content .delivery__sub-headings, body.site.buying-page .container-xl .buying__after--auction .sppb-addon-content .delivery__sub-headings, body.site.buying-page .container-xxl .buying__after--auction .sppb-addon-content .delivery__sub-headings {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 0rem;
  margin-top: 2rem;
}
body.site.buying-page .container-fluid .buying__after--auction .sppb-addon-content .delivery__london, body.site.buying-page .container-sm .buying__after--auction .sppb-addon-content .delivery__london, body.site.buying-page .container-md .buying__after--auction .sppb-addon-content .delivery__london, body.site.buying-page .container-lg .buying__after--auction .sppb-addon-content .delivery__london, body.site.buying-page .container-xl .buying__after--auction .sppb-addon-content .delivery__london, body.site.buying-page .container-xxl .buying__after--auction .sppb-addon-content .delivery__london {
  margin-top: 0rem;
}
body.site.buying-page .container-fluid .buying__after--auction .sppb-addon-content .places__underlined, body.site.buying-page .container-sm .buying__after--auction .sppb-addon-content .places__underlined, body.site.buying-page .container-md .buying__after--auction .sppb-addon-content .places__underlined, body.site.buying-page .container-lg .buying__after--auction .sppb-addon-content .places__underlined, body.site.buying-page .container-xl .buying__after--auction .sppb-addon-content .places__underlined, body.site.buying-page .container-xxl .buying__after--auction .sppb-addon-content .places__underlined {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0rem;
  text-decoration: underline;
}
body.site.buying-page .container-fluid .buying__after--auction ul, body.site.buying-page .container-sm .buying__after--auction ul, body.site.buying-page .container-md .buying__after--auction ul, body.site.buying-page .container-lg .buying__after--auction ul, body.site.buying-page .container-xl .buying__after--auction ul, body.site.buying-page .container-xxl .buying__after--auction ul {
  margin-top: 1rem;
}
body.site.buying-page .container-fluid .buying__after--auction ul li, body.site.buying-page .container-sm .buying__after--auction ul li, body.site.buying-page .container-md .buying__after--auction ul li, body.site.buying-page .container-lg .buying__after--auction ul li, body.site.buying-page .container-xl .buying__after--auction ul li, body.site.buying-page .container-xxl .buying__after--auction ul li {
  padding-bottom: 5px;
}
body.site.buying-page .container-fluid .buying__after--auction a, body.site.buying-page .container-sm .buying__after--auction a, body.site.buying-page .container-md .buying__after--auction a, body.site.buying-page .container-lg .buying__after--auction a, body.site.buying-page .container-xl .buying__after--auction a, body.site.buying-page .container-xxl .buying__after--auction a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}
body.site.buying-page .container-fluid .buying__after--auction img, body.site.buying-page .container-sm .buying__after--auction img, body.site.buying-page .container-md .buying__after--auction img, body.site.buying-page .container-lg .buying__after--auction img, body.site.buying-page .container-xl .buying__after--auction img, body.site.buying-page .container-xxl .buying__after--auction img {
  display: block;
  float: left;
  margin-right: 1rem;
}
body.site.buying-page .container-fluid .buying__after--auction h3, body.site.buying-page .container-sm .buying__after--auction h3, body.site.buying-page .container-md .buying__after--auction h3, body.site.buying-page .container-lg .buying__after--auction h3, body.site.buying-page .container-xl .buying__after--auction h3, body.site.buying-page .container-xxl .buying__after--auction h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__after--auction .buying__contact--section, body.site.buying-page .container-sm .buying__after--auction .buying__contact--section, body.site.buying-page .container-md .buying__after--auction .buying__contact--section, body.site.buying-page .container-lg .buying__after--auction .buying__contact--section, body.site.buying-page .container-xl .buying__after--auction .buying__contact--section, body.site.buying-page .container-xxl .buying__after--auction .buying__contact--section {
  background-color: #FFFFFF;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 3rem;
  padding: 3rem;
  position: relative;
  z-index: 999;
}
body.site.buying-page .container-fluid .buying__after--auction-image, body.site.buying-page .container-sm .buying__after--auction-image, body.site.buying-page .container-md .buying__after--auction-image, body.site.buying-page .container-lg .buying__after--auction-image, body.site.buying-page .container-xl .buying__after--auction-image, body.site.buying-page .container-xxl .buying__after--auction-image {
  position: relative;
  z-index: 1;
}
body.site.buying-page .container-fluid .buying__terms h2, body.site.buying-page .container-sm .buying__terms h2, body.site.buying-page .container-md .buying__terms h2, body.site.buying-page .container-lg .buying__terms h2, body.site.buying-page .container-xl .buying__terms h2, body.site.buying-page .container-xxl .buying__terms h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
body.site.buying-page .container-fluid .buying__terms .sppb-addon-content, body.site.buying-page .container-sm .buying__terms .sppb-addon-content, body.site.buying-page .container-md .buying__terms .sppb-addon-content, body.site.buying-page .container-lg .buying__terms .sppb-addon-content, body.site.buying-page .container-xl .buying__terms .sppb-addon-content, body.site.buying-page .container-xxl .buying__terms .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.buying-page .container-fluid .buying__terms a, body.site.buying-page .container-sm .buying__terms a, body.site.buying-page .container-md .buying__terms a, body.site.buying-page .container-lg .buying__terms a, body.site.buying-page .container-xl .buying__terms a, body.site.buying-page .container-xxl .buying__terms a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__terms a, body.site.buying-page .container-sm .buying__terms a, body.site.buying-page .container-md .buying__terms a, body.site.buying-page .container-lg .buying__terms a, body.site.buying-page .container-xl .buying__terms a, body.site.buying-page .container-xxl .buying__terms a {
    margin-top: 0;
    padding: 0.5rem 2.5rem;
  }
}
body.site.buying-page .container-fluid .buying__terms .buying__terms--column, body.site.buying-page .container-sm .buying__terms .buying__terms--column, body.site.buying-page .container-md .buying__terms .buying__terms--column, body.site.buying-page .container-lg .buying__terms .buying__terms--column, body.site.buying-page .container-xl .buying__terms .buying__terms--column, body.site.buying-page .container-xxl .buying__terms .buying__terms--column {
  background-color: #FBF8F8;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__terms .buying__terms--column, body.site.buying-page .container-sm .buying__terms .buying__terms--column, body.site.buying-page .container-md .buying__terms .buying__terms--column, body.site.buying-page .container-lg .buying__terms .buying__terms--column, body.site.buying-page .container-xl .buying__terms .buying__terms--column, body.site.buying-page .container-xxl .buying__terms .buying__terms--column {
    padding: 1.5rem 1rem;
  }
}
body.site.buying-page .container-fluid .buying__terms .buying__transfers--column, body.site.buying-page .container-sm .buying__terms .buying__transfers--column, body.site.buying-page .container-md .buying__terms .buying__transfers--column, body.site.buying-page .container-lg .buying__terms .buying__transfers--column, body.site.buying-page .container-xl .buying__terms .buying__transfers--column, body.site.buying-page .container-xxl .buying__terms .buying__transfers--column {
  background-color: #FBF8F8;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.buying-page .container-fluid .buying__terms .buying__transfers--column, body.site.buying-page .container-sm .buying__terms .buying__transfers--column, body.site.buying-page .container-md .buying__terms .buying__transfers--column, body.site.buying-page .container-lg .buying__terms .buying__transfers--column, body.site.buying-page .container-xl .buying__terms .buying__transfers--column, body.site.buying-page .container-xxl .buying__terms .buying__transfers--column {
    padding: 1.5rem 1rem;
  }
}
body.site.buying-page .container-fluid .upcoming__auctions--title h2, body.site.buying-page .container-sm .upcoming__auctions--title h2, body.site.buying-page .container-md .upcoming__auctions--title h2, body.site.buying-page .container-lg .upcoming__auctions--title h2, body.site.buying-page .container-xl .upcoming__auctions--title h2, body.site.buying-page .container-xxl .upcoming__auctions--title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site.buying-page .container-fluid .upcoming__auctions--title h2, body.site.buying-page .container-sm .upcoming__auctions--title h2, body.site.buying-page .container-md .upcoming__auctions--title h2, body.site.buying-page .container-lg .upcoming__auctions--title h2, body.site.buying-page .container-xl .upcoming__auctions--title h2, body.site.buying-page .container-xxl .upcoming__auctions--title h2 {
    font-size: 40px;
  }
}
body.site.buying-page .container-fluid .upcoming__auctions--title a, body.site.buying-page .container-sm .upcoming__auctions--title a, body.site.buying-page .container-md .upcoming__auctions--title a, body.site.buying-page .container-lg .upcoming__auctions--title a, body.site.buying-page .container-xl .upcoming__auctions--title a, body.site.buying-page .container-xxl .upcoming__auctions--title a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.buying-page .container-fluid .upcoming__auctions--title img, body.site.buying-page .container-sm .upcoming__auctions--title img, body.site.buying-page .container-md .upcoming__auctions--title img, body.site.buying-page .container-lg .upcoming__auctions--title img, body.site.buying-page .container-xl .upcoming__auctions--title img, body.site.buying-page .container-xxl .upcoming__auctions--title img {
  margin-left: 0.5rem;
}

/* Silverstone Privacy Policy page


/*================================================================================
SECTIONS

 - BANNER
 - TITLE
 - CONTENT

================================================================================*/
.privacy__policy-banner {
  background-image: url("../../../images/banners/terms-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 340px;
}

.privacy__policy-title h1 {
  color: #333333;
  font-family: "Georgia", sans-serif;
  font-size: 70px;
  text-transform: uppercase !important;
}
@media screen and (max-width: 799px) {
  .privacy__policy-title h1 {
    font-size: 50px;
  }
}

.privacy__policy-content {
  font-family: "Georgia", sans-serif;
}
.privacy__policy-content h4 {
  color: #A68F65;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 8px;
}
.privacy__policy-content p {
  font-size: 14px;
  padding-bottom: 8px;
}
.privacy__policy-content p span a {
  color: #213655;
  text-decoration: underline;
}
.privacy__policy-content ul {
  padding: 0px;
}
.privacy__policy-content ul li {
  font-size: 14px;
  list-style-type: none;
  padding-bottom: 8px;
}
.privacy__policy-content .bullet-points-section {
  padding-left: 40px;
}
.privacy__policy-content .bullet-points-section .bullet-points {
  list-style-type: disc;
}

/*================================================================================
LEGAL PAGES (TERMS & CONDITIONS / PRIVACY POLICY / COOKIES POLICY)
================================================================================*/
body.site.terms-conditions .sp-page-builder h2.sppb-addon-title, .privacy-policy .sp-page-builder h2.sppb-addon-title, .cookies-policy .sp-page-builder h2.sppb-addon-title, .terms-conditions-for-buying .sp-page-builder h2.sppb-addon-title, .picture-cataloguing-terms .sp-page-builder h2.sppb-addon-title, .terms-conditions-for-sellers .sp-page-builder h2.sppb-addon-title, .anti-money-laundering .sp-page-builder h2.sppb-addon-title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 35px;
  font-weight: 600;
}
body.site.terms-conditions .sp-page-builder .sppb-addon-content p, .privacy-policy .sp-page-builder .sppb-addon-content p, .cookies-policy .sp-page-builder .sppb-addon-content p, .terms-conditions-for-buying .sp-page-builder .sppb-addon-content p, .picture-cataloguing-terms .sp-page-builder .sppb-addon-content p, .terms-conditions-for-sellers .sp-page-builder .sppb-addon-content p, .anti-money-laundering .sp-page-builder .sppb-addon-content p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
body.site.terms-conditions .sp-page-builder .sppb-addon-content p a, .privacy-policy .sp-page-builder .sppb-addon-content p a, .cookies-policy .sp-page-builder .sppb-addon-content p a, .terms-conditions-for-buying .sp-page-builder .sppb-addon-content p a, .picture-cataloguing-terms .sp-page-builder .sppb-addon-content p a, .terms-conditions-for-sellers .sp-page-builder .sppb-addon-content p a, .anti-money-laundering .sp-page-builder .sppb-addon-content p a {
  color: #982065;
  font-family: #FEDE07;
  font-size: 1rem;
  font-weight: 400;
}
body.site.terms-conditions .sp-page-builder .sppb-addon-content ul li, .privacy-policy .sp-page-builder .sppb-addon-content ul li, .cookies-policy .sp-page-builder .sppb-addon-content ul li, .terms-conditions-for-buying .sp-page-builder .sppb-addon-content ul li, .picture-cataloguing-terms .sp-page-builder .sppb-addon-content ul li, .terms-conditions-for-sellers .sp-page-builder .sppb-addon-content ul li, .anti-money-laundering .sp-page-builder .sppb-addon-content ul li {
  line-height: 1.7;
}

/* ABOUT US

/*================================================================================
SECTIONS

- HOMELINK
- INTRODUCTION
- PROFESSIONAL & HIGH QUALITY SERVICE
- SPECIALIST / VALUATION IMAGES
- SALES HIGHLIGHTS HEADING
- RECENT SALE HIGHLIGHTS

================================================================================*/
body.site.about-us .sp-page-builder {
  /*================================================================================
        $ HOMELINK
        ================================================================================*/
  /*================================================================================
        $ INTRODUCTION
        ================================================================================*/
  /*================================================================================
        $ PROFESSIONAL & HIGH QUALITY SERVICE
        ================================================================================*/
  /*================================================================================
        $ SPECIALIST / VALUATION IMAGES
        ================================================================================*/
  /*================================================================================
        $ SALES HIGHLIGHTS HEADING
        ================================================================================*/
  /*================================================================================
        $ RECENT SALE HIGHLIGHTS
        ================================================================================*/
}
body.site.about-us .sp-page-builder .about__home--link a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 1rem;
  text-transform: uppercase;
}
body.site.about-us .sp-page-builder .about__home--link a:hover {
  text-decoration: none;
}
body.site.about-us .sp-page-builder .about__introduction h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.about-us .sp-page-builder .about__introduction .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box .sppb-addon-single-image.sppb-text-left {
    text-align: center !important;
  }
}
@media screen and (max-width: 1379px) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box #column-wrap-id-1667394610701 #column-id-1667394610701 .sppb-addon-single-image-container img {
    object-fit: cover;
    min-height: 230px;
    height: 230px;
  }
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box #column-wrap-id-1667394610673 #column-id-1667394610673 .sppb-addon-single-image-container img {
    object-fit: cover;
    height: 800px;
  }
}
@media (min-width: 1024px) and (max-width: 1292px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box #column-wrap-id-1667394610701 #column-id-1667394610701 .sppb-addon-single-image-container img {
    object-fit: cover;
    min-height: 280px;
    height: 280px;
  }
}
body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne {
  background-color: #FBF8F8;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  max-height: 227px;
  padding: 2rem 2rem 0rem 2rem;
}
@media screen and (max-width: 1199px) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne {
    max-height: 280px;
  }
}
body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 1379px) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1199px) {
  body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne h3 {
    font-size: 25px;
  }
}
body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne .sppb-addon-content a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
}
body.site.about-us .sp-page-builder .about__introduction .about__intro--box .about__columnOne .sppb-addon-content a:hover {
  text-decoration: none;
}
@media (min-width: 1024px) and (max-width: 1292px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  body.site.about-us .sp-page-builder .about__introduction #column-wrap-id-1667394610673 #column-id-1667394610673 .sppb-addon-single-image-container img {
    object-fit: cover;
    height: 800px;
  }
}
body.site.about-us .sp-page-builder .about__professional .about__professional--columnOne {
  width: 85%;
}
@media screen and (max-width: 599px) {
  body.site.about-us .sp-page-builder .about__professional .about__professional--columnOne {
    width: 100%;
  }
}
body.site.about-us .sp-page-builder .about__professional .about__professional--columnOne h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.about-us .sp-page-builder .about__professional .about__professional--columnOne .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  body.site.about-us .sp-page-builder .about__professional .about__professional--image .sppb-text-right {
    text-align: center;
  }
}
body.site.about-us .sp-page-builder .about__images img {
  position: relative;
  z-index: 0;
}
body.site.about-us .sp-page-builder .about__images .about__specialist--box {
  background-color: #FBF8F8;
  margin: -9rem auto;
  padding: 3rem;
  position: relative;
  text-align: center;
  width: 65%;
  z-index: 50;
}
@media screen and (max-width: 599px) {
  body.site.about-us .sp-page-builder .about__images .about__specialist--box {
    padding: 2.5rem;
    width: 90%;
  }
}
body.site.about-us .sp-page-builder .about__images .about__specialist--box h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 2rem;
}
body.site.about-us .sp-page-builder .about__images .about__specialist--box a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 4rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  body.site.about-us .sp-page-builder .about__images .about__specialist--box a {
    padding: 0.5rem 3rem;
  }
}
@media screen and (max-width: 991px) {
  body.site.about-us .sp-page-builder .about__images .about__specialist--box a {
    display: block;
  }
}
body.site.about-us .sp-page-builder .about__images .about__specialist--box a:hover {
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  body.site.about-us .sp-page-builder .about__images .about__valuation {
    margin-top: 160px;
  }
}
@media screen and (max-width: 992px) {
  body.site.about-us .sp-page-builder .about__images .about__valuation .sppb-text-right {
    text-align: center;
  }
}
body.site.about-us .sp-page-builder .about__sale--heading h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
/* Roseberys News Articles page

/*================================================================================
SECTIONS

- INTRO
- WRITTEN CONTENT
- LOT EXPLANATION

================================================================================*/
body.site.news-article .main-container, .view-article .main-container {
  max-width: 1240px;
  /*================================================================================
  $ INTRO
  ================================================================================*/
  /*================================================================================
  $ WRITTEN CONTENT
  ================================================================================*/
  /*================================================================================
  $ LOT EXPLANATION
  ================================================================================*/
}
body.site.news-article .main-container .d-md-block, .view-article .main-container .d-md-block {
  display: none !important;
}
body.site.news-article .main-container .article__home--link .sppb-addon-content, .view-article .main-container .article__home--link .sppb-addon-content {
  text-align: center;
}
body.site.news-article .main-container .article__home--link .sppb-addon-content .bid__home--link, .view-article .main-container .article__home--link .sppb-addon-content .bid__home--link {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.news-article .main-container .article__home--link .sppb-addon-content .bid__home--link img, .view-article .main-container .article__home--link .sppb-addon-content .bid__home--link img {
  margin-right: 1rem;
}
body.site.news-article .main-container .article__intro h1, .view-article .main-container .article__intro h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin: 0 auto !important;
  width: 70%;
}
@media screen and (max-width: 1199px) {
  body.site.news-article .main-container .article__intro h1, .view-article .main-container .article__intro h1 {
    font-size: 40px;
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.news-article .main-container .article__intro h1, .view-article .main-container .article__intro h1 {
    font-size: 35px;
    width: 100%;
  }
}
body.site.news-article .main-container .article__intro .sppb-addon-content, .view-article .main-container .article__intro .sppb-addon-content {
  margin: 1rem auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.site.news-article .main-container .article__intro .sppb-addon-content, .view-article .main-container .article__intro .sppb-addon-content {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.news-article .main-container .article__intro .sppb-addon-content, .view-article .main-container .article__intro .sppb-addon-content {
    width: 100%;
  }
}
body.site.news-article .main-container .news__article--written-content h4, .view-article .main-container .news__article--written-content h4 {
  font-family: "Georgia", sans-serif !important;
}
body.site.news-article .main-container .news__article--lot-analysis .lot__number, .view-article .main-container .news__article--lot-analysis .lot__number {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
body.site.news-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content, .view-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif !important;
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.site.news-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content, .view-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.news-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content, .view-article .main-container .news__article--lot-analysis .lot__explanation .sppb-addon-content {
    width: 100%;
  }
}

/* STAFF PAGE / STAFF BIO PAGE

/*================================================================================
STAFF PAGE

- HOME LINK
- INTRO
- STAFF HEADINGS
- STAFF DEPARTMENTS

STAFF BIO PAGE

- HOME LINK
- BIO CONTENT
- CONTACT INFORMATION
- NEWS

================================================================================*/
/*================================================================================
$ STAFF DEPARTMENT PAGE
================================================================================*/
body.site.staff .meet__team--container .home__link--container {
  margin-bottom: 1.5rem;
  text-align: center;
}
body.site.staff .meet__team--container .home__link--container img {
  margin-right: 0.5rem;
}
body.site.staff .meet__team--container .home__link--container a {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.staff .meet__team--container .home__link--container a:hover {
  text-decoration: none;
}
body.site.staff .meet__team--container .meet__team--department h1 {
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  color: #0B0A1D;
}
@media screen and (max-width: 599px) {
  body.site.staff .meet__team--container .meet__team--department h1 {
    font-size: 40px;
  }
}
body.site.staff .meet__team--container .meet__team--department .staff__intro--container {
  text-align: center;
}
body.site.staff .meet__team--container .meet__team--department .staff__intro--container .staff__intro {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 799px) {
  body.site.staff .meet__team--container .meet__team--department .staff__intro--container .staff__intro {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.staff .meet__team--container .meet__team--department .staff__intro--container .staff__intro {
    width: 100%;
  }
}
body.site.staff .meet__team--container .staff__contents--container {
  margin-top: 2rem;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department__name h2 {
  font-family: "Georgia", sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 3rem;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.staff .meet__team--container .staff__contents--container .meet__team--department__name h2 {
    font-size: 30px;
  }
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department {
  margin: 0 0 1rem;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__image {
  padding: 2rem 2rem 0rem 2rem;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__image {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (max-width: 575.98px) {
  body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__image {
    padding: 2rem 1rem 0rem 1rem;
  }
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__image img {
  max-width: 100%;
}
@media (min-width: 992px) {
  body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__image img {
    min-height: 380px;
    max-height: 380px;
    object-fit: cover;
  }
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info {
  margin-top: 1.5rem;
  padding: 1rem;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info h5 {
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .staff__job {
  color: "Arial", serif;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .staff__department {
  color: #982065;
  display: inline;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  padding-right: 5px;
  text-transform: uppercase;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .staff__email {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0rem;
  margin-top: 10px;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .staff__phone {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover {
  text-decoration: none;
}
body.site.staff .meet__team--container .staff__contents--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img {
  margin-left: 0.5rem;
}

/*================================================================================
$ STAFF DETAIL PAGE
================================================================================*/
body.site.view-view_staff .container-fluid, body.site.view-view_staff .container-sm, body.site.view-view_staff .container-md, body.site.view-view_staff .container-lg, body.site.view-view_staff .container-xl, body.site.view-view_staff .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  box-shadow: none;
}
body.site.view-view_staff .container-fluid .banner__container img, body.site.view-view_staff .container-sm .banner__container img, body.site.view-view_staff .container-md .banner__container img, body.site.view-view_staff .container-lg .banner__container img, body.site.view-view_staff .container-xl .banner__container img, body.site.view-view_staff .container-xxl .banner__container img {
  width: 100%;
}
@media screen and (max-width: 799px) {
  body.site.view-view_staff .container-fluid .banner__container img, body.site.view-view_staff .container-sm .banner__container img, body.site.view-view_staff .container-md .banner__container img, body.site.view-view_staff .container-lg .banner__container img, body.site.view-view_staff .container-xl .banner__container img, body.site.view-view_staff .container-xxl .banner__container img {
    height: 200px;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-view_staff .container-fluid .banner__container img, body.site.view-view_staff .container-sm .banner__container img, body.site.view-view_staff .container-md .banner__container img, body.site.view-view_staff .container-lg .banner__container img, body.site.view-view_staff .container-xl .banner__container img, body.site.view-view_staff .container-xxl .banner__container img {
    height: 120px;
  }
}
body.site.view-view_staff .container-fluid .home__link--container, body.site.view-view_staff .container-sm .home__link--container, body.site.view-view_staff .container-md .home__link--container, body.site.view-view_staff .container-lg .home__link--container, body.site.view-view_staff .container-xl .home__link--container, body.site.view-view_staff .container-xxl .home__link--container {
  margin: 0 auto;
  margin-bottom: 1rem;
  margin-top: 2rem;
  max-width: 1200px;
}
@media screen and (max-width: 1199px) {
  body.site.view-view_staff .container-fluid .home__link--container, body.site.view-view_staff .container-sm .home__link--container, body.site.view-view_staff .container-md .home__link--container, body.site.view-view_staff .container-lg .home__link--container, body.site.view-view_staff .container-xl .home__link--container, body.site.view-view_staff .container-xxl .home__link--container {
    padding-left: 2rem;
  }
}
body.site.view-view_staff .container-fluid .home__link--container img, body.site.view-view_staff .container-sm .home__link--container img, body.site.view-view_staff .container-md .home__link--container img, body.site.view-view_staff .container-lg .home__link--container img, body.site.view-view_staff .container-xl .home__link--container img, body.site.view-view_staff .container-xxl .home__link--container img {
  margin-right: 1rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper, body.site.view-view_staff .container-sm .staff--profile__wrapper, body.site.view-view_staff .container-md .staff--profile__wrapper, body.site.view-view_staff .container-lg .staff--profile__wrapper, body.site.view-view_staff .container-xl .staff--profile__wrapper, body.site.view-view_staff .container-xxl .staff--profile__wrapper {
  margin: 1rem auto;
  margin-bottom: 2rem;
  max-width: 1200px;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container {
  margin-bottom: 4rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper {
  margin-top: 1rem;
  padding-left: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper {
    margin-top: 3rem;
    padding-left: 0;
  }
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info h3 {
    font-size: 36px;
    line-height: 1;
  }
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .profile__info span {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__bio {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
  padding-left: 0rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact {
  background-color: #FBF8F8;
  margin-top: 2.5rem;
  padding: 1rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact h6 {
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul {
  padding-left: 0rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li {
  list-style-type: none;
  margin-bottom: 7px;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li img {
  margin-right: 1rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact ul li .department_name {
  color: #982065;
  margin-right: 0.7rem;
  font-size: 0.9rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn, body.site.view-view_staff .container-sm .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn, body.site.view-view_staff .container-md .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn, body.site.view-view_staff .container-lg .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn, body.site.view-view_staff .container-xl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn, body.site.view-view_staff .container-xxl .staff--profile__wrapper .staff__overall--container .profile--info__wrapper .staff--profile__block .staff__contact .department__btn {
  margin-top: 1rem;
  padding: 0.2rem 3rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .module-container, body.site.view-view_staff .container-sm .staff--profile__wrapper .module-container, body.site.view-view_staff .container-md .staff--profile__wrapper .module-container, body.site.view-view_staff .container-lg .staff--profile__wrapper .module-container, body.site.view-view_staff .container-xl .staff--profile__wrapper .module-container, body.site.view-view_staff .container-xxl .staff--profile__wrapper .module-container {
  margin-bottom: 3rem;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .module-container .title, body.site.view-view_staff .container-sm .staff--profile__wrapper .module-container .title, body.site.view-view_staff .container-md .staff--profile__wrapper .module-container .title, body.site.view-view_staff .container-lg .staff--profile__wrapper .module-container .title, body.site.view-view_staff .container-xl .staff--profile__wrapper .module-container .title, body.site.view-view_staff .container-xxl .staff--profile__wrapper .module-container .title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.view-view_staff .container-fluid .staff--profile__wrapper .module-container a, body.site.view-view_staff .container-sm .staff--profile__wrapper .module-container a, body.site.view-view_staff .container-md .staff--profile__wrapper .module-container a, body.site.view-view_staff .container-lg .staff--profile__wrapper .module-container a, body.site.view-view_staff .container-xl .staff--profile__wrapper .module-container a, body.site.view-view_staff .container-xxl .staff--profile__wrapper .module-container a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
/* Roseberys News Front page

/*================================================================================
SECTIONS

- HOME LINK
- INTRO
- FEATURED STORY
- ARTICLES
- NEWS SEARCH ADDON - (MAIN NEWS PAGE)

================================================================================*/
body.site.news, body.site.com_cms.view-news {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ INTRO
  ================================================================================*/
  /*================================================================================
  $ FEATURED STORY
  ================================================================================*/
  /*================================================================================
  $ NEWS SEARCH
  ================================================================================*/
  /*================================================================================
  $ ARTICLES SECTION
  ================================================================================*/
  /*================================================================================
  $ ARTICLES
  ================================================================================*/
  /*================================================================================
  $ NEWS SEARCH ADDON - (MAIN NEWS PAGE)
  ================================================================================*/
}
body.site.news .news__home--link, body.site.com_cms.view-news .news__home--link {
  margin-top: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.news .news__home--link, body.site.com_cms.view-news .news__home--link {
    margin-top: 2rem;
  }
}
body.site.news .news__home--link .bid__home--link, body.site.com_cms.view-news .news__home--link .bid__home--link {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.news .news__home--link .bid__home--link:hover, body.site.com_cms.view-news .news__home--link .bid__home--link:hover {
  text-decoration: none;
}
body.site.news .news__home--link .bid__home--link img, body.site.com_cms.view-news .news__home--link .bid__home--link img {
  margin-right: 1rem;
}
body.site.news .news__intro, body.site.com_cms.view-news .news__intro {
  margin-top: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.news .news__intro, body.site.com_cms.view-news .news__intro {
    margin-top: 2rem;
  }
}
body.site.news .news__intro h1, body.site.com_cms.view-news .news__intro h1 {
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.news .news__intro h1, body.site.com_cms.view-news .news__intro h1 {
    font-size: 40px;
  }
}
body.site.news .news__intro h2, body.site.com_cms.view-news .news__intro h2 {
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.news .news__intro h2, body.site.com_cms.view-news .news__intro h2 {
    font-size: 40px;
  }
}
body.site.news .news__intro .sppb-addon-content, body.site.news .news__intro p, body.site.com_cms.view-news .news__intro .sppb-addon-content, body.site.com_cms.view-news .news__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 2rem auto;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.site.news .news__intro .sppb-addon-content, body.site.news .news__intro p, body.site.com_cms.view-news .news__intro .sppb-addon-content, body.site.com_cms.view-news .news__intro p {
    width: 100%;
  }
}
body.site.news .news__featured--story, body.site.com_cms.view-news .news__featured--story {
  background-color: #FBFBF8;
  box-shadow: 0 0 0 0 #ffffff;
  padding: 3rem 1rem 0 1rem;
}
body.site.news .news__featured--story .news__featured--container, body.site.com_cms.view-news .news__featured--story .news__featured--container {
  max-width: 1240px;
  margin: 0 auto !important;
}
body.site.news .news__featured--story .align-center, body.site.com_cms.view-news .news__featured--story .align-center {
  align-items: center !important;
}
body.site.news .news__featured--story .news__featured--left-column, body.site.com_cms.view-news .news__featured--story .news__featured--left-column {
  margin-left: 3rem;
  margin-right: -3rem;
}
body.site.news .news__featured--story .news__featured--left-column img, body.site.com_cms.view-news .news__featured--story .news__featured--left-column img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1199px) {
  body.site.news .news__featured--story .news__featured--left-column, body.site.com_cms.view-news .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 799px) {
  body.site.news .news__featured--story .news__featured--left-column, body.site.com_cms.view-news .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
body.site.news .news__featured--story .news__featured--right-column, body.site.com_cms.view-news .news__featured--story .news__featured--right-column {
  padding-top: 3.5rem;
  padding-right: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 3.5rem;
  box-shadow: 0px 4px 16px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  margin-left: -3rem;
  margin-right: 3rem;
}
@media screen and (max-width: 1199px) {
  body.site.news .news__featured--story .news__featured--right-column, body.site.com_cms.view-news .news__featured--story .news__featured--right-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 799px) {
  body.site.news .news__featured--story .news__featured--right-column, body.site.com_cms.view-news .news__featured--story .news__featured--right-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.news .news__featured--story .news__featured--right-column, body.site.com_cms.view-news .news__featured--story .news__featured--right-column {
    padding: 2rem;
  }
}
body.site.news .news__featured--story .news__featured--right-column .news__featured--title, body.site.com_cms.view-news .news__featured--story .news__featured--right-column .news__featured--title {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.site.news .news__featured--story .news__featured--right-column .news__featured--title .sppb-addon-content, body.site.com_cms.view-news .news__featured--story .news__featured--right-column .news__featured--title .sppb-addon-content {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.news .news__featured--story .news__featured--right-column h2, body.site.com_cms.view-news .news__featured--story .news__featured--right-column h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  body.site.news .news__featured--story .news__featured--right-column h2, body.site.com_cms.view-news .news__featured--story .news__featured--right-column h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.news .news__featured--story .news__featured--right-column h2, body.site.com_cms.view-news .news__featured--story .news__featured--right-column h2 {
    font-size: 27px;
  }
}
body.site.news .news__featured--story .news__featured--right-column .news__story--content .sppb-addon-content, body.site.news .news__featured--story .news__featured--right-column .news__story--content div, body.site.com_cms.view-news .news__featured--story .news__featured--right-column .news__story--content .sppb-addon-content, body.site.com_cms.view-news .news__featured--story .news__featured--right-column .news__story--content div {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.site.news .news__featured--story .news__featured--right-column a, body.site.com_cms.view-news .news__featured--story .news__featured--right-column a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.site.news .news_search, body.site.com_cms.view-news .news_search {
  background-color: #FBFBF8;
  box-shadow: 0 0 0 0 #ffffff;
  padding: 1px 1rem 2rem 1rem;
}
body.site.news .articles__section, body.site.com_cms.view-news .articles__section {
  margin-top: 2rem;
}
body.site.news .articles__section > .container, body.site.com_cms.view-news .articles__section > .container {
  max-width: 1500px !important;
}
@media screen and (max-width: 999px) {
  body.site.news .articles__section .container .row .col-sm-4, body.site.com_cms.view-news .articles__section .container .row .col-sm-4 {
    width: 49.33333333%;
  }
}
@media screen and (max-width: 575px) {
  body.site.news .articles__section .container .row .col-sm-4, body.site.com_cms.view-news .articles__section .container .row .col-sm-4 {
    width: 99.33333333%;
  }
}
body.site.news .news__articles, body.site.com_cms.view-news .news__articles {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  body.site.news .news__articles, body.site.com_cms.view-news .news__articles {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  body.site.news .news__articles, body.site.com_cms.view-news .news__articles {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  body.site.news .news__articles, body.site.com_cms.view-news .news__articles {
    margin-bottom: 15px;
  }
}
body.site.news .news__articles .article, body.site.com_cms.view-news .news__articles .article {
  width: 100%;
}
body.site.news .news__articles .article-info-wrap, body.site.com_cms.view-news .news__articles .article-info-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.news .news__articles .article-info-wrap h3 span, body.site.com_cms.view-news .news__articles .article-info-wrap h3 span {
    display: -webkit-box;
    min-height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
body.site.news .news__articles .image, body.site.com_cms.view-news .news__articles .image {
  display: block;
}
body.site.news .news__articles .img, body.site.com_cms.view-news .news__articles .img {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  display: block;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
}
body.site.news .news__articles img, body.site.com_cms.view-news .news__articles img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-height: 320px;
  min-height: 320px;
}
body.site.news .news__articles h3, body.site.com_cms.view-news .news__articles h3 {
  font-size: 20px;
  line-height: 1.2;
  min-height: 60px;
}
body.site.news .news__articles h3 a, body.site.com_cms.view-news .news__articles h3 a {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}
body.site.news .news__articles h3 a:hover, body.site.com_cms.view-news .news__articles h3 a:hover {
  color: #982065;
  text-decoration: underline;
}
body.site.news .news__articles .sppb-meta-date,
body.site.news .news__articles .meta-date, body.site.com_cms.view-news .news__articles .sppb-meta-date,
body.site.com_cms.view-news .news__articles .meta-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}
body.site.news .news__articles .meta-category, body.site.com_cms.view-news .news__articles .meta-category {
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 12px;
  text-transform: uppercase;
}
body.site.news .news__articles .sppb-readmore,
body.site.news .news__articles .btn-readmore, body.site.com_cms.view-news .news__articles .sppb-readmore,
body.site.com_cms.view-news .news__articles .btn-readmore {
  align-self: flex-start;
  padding: 0.8rem 2rem;
}
body.site.news .news__search--container, body.site.com_cms.view-news .news__search--container {
  margin: 0 auto;
  margin-top: 3rem;
  max-width: 800px;
  position: relative;
}
body.site.news .news__search--container .news__search--article, body.site.com_cms.view-news .news__search--container .news__search--article {
  position: relative;
}
@media screen and (max-width: 799px) {
  body.site.news .news__search--container .news__search--article, body.site.com_cms.view-news .news__search--container .news__search--article {
    margin: 0 auto;
    margin-bottom: 1rem;
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  body.site.news .news__search--container .news__search--article, body.site.com_cms.view-news .news__search--container .news__search--article {
    width: 80%;
  }
}
body.site.news .news__search--container .news__search--article input, body.site.com_cms.view-news .news__search--container .news__search--article input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  padding-left: 10px;
  width: 100%;
}
body.site.news .news__search--container .news__search--article input::-webkit-input-placeholder, body.site.com_cms.view-news .news__search--container .news__search--article input::-webkit-input-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.news .news__search--container .news__search--article input:-moz-placeholder, body.site.com_cms.view-news .news__search--container .news__search--article input:-moz-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.news .news__search--container .news__search--article input::-moz-placeholder, body.site.com_cms.view-news .news__search--container .news__search--article input::-moz-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.news .news__search--container .news__search--article input:-ms-input-placeholder, body.site.com_cms.view-news .news__search--container .news__search--article input:-ms-input-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.news .news__search--container .news__search--article img, body.site.com_cms.view-news .news__search--container .news__search--article img {
  position: absolute;
  right: 22px;
  top: 8px;
}
@media screen and (max-width: 799px) {
  body.site.news .news__search--container .news__search--category, body.site.com_cms.view-news .news__search--container .news__search--category {
    margin: 0 auto;
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  body.site.news .news__search--container .news__search--category, body.site.com_cms.view-news .news__search--container .news__search--category {
    width: 80%;
  }
}
body.site.news .news__search--container .news__search--category select, body.site.com_cms.view-news .news__search--container .news__search--category select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  padding-left: 10px;
  width: 100%;
  color: #982065;
}
body.site.news .pagination, body.site.com_cms.view-news .pagination {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 3px 0px 3px 0;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 669px) {
  body.site.news .pagination, body.site.com_cms.view-news .pagination {
    padding: 15px 0 30px 0;
    text-align: center;
    width: 100%;
  }
}
body.site.news .pagination .loading, body.site.com_cms.view-news .pagination .loading {
  float: right;
  position: absolute;
  right: 10px;
  top: 10px;
}
body.site.news .pagination .loading > svg, body.site.com_cms.view-news .pagination .loading > svg {
  stroke: #29254e;
}
body.site.news .pagination .paginate-item, body.site.com_cms.view-news .pagination .paginate-item {
  background-color: #F4F4F4;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  min-width: 32px;
  outline: none;
  padding: 5px 5px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body.site.news .pagination .paginate-item > i, body.site.news .pagination .paginate-item > p, body.site.com_cms.view-news .pagination .paginate-item > i, body.site.com_cms.view-news .pagination .paginate-item > p {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #000000;
  font-size: 15px;
  height: auto;
  left: 50%;
  margin: 0;
  max-width: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
body.site.news .pagination .paginate-item.item-number, body.site.news .pagination .paginate-item.first, body.site.news .pagination .paginate-item.previous, body.site.news .pagination .paginate-item.next, body.site.news .pagination .paginate-item.last, body.site.com_cms.view-news .pagination .paginate-item.item-number, body.site.com_cms.view-news .pagination .paginate-item.first, body.site.com_cms.view-news .pagination .paginate-item.previous, body.site.com_cms.view-news .pagination .paginate-item.next, body.site.com_cms.view-news .pagination .paginate-item.last {
  background-color: #F4F4F4;
  margin: 0 4px;
  position: relative;
  top: 1px;
}
body.site.news .pagination .paginate-item.active, body.site.news .pagination .paginate-item:hover, body.site.com_cms.view-news .pagination .paginate-item.active, body.site.com_cms.view-news .pagination .paginate-item:hover {
  background-color: #982065;
  outline: none;
}
body.site.news .pagination .paginate-item.active > i, body.site.news .pagination .paginate-item.active > p, body.site.news .pagination .paginate-item:hover > i, body.site.news .pagination .paginate-item:hover > p, body.site.com_cms.view-news .pagination .paginate-item.active > i, body.site.com_cms.view-news .pagination .paginate-item.active > p, body.site.com_cms.view-news .pagination .paginate-item:hover > i, body.site.com_cms.view-news .pagination .paginate-item:hover > p {
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  body.site.news .pagination .paginate-item:hover, body.site.com_cms.view-news .pagination .paginate-item:hover {
    background-color: #F4F4F4 !important;
  }
  body.site.news .pagination .paginate-item:hover > i, body.site.news .pagination .paginate-item:hover > p, body.site.com_cms.view-news .pagination .paginate-item:hover > i, body.site.com_cms.view-news .pagination .paginate-item:hover > p {
    color: #000000;
  }
  body.site.news .pagination .paginate-item.active:hover, body.site.com_cms.view-news .pagination .paginate-item.active:hover {
    background-color: #982065 !important;
  }
  body.site.news .pagination .paginate-item.active:hover > i, body.site.news .pagination .paginate-item.active:hover > p, body.site.com_cms.view-news .pagination .paginate-item.active:hover > i, body.site.com_cms.view-news .pagination .paginate-item.active:hover > p {
    color: #FFFFFF;
  }
}

body.site.com_content.view-article .articleBody, body.site.com_content.view-article .back_to_news, body.site.com_artistdirectory .articleBody, body.site.com_artistdirectory .back_to_news {
  max-width: 850px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .articleBody, body.site.com_content.view-article .back_to_news, body.site.com_artistdirectory .articleBody, body.site.com_artistdirectory .back_to_news {
    padding: 0 0.5rem;
    max-width: 100%;
  }
}
body.site.com_content.view-article .back_to_news, body.site.com_artistdirectory .back_to_news {
  margin: 5rem auto 2.5rem auto;
  text-align: center;
  text-transform: uppercase;
}
body.site.com_content.view-article .back_to_news .bid__home--link, body.site.com_artistdirectory .back_to_news .bid__home--link {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.site.com_content.view-article .back_to_news .bid__home--link img, body.site.com_artistdirectory .back_to_news .bid__home--link img {
  margin-right: 13px;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .back_to_news, body.site.com_artistdirectory .back_to_news {
    display: flex;
    margin: 2rem auto 2rem auto;
  }
}
body.site.com_content.view-article .article-title h1, body.site.com_artistdirectory .article-title h1 {
  font-family: "Georgia", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .article-title h1, body.site.com_artistdirectory .article-title h1 {
    padding: 0 0.5rem;
    font-size: 32px;
    text-align: left;
  }
}
body.site.com_content.view-article .article-title .published-date, body.site.com_artistdirectory .article-title .published-date {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333333;
  font-family: "Arial", serif;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .article-title .published-date, body.site.com_artistdirectory .article-title .published-date {
    margin-bottom: 1.5rem;
  }
}
body.site.com_content.view-article .articleBody img, body.site.com_artistdirectory .articleBody img {
  max-width: 100%;
  height: auto;
}
body.site.com_content.view-article .articleBody img:first-child, body.site.com_artistdirectory .articleBody img:first-child {
  border-radius: 5px;
}
body.site.com_content.view-article .module-container, body.site.com_artistdirectory .module-container {
  margin-bottom: 3rem;
}
body.site.com_content.view-article .module-container .title, body.site.com_artistdirectory .module-container .title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.com_content.view-article .module-container a, body.site.com_artistdirectory .module-container a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.com_content.view-article .moduletable > h3, body.site.com_artistdirectory .moduletable > h3 {
  display: none;
}

/*================================================================================
$ FEATURED STORY/Article PB Addon
================================================================================*/
.news__featured--story {
  background-color: #FBFBF8;
  box-shadow: 0 0 0 0 #ffffff;
  padding: 3rem 0 0 0;
}
.news__featured--story .sppb-addon-content {
  width: 100%;
}
.news__featured--story .sppb-addon-content .featured-article {
  display: flex;
  align-items: center;
}
.news__featured--story .news__featured--container {
  max-width: 1240px;
  margin: 0 auto !important;
}
.news__featured--story .align-center {
  align-items: center !important;
}
.news__featured--story .news__featured--left-column {
  margin-left: 3rem;
  margin-right: -3rem;
}
.news__featured--story .news__featured--left-column img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1199px) {
  .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 799px) {
  .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
.news__featured--story .news__featured--right-column {
  padding-top: 3.5rem;
  padding-right: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 3.5rem;
  box-shadow: 0px 4px 16px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  margin-left: -3rem;
  margin-right: 3rem;
  flex: 1;
}
@media screen and (max-width: 1599px) {
  .news__featured--story .news__featured--right-column {
    margin: 0 3rem 0 -7rem;
  }
}
@media screen and (max-width: 1439px) {
  .news__featured--story .news__featured--right-column {
    margin: 0 3rem 0 -9rem;
  }
}
@media screen and (max-width: 1379px) {
  .news__featured--story .news__featured--right-column {
    margin: 0 3rem 0 -8rem;
  }
}
@media screen and (max-width: 1199px) {
  .news__featured--story .news__featured--right-column {
    margin: -30px 0 0 0;
  }
}
@media screen and (max-width: 799px) {
  .news__featured--story .news__featured--right-column {
    margin: -20px 0 0 0;
  }
}
@media screen and (max-width: 599px) {
  .news__featured--story .news__featured--right-column {
    padding: 2rem;
  }
}
.news__featured--story .news__featured--right-column .news__featured--title {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.news__featured--story .news__featured--right-column .news__featured--title .sppb-addon-content {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.news__featured--story .news__featured--right-column .featuredStoryTitle {
  font-size: 20px;
  font-weight: 400;
}
.news__featured--story .news__featured--right-column .sppb-article-introtext {
  margin: 30px 0;
}
.news__featured--story .news__featured--right-column h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1199px) {
  .news__featured--story .news__featured--right-column h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news__featured--story .news__featured--right-column h1 {
    font-size: 27px;
  }
}
.news__featured--story .news__featured--right-column h1 a {
  font-size: 50px;
  font-family: "Georgia", sans-serif;
  margin: 30px 0;
  font-weight: 400;
  color: #0B0A1D;
  text-transform: none;
}
.news__featured--story .news__featured--right-column h1 a:hover {
  color: #982065;
}
@media screen and (max-width: 1199px) {
  .news__featured--story .news__featured--right-column h1 a {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  .news__featured--story .news__featured--right-column h1 a {
    font-size: 27px;
  }
}
.news__featured--story .news__featured--right-column .news__story--content .sppb-addon-content, .news__featured--story .news__featured--right-column .news__story--content div {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.news__featured--story .news__featured--right-column a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news__featured--story .news__featured--right-column a.sppb-readmore::after {
  content: "";
  background: url("../images/icons/view-more-icon.svg") no-repeat;
  display: inline-flex;
  position: relative;
  width: 9px;
  height: 9px;
  margin-left: 10px;
}
@media (max-width: 575.98px) {
  .news__featured--story .news__featured--right-column a.sppb-readmore::after {
    background-size: contain;
  }
}

/* Roseberys News Front page

/*================================================================================
SECTIONS

- HOME LINK
- INTRO
- FEATURED STORY
- ARTICLES
- NEWS SEARCH ADDON - (MAIN NEWS PAGE)

================================================================================*/
body.site.com_cms.view-probate_news {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ INTRO
  ================================================================================*/
  /*================================================================================
  $ FEATURED STORY
  ================================================================================*/
  /*================================================================================
  $ NEWS SEARCH
  ================================================================================*/
  /*================================================================================
  $ ARTICLES SECTION
  ================================================================================*/
  /*================================================================================
  $ ARTICLES
  ================================================================================*/
  /*================================================================================
  $ NEWS SEARCH ADDON - (MAIN NEWS PAGE)
  ================================================================================*/
}
body.site.com_cms.view-probate_news .news__home--link {
  margin-top: 6rem;
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__home--link {
    margin-top: 2rem;
  }
}
body.site.com_cms.view-probate_news .news__home--link .bid__home--link {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.com_cms.view-probate_news .news__home--link .bid__home--link:hover {
  text-decoration: none;
}
body.site.com_cms.view-probate_news .news__home--link .bid__home--link img {
  margin-right: 1rem;
}
body.site.com_cms.view-probate_news .news__intro {
  margin-top: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__intro {
    margin-top: 2rem;
  }
}
body.site.com_cms.view-probate_news .news__intro h1, body.site.com_cms.view-probate_news .news__intro h2 {
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 3.8rem;
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__intro h1, body.site.com_cms.view-probate_news .news__intro h2 {
    font-size: 40px;
    line-height: 1.9rem;
  }
}
body.site.com_cms.view-probate_news .news__intro .sppb-addon-content, body.site.com_cms.view-probate_news .news__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 2rem auto;
  width: 50%;
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__intro .sppb-addon-content, body.site.com_cms.view-probate_news .news__intro p {
    width: 100%;
  }
}
body.site.com_cms.view-probate_news .news__featured--story {
  background-color: #FBFBF8;
  box-shadow: 0 0 0 0 #ffffff;
  padding: 3rem 1rem 0 1rem;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--container {
  max-width: 1240px;
  margin: 0 auto !important;
}
body.site.com_cms.view-probate_news .news__featured--story .align-center {
  align-items: center !important;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--left-column {
  margin-left: 3rem;
  margin-right: -3rem;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--left-column img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1199px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 799px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--left-column {
    margin: 0 !important;
  }
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column {
  padding-top: 3.5rem;
  padding-right: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: 3.5rem;
  box-shadow: 0px 4px 16px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  margin-left: -3rem;
  margin-right: 3rem;
}
@media screen and (max-width: 1199px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 799px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column {
    margin: 0 !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column {
    padding: 2rem;
  }
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column .news__featured--title {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column .news__featured--title .sppb-addon-content {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1199px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column h1 {
    font-size: 27px;
  }
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column .news__story--content .sppb-addon-content, body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column .news__story--content div {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
body.site.com_cms.view-probate_news .news__featured--story .news__featured--right-column a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.site.com_cms.view-probate_news .news_search {
  background-color: #FBFBF8;
  box-shadow: 0 0 0 0 #ffffff;
  padding: 1px 1rem 2rem 1rem;
}
body.site.com_cms.view-probate_news .articles__section {
  margin-top: 2rem;
}
body.site.com_cms.view-probate_news .articles__section > .container {
  max-width: 1500px !important;
}
@media screen and (max-width: 999px) {
  body.site.com_cms.view-probate_news .articles__section .container .row .col-sm-4 {
    width: 49.33333333%;
  }
}
@media screen and (max-width: 575px) {
  body.site.com_cms.view-probate_news .articles__section .container .row .col-sm-4 {
    width: 99.33333333%;
  }
}
body.site.com_cms.view-probate_news .news__articles {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  body.site.com_cms.view-probate_news .news__articles {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  body.site.com_cms.view-probate_news .news__articles {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__articles {
    margin-bottom: 15px;
  }
}
body.site.com_cms.view-probate_news .news__articles .article {
  width: 100%;
}
body.site.com_cms.view-probate_news .news__articles .article-info-wrap {
  display: flex;
  flex-direction: column;
}
@media (min-width: 834px) and (max-width: 1075px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  body.site.com_cms.view-probate_news .news__articles .article-info-wrap h3 span {
    display: -webkit-box;
    min-height: 43px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
body.site.com_cms.view-probate_news .news__articles .image {
  display: block;
}
body.site.com_cms.view-probate_news .news__articles .img {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  display: block;
  max-height: 300px;
  min-height: 300px;
  width: 100%;
}
body.site.com_cms.view-probate_news .news__articles img {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  max-height: 320px;
  min-height: 320px;
}
body.site.com_cms.view-probate_news .news__articles h3 {
  font-size: 20px;
  line-height: 1.2;
  min-height: 60px;
}
body.site.com_cms.view-probate_news .news__articles h3 a {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}
body.site.com_cms.view-probate_news .news__articles h3 a:hover {
  color: #982065;
  text-decoration: underline;
}
body.site.com_cms.view-probate_news .news__articles .sppb-meta-date,
body.site.com_cms.view-probate_news .news__articles .meta-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 12px;
  font-weight: 400;
  display: block;
}
body.site.com_cms.view-probate_news .news__articles .meta-category {
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 12px;
  text-transform: uppercase;
}
body.site.com_cms.view-probate_news .news__articles .sppb-readmore,
body.site.com_cms.view-probate_news .news__articles .btn-readmore {
  align-self: flex-start;
  padding: 0.8rem 2rem;
}
body.site.com_cms.view-probate_news .news__search--container {
  margin: 0 auto;
  margin-top: 3rem;
  max-width: 800px;
  position: relative;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article {
  position: relative;
}
@media screen and (max-width: 799px) {
  body.site.com_cms.view-probate_news .news__search--container .news__search--article {
    margin: 0 auto;
    margin-bottom: 1rem;
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__search--container .news__search--article {
    width: 80%;
  }
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  padding-left: 10px;
  width: 100%;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article input::-webkit-input-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article input:-moz-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article input::-moz-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article input:-ms-input-placeholder {
  color: #939393;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_cms.view-probate_news .news__search--container .news__search--article img {
  position: absolute;
  right: 22px;
  top: 8px;
}
@media screen and (max-width: 799px) {
  body.site.com_cms.view-probate_news .news__search--container .news__search--category {
    margin: 0 auto;
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  body.site.com_cms.view-probate_news .news__search--container .news__search--category {
    width: 80%;
  }
}
body.site.com_cms.view-probate_news .news__search--container .news__search--category select {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  padding-left: 10px;
  width: 100%;
  color: #982065;
}
body.site.com_cms.view-probate_news .pagination {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 3px 0px 3px 0;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 669px) {
  body.site.com_cms.view-probate_news .pagination {
    padding: 15px 0 30px 0;
    text-align: center;
    width: 100%;
  }
}
body.site.com_cms.view-probate_news .pagination .loading {
  float: right;
  position: absolute;
  right: 10px;
  top: 10px;
}
body.site.com_cms.view-probate_news .pagination .loading > svg {
  stroke: #29254e;
}
body.site.com_cms.view-probate_news .pagination .paginate-item {
  background-color: #F4F4F4;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  height: 32px;
  min-width: 32px;
  outline: none;
  padding: 5px 5px;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body.site.com_cms.view-probate_news .pagination .paginate-item > i, body.site.com_cms.view-probate_news .pagination .paginate-item > p {
  background-color: transparent;
  border: none;
  border-radius: 0;
  color: #000000;
  font-size: 15px;
  height: auto;
  left: 50%;
  margin: 0;
  max-width: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
body.site.com_cms.view-probate_news .pagination .paginate-item.item-number, body.site.com_cms.view-probate_news .pagination .paginate-item.first, body.site.com_cms.view-probate_news .pagination .paginate-item.previous, body.site.com_cms.view-probate_news .pagination .paginate-item.next, body.site.com_cms.view-probate_news .pagination .paginate-item.last {
  background-color: #F4F4F4;
  margin: 0 4px;
  position: relative;
  top: 1px;
}
body.site.com_cms.view-probate_news .pagination .paginate-item.active, body.site.com_cms.view-probate_news .pagination .paginate-item:hover {
  background-color: #982065;
  outline: none;
}
body.site.com_cms.view-probate_news .pagination .paginate-item.active > i, body.site.com_cms.view-probate_news .pagination .paginate-item.active > p, body.site.com_cms.view-probate_news .pagination .paginate-item:hover > i, body.site.com_cms.view-probate_news .pagination .paginate-item:hover > p {
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  body.site.com_cms.view-probate_news .pagination .paginate-item:hover {
    background-color: #F4F4F4 !important;
  }
  body.site.com_cms.view-probate_news .pagination .paginate-item:hover > i, body.site.com_cms.view-probate_news .pagination .paginate-item:hover > p {
    color: #000000;
  }
  body.site.com_cms.view-probate_news .pagination .paginate-item.active:hover {
    background-color: #982065 !important;
  }
  body.site.com_cms.view-probate_news .pagination .paginate-item.active:hover > i, body.site.com_cms.view-probate_news .pagination .paginate-item.active:hover > p {
    color: #FFFFFF;
  }
}

body.site.com_content.view-article .articleBody, body.site.com_content.view-article .back_to_news {
  max-width: 850px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .articleBody, body.site.com_content.view-article .back_to_news {
    padding: 0 0.5rem;
    max-width: 100%;
  }
}
body.site.com_content.view-article .back_to_news {
  margin: 5rem auto 2.5rem auto;
  text-align: center;
  text-transform: uppercase;
}
body.site.com_content.view-article .back_to_news .bid__home--link {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.site.com_content.view-article .back_to_news .bid__home--link img {
  margin-right: 13px;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .back_to_news {
    display: flex;
    margin: 2rem auto 2rem auto;
  }
}
body.site.com_content.view-article .article-title h1 {
  font-family: "Georgia", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .article-title h1 {
    padding: 0 0.5rem;
    font-size: 32px;
    text-align: left;
  }
}
body.site.com_content.view-article .article-title .published-date {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333333;
  font-family: "Arial", serif;
}
@media screen and (max-width: 599px) {
  body.site.com_content.view-article .article-title .published-date {
    margin-bottom: 1.5rem;
  }
}
body.site.com_content.view-article .articleBody img {
  max-width: 100%;
  height: auto;
}
body.site.com_content.view-article .articleBody img:first-child {
  border-radius: 5px;
}
body.site.com_content.view-article .module-container {
  margin-bottom: 3rem;
}
body.site.com_content.view-article .module-container .title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.com_content.view-article .module-container a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.com_content.view-article .moduletable > h3 {
  display: none;
}

/* Silverstone News Grid page


/*================================================================================
SECTIONS

- BANNER
- BREADCRUMB
- SUB-HEADING
- BACK TO TOP
-



================================================================================*/
.news__grid--container {
  font-family: "Georgia", sans-serif;
  /*================================================================================

  ================================================================================*/
}
.news__grid--container .news__grid--banner .news__grid--banner--title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 62%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
.news__grid--container .news__grid--banner .news__grid--banner-image {
  background-image: url("../../../images/banners/about-us-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
}
.news__grid--container .news__grid--content {
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
.news__grid--container .news__grid--content .news__grid--breadcrumb p {
  color: #982065;
  font-size: 16px;
  padding-top: 30px;
}
@media screen and (max-width: 416px) {
  .news__grid--container .news__grid--content .news__grid--breadcrumb p {
    padding-left: 10px;
  }
}
.news__grid--container .news__grid--content .news__grid--breadcrumb p a {
  color: #808080;
}
.news__grid--container .news__grid--content .news__grid--sub-heading h3 {
  color: #222E5B;
  padding-bottom: 60px;
  padding-top: 40px;
  text-transform: uppercase;
}
.news__grid--container .news__grid--content .news__grid--other-stories {
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__grid--container .news__grid--content .arrowInfo {
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__grid--container .news__grid--content .arrowInfo .news__grid--back-to-top {
  padding-top: 60px;
  padding-bottom: 60px;
}
.news__grid--container .news__grid--content .arrowInfo .news__grid--back-to-top .arrow-link-up {
  color: #808080;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  padding-right: 40px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.news__grid--container .news__grid--content .arrowInfo .news__grid--back-to-top .arrow-link-up::after {
  content: "";
  background: url(../../../images/icons/arrow-up.png) right top no-repeat transparent;
  height: 16px;
  position: absolute;
  right: 65px;
  top: -30px;
  width: 31px;
}
.news__grid--container .news__grid--content .arrowInfo .news__grid--back-to-top .arrow-link-up:hover {
  color: black;
  text-decoration: none;
}

.category-list {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 15px 50px 15px;
  width: 100%;
}
.category-list .news__grid--grid-overall .news__grid-content-info .news__grid--type-of-sale {
  background-color: #CB4E20;
  color: #FFFFFF;
  font-weight: 600;
  left: 10%;
  position: absolute;
  top: 50%;
  z-index: 50;
}
.category-list .news__grid--grid-overall .news__grid-content-info .news__grid-published {
  color: white;
  left: 10%;
  position: absolute;
  top: 58%;
  z-index: 50;
}
.category-list .news__grid--grid-overall .news__grid-content-info .news__grid--brief-outline {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  left: 10%;
  position: absolute;
  text-transform: uppercase;
  top: 65%;
  width: 70%;
  z-index: 50;
}
.category-list .news__grid--grid-overall .news__grid-content-info .news__grid--background-image {
  background-image: url("../../../images/news/grid-one.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
  z-index: 0;
}

/* Roseberys FAQS page

/*================================================================================
SECTIONS

- HOME LINK
- FAQS INTRO
- FAQS

================================================================================*/
body.site.faqs {
  /*================================================================================
     $ HOME LINK
     ================================================================================*/
  /*================================================================================
     $ FAQS INTRO
     ================================================================================*/
  /*================================================================================
     $ FAQS
     ================================================================================*/
}
body.site.faqs .faqs__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.faqs .faqs__home--link img {
  margin-right: 1rem;
  width: 2%;
}
body.site.faqs .faqs__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.faqs .faqs__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
body.site.faqs .faqs__intro .faqs__contactBtn {
  padding: 0.2rem 4rem;
}
body.site.faqs .faqs__general--faqs, body.site.faqs .faqs__buying--faqs, body.site.faqs .faqs__selling--faqs {
  width: 60%;
}
@media screen and (max-width: 799px) {
  body.site.faqs .faqs__general--faqs, body.site.faqs .faqs__buying--faqs, body.site.faqs .faqs__selling--faqs {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  body.site.faqs .faqs__general--faqs, body.site.faqs .faqs__buying--faqs, body.site.faqs .faqs__selling--faqs {
    width: 100%;
  }
}
body.site.faqs .faqs__general--faqs h3, body.site.faqs .faqs__buying--faqs h3, body.site.faqs .faqs__selling--faqs h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.faqs .faqs__general--faqs .sppb-panel-title, body.site.faqs .faqs__buying--faqs .sppb-panel-title, body.site.faqs .faqs__selling--faqs .sppb-panel-title {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 25px;
  font-weight: 400;
}
body.site.faqs .faqs__general--faqs .sppb-addon-content p, body.site.faqs .faqs__buying--faqs .sppb-addon-content p, body.site.faqs .faqs__selling--faqs .sppb-addon-content p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}

/* ====== CMS ====== */
/* ======
CMS
	- General
	- Accordion
	- News Articles banner
	- Trustpilot - Testimony

====== */
/*================================================================================
$ GENERAL
================================================================================*/
#sp-page-builder .landing-page-content-container .sppb-section-title {
  margin: 0;
}
#sp-page-builder .landing-page-content-container .sppb-addon-text-block .sppb-addon-content > p {
  font-size: 16px;
}
#sp-page-builder .sppb-addon-single-image.full-width-image {
  width: 100%;
}
#sp-page-builder .sppb-addon-single-image.full-width-image .sppb-addon-single-image-container,
#sp-page-builder .sppb-addon-single-image.full-width-image .sppb-addon-single-image-container > img {
  width: 100%;
}

.ffp-feed-header-cover {
  padding-top: 75px !important;
}

/*================================================================================
$ ACCORDION
================================================================================*/
/* General Accordion Styling */
.accordion-container .accordion__tab {
  float: left;
  width: 100%;
  padding-bottom: 10px;
}
.accordion-container .accordion__tab.active .accordion__tab__title {
  border-bottom: 0px;
}
.accordion-container .accordion__tab.active .accordion__tab__content {
  border-left: 2px solid #E5E5E5;
  border-bottom: 2px solid #E5E5E5;
  border-right: 2px solid #E5E5E5;
  max-height: 3500px;
  margin-top: -5px;
  max-height: 3500px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-top: 20px;
}
@media screen and (max-width: 770px) {
  .accordion-container .accordion__tab.active .accordion__tab__content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .accordion-container .accordion__tab.active .accordion__tab__content {
    padding-left: 10px;
  }
}
.accordion-container .accordion__tab.active .accordion__tab__content .section-headings {
  font-size: 14px;
  font-weight: 700;
  font-family: "Georgia", sans-serif;
  color: #8f8f8f;
}
.accordion-container .accordion__tab.active .accordion__tab__content > p {
  color: #000000;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 10px;
  padding-right: 20px;
}
@media screen and (max-width: 599px) {
  .accordion-container .accordion__tab.active .accordion__tab__content > p {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.accordion-container .accordion__tab.active .accordion__tab__content > p > span {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  font-family: "Georgia", sans-serif;
  color: #000000;
}
.accordion-container .accordion__tab__title {
  background-color: #FFFFFF;
  cursor: pointer;
  float: left;
  width: 100%;
  border: 2px solid #E5E5E5;
  margin-bottom: 5px;
  padding: 10px;
  position: relative;
}
.accordion-container .accordion__tab__title > p {
  font-size: 20px;
  font-weight: 700;
  font-family: "Georgia", sans-serif;
  color: #982065;
  margin-bottom: 0px;
  padding: 30px;
}
@media screen and (max-width: 770px) {
  .accordion-container .accordion__tab__title > p {
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .accordion-container .accordion__tab__title > p {
    font-size: 15px;
  }
}
.accordion-container .accordion__tab__title > p .arrow-rotate-span {
  background-image: url("../../../images/icons/arrow-down.png");
  background-size: 20px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  position: absolute;
  right: 56px;
  top: 50px;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .accordion-container .accordion__tab__title > p .arrow-rotate-span {
    right: 12px;
  }
}
.accordion-container .accordion__tab__content {
  float: left;
  max-height: 0;
  overflow: hidden;
  width: 100%;
}
.accordion-container .accordion__tab__content ul li {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #8f8f8f;
  list-style-type: disc;
  padding-bottom: 10px;
  margin-left: 20px;
  line-height: 1.5;
}

/*================================================================================
$ NEWS ARTICLES - BANNER
================================================================================*/
.news__articles--banner {
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .news__articles--banner {
    height: 450px;
    background-position: center;
  }
}

.news__articles--banner--title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 41%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .news__articles--banner--title {
    font-size: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 416px) {
  .news__articles--banner--title {
    top: 31%;
  }
}

.news__articles--sub-heading-top-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 49%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 770px) {
  .news__articles--sub-heading-top-line {
    top: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 416px) {
  .news__articles--sub-heading-top-line {
    top: 37%;
  }
}

.news__articles--sub-heading-second-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 53%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 770px) {
  .news__articles--sub-heading-second-line {
    top: 57%;
    text-align: center;
  }
}
@media screen and (max-width: 416px) {
  .news__articles--sub-heading-second-line {
    top: 58%;
  }
}

.news__articles--sub-heading-third-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 57%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 770px) {
  .news__articles--sub-heading-third-line {
    top: 64%;
    text-align: center;
  }
}
@media screen and (max-width: 416px) {
  .news__articles--sub-heading-third-line {
    top: 79%;
  }
}

/*================================================================================
$ NEWS ARTICLES -
================================================================================*/
body.com_sppagebuilder.news .sppb-addon-article .sppb-article-meta .sppb-meta-category a {
  display: none;
}

/*================================================================================
$ TRUSTPILOT - TESTIMONY PAGE
================================================================================*/
body.testimonials .trustpilot-widget {
  margin-top: 20px;
}

/* Silverstone Thank You page


/*================================================================================
SECTIONS

- THANK YOU VALUE MY CLASSIC PAGE
- THANK YOU SUBMIT MY ENTRY PAGE

- BANNER
- FAQS

================================================================================*/
/*================================================================================
THANK YOU - VALUE MY CLASSIC
================================================================================*/
.thank__you--value-classic--banner {
  background-image: linear-gradient(to right, rgba(2, 8, 29, 0.4), rgba(2, 8, 29, 0.78)), url("../../../images/banners/thanks-value-classic-banner.png");
  background-size: cover;
  background-position: 10% 10%;
  background-repeat: no-repeat;
  height: 550px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .thank__you--value-classic--banner {
    height: 450px;
    background-position: center;
  }
}

.thank__you--value-classic--banner--title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 41%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--value-classic--banner--title {
    font-size: 25px;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .thank__you--value-classic--banner--title {
    font-size: 20px;
  }
}

.thank__you--value-classic--sub-heading-top-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 52%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--value-classic--sub-heading-top-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--value-classic--sub-heading-top-line {
    top: 54%;
  }
}

.thank__you--value-classic--sub-heading-second-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 56%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--value-classic--sub-heading-second-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--value-classic--sub-heading-second-line {
    top: 59%;
  }
}
@media screen and (max-width: 416px) {
  .thank__you--value-classic--sub-heading-second-line {
    top: 65%;
  }
}

.thank__you--value-classic--sub-heading-third-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--value-classic--sub-heading-third-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--value-classic--sub-heading-third-line {
    top: 76%;
  }
}
.thank__you--value-classic--sub-heading-third-line > a {
  color: #A68F65;
  font-weight: bold;
  text-decoration: underline;
}

/*================================================================================
THANK YOU - SUBMIT MY ENTRY
================================================================================*/
.thank__you--submit--entry--banner {
  background-image: url("../../../images/banners/thanks-submit-entry-banner.png");
  background-size: cover;
  background-position: 10% 10%;
  background-repeat: no-repeat;
  height: 550px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .thank__you--submit--entry--banner {
    height: 450px;
    background-position: center;
  }
}

.thank__you--submit--entry--banner--title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 41%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--submit--entry--banner--title {
    font-size: 25px;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 770px) {
  .thank__you--submit--entry--banner--title {
    font-size: 20px;
  }
}

.thank__you--submit--entry--sub-heading-top-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 52%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--submit--entry--sub-heading-top-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--submit--entry--sub-heading-top-line {
    top: 54%;
  }
}

.thank__you--submit--entry--sub-heading-second-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 56%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--submit--entry--sub-heading-second-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--submit--entry--sub-heading-second-line {
    top: 59%;
  }
}
@media screen and (max-width: 416px) {
  .thank__you--submit--entry--sub-heading-second-line {
    top: 65%;
  }
}

.thank__you--submit--entry--sub-heading-third-line {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 16px;
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .thank__you--submit--entry--sub-heading-third-line {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .thank__you--submit--entry--sub-heading-third-line {
    top: 65%;
  }
}
@media screen and (max-width: 449px) {
  .thank__you--submit--entry--sub-heading-third-line {
    top: 76%;
  }
}
.thank__you--submit--entry--sub-heading-third-line > a {
  color: #A68F65;
  font-weight: bold;
  text-decoration: underline;
}

/* ====== 404 ====== */
/* ======
404
	- General
====== */
/*================================================================================
$ GENERAL
================================================================================*/
.noroute__container {
  font-family: "Georgia", sans-serif;
}
.noroute__container .noroute__banner .noroute__banner--title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 62%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
.noroute__container .noroute__banner .noroute__banner--banner-image {
  background-image: url("../../../images/banners/Contact-Banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 340px;
  position: relative;
}

/* ====== Other Pages ====== */
/* ======
About/History/Staff
	- General
====== */
/*================================================================================
$ About/History/Staff/Contact
================================================================================*/
.passionate-about-jewellry {
  z-index: 9;
}
@media (min-width: 1200px) {
  .passionate-about-jewellry {
    width: 600px;
  }
}

.contact-form label {
  font-weight: 600;
}
.contact-form label span.sppb-field-required {
  color: #982065;
}

/*================================================================================
$ Jewel/Brand Guide
================================================================================*/
@media (max-width: 575.98px) {
  h2.sppb-addon-title br {
    display: none;
  }
}

/*================================================================================
$ Black Membership
================================================================================*/
@media (max-width: 575.98px) {
  .auction-preview h2.sppb-addon-title {
    text-align: left;
  }
}

/*================================================================================
$ Careers
================================================================================*/
@media (max-width: 575.98px) {
  .careers h2.sppb-addon-title {
    text-align: left;
  }
}
/*================================================================================
$ Departments
================================================================================*/
@media (max-width: 575.98px) {
  .currently-consigning h2.sppb-addon-title {
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .departments-experts h3.sppb-addon-title {
    text-align: center;
  }
}

.stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 575.98px) {
  .stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 {
    order: 1;
  }
}
.stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 .sppb-carousel-pro-text {
  position: absolute;
  width: 600px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 .sppb-carousel-pro-text {
    padding: 15px;
    position: relative;
    width: auto;
    display: flex;
    flex-direction: column;
  }
}
.stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 .sppb-carousel-pro-text .sppb-carousel-pro-content p.date {
  font-size: 16px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #982065;
  margin-top: 20px;
}
.stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 .sppb-carousel-pro-text a.sppb-btn-custom {
  margin-top: 40px;
}
.stories-our-experts-carousel .sppb-carousel-pro-inner-content .sppb-col-sm-5 .sppb-carousel-pro-text a.sppb-btn-custom .fa-angle-right::before {
  content: "";
  background: url("../images/icons/continue-reading-icon.svg") no-repeat;
  display: inline-flex;
  position: relative;
  width: 9px;
  height: 12px;
  margin-left: 5px;
  display: flex;
  top: 1px;
}
@media (max-width: 575.98px) {
  .stories-our-experts-carousel .sppb-carousel-indicators {
    margin-bottom: -60px;
  }
}
.stories-our-experts-carousel .sppb-carousel-pro-arrow-bottom-right {
  max-width: 100%;
}
@media (max-width: 575.98px) {
  .stories-our-experts-carousel .sppb-carousel-pro-arrow-bottom-right {
    margin-bottom: -40px;
    position: relative;
  }
}
.stories-our-experts-carousel .sppb-carousel-pro-arrow-bottom-right .sppb-carousel-arrow.right .fa-arrow-circle-o-right::before {
  content: "";
  background: url("../images/icons/stories-carousel-nav-icon.svg") no-repeat;
  display: inline-flex;
  position: relative;
  width: 41px;
  height: 41px;
  display: flex;
}
.stories-our-experts-carousel .sppb-carousel-pro-arrow-bottom-right .sppb-carousel-arrow.left .fa-arrow-circle-o-left::before {
  transform: rotate(-180deg);
  content: "";
  background: url("../images/icons/stories-carousel-nav-icon.svg") no-repeat;
  display: inline-flex;
  position: relative;
  width: 41px;
  height: 41px;
  display: flex;
}

/*================================================================================
$ Recent Articles
================================================================================*/
#recent-articles-section .sppb-addon-articles .sppb-addon-article {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  float: left;
  padding: 20px;
}
@media (max-width: 576px) {
  #recent-articles-section .sppb-addon-articles .sppb-addon-article {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-img-wrap img {
  height: 265px;
  float: left;
  max-width: 280px;
  width: 280px;
  object-fit: cover;
}
@media (max-width: 576px) {
  #recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-img-wrap img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap {
  float: left;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap h3 {
  font-size: 18px;
  font-weight: 400;
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap h3 a {
  color: #000;
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap .sppb-article-introtext {
  color: #969696;
}
#recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap a.sppb-readmore {
  justify-content: flex-start;
}
@media (max-width: 576px) {
  #recent-articles-section .sppb-addon-articles .sppb-addon-article .sppb-article-info-wrap a.sppb-readmore {
    justify-content: flex-end;
  }
}

/*================================================================================
$ Selling / Valuation
================================================================================*/
.valuations__form-container h3 {
  font-size: 20px;
}
.valuations__form-container .valuations__form-block label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
.valuations__form-container .valuations__form-block label sup {
  color: #982065;
  font-weight: 600;
  font-size: 14px;
  top: 0;
}
.valuations__form-container .valuations__form-block.input-group > .form-control, .valuations__form-container .valuations__form-block.input-group > .form-select {
  width: 100%;
  border-radius: 0;
}
.valuations__form-container .valuations__form-block.input-group > input[type=text].form-control, .valuations__form-container .valuations__form-block.input-group > input[type=email].form-control, .valuations__form-container .valuations__form-block.input-group > .form-select {
  height: 50px;
}
.valuations__form-container .valuations__item-details .form-check label.form-check-label,
.valuations__form-container .valuations__item-extra-info .form-check label.form-check-label {
  font-weight: 500;
  font-size: 16px;
}
.valuations__form-container .valuations__submit-btn {
  display: flex;
  justify-content: center;
}
.valuations__form-container .valuations__submit-btn button[type=submit] {
  height: 45px;
  width: 215px;
}

/*================================================================================
$ Buying
================================================================================*/
@media (max-width: 575.98px) {
  .buying-page #sp-page-builder .buying-tabs .sppb-nav-lines > li > a {
    padding: 13px 8px;
  }
}
@media screen and (max-width: 399px) {
  .buying-page #sp-page-builder .buying-tabs .sppb-nav-lines > li > a {
    padding: 13px 5px;
  }
}
@media screen and (max-width: 375px) {
  .buying-page #sp-page-builder .buying-tabs .sppb-nav-lines > li > a {
    padding: 13px 4px;
  }
}
@media (max-width: 575.98px) {
  .buying-page .book-a-viewing .sppb-text-right {
    text-align: left;
  }
}

/*================================================================================
$ VIDEO VALUATION SERVICE
================================================================================*/
body.site .video__intro .generic__home-link img, .video-valuations-service .video__intro .generic__home-link img {
  margin-right: 1rem;
}
body.site .video__intro .generic__home-link a, .video-valuations-service .video__intro .generic__home-link a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  text-align: uppercase;
}
body.site .video__intro .generic__home-link a:hover, .video-valuations-service .video__intro .generic__home-link a:hover {
  text-decoration: none;
}
body.site .video__intro h2, .video-valuations-service .video__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 799px) {
  body.site .video__intro h2, .video-valuations-service .video__intro h2 {
    font-size: 40px;
  }
}
body.site .video__buttons .button__container, .video-valuations-service .video__buttons .button__container {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  body.site .video__buttons .button__container, .video-valuations-service .video__buttons .button__container {
    flex-direction: column;
  }
}
body.site .video__buttons .button__container a, .video-valuations-service .video__buttons .button__container a {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-right: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  width: 25%;
}
@media screen and (max-width: 1199px) {
  body.site .video__buttons .button__container a, .video-valuations-service .video__buttons .button__container a {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 799px) {
  body.site .video__buttons .button__container a, .video-valuations-service .video__buttons .button__container a {
    padding-top: 0.9rem;
  }
}
@media screen and (max-width: 599px) {
  body.site .video__buttons .button__container a, .video-valuations-service .video__buttons .button__container a {
    margin-bottom: 1rem;
    width: 100%;
  }
}

/* FIND US */
/*================================================================================
SECTIONS

- HOME LINK
- LOCATION INFO 
- CONTACT FORM (RIGHT-SIDE)
- UPCOMING AUCTIONS

================================================================================*/
body.site.find-us {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ LOCATION INFO 
  ================================================================================*/
  /*================================================================================
  $ CONTACT FORM (RIGHT-SIDE)
  ================================================================================*/
  /*================================================================================
  $ UPCOMING AUCTIONS
  ================================================================================*/
}
body.site.find-us .find__home--link a.find__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.find-us .find__home--link a.find__home--link img {
  margin-right: 1rem;
  width: 2%;
}
body.site.find-us .find__location .find__transport {
  width: 80%;
}
@media screen and (max-width: 599px) {
  body.site.find-us .find__location .find__transport {
    width: 100%;
  }
}
body.site.find-us .find__location .find__transport h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.find-us .find__location .find__transport h2 {
    font-size: 40px;
  }
}
body.site.find-us .find__location .find__transport .find__intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 400;
}
body.site.find-us .find__location .find__transport p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__location .find__transport h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-top: 1rem;
}
body.site.find-us .find__location .find__transport a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding-right: 0.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1549px) {
  body.site.find-us .find__location .gmap_canvas {
    width: 400px;
  }
}
@media screen and (max-width: 799px) {
  body.site.find-us .find__location .gmap_canvas {
    width: 600px;
  }
}
@media screen and (max-width: 599px) {
  body.site.find-us .find__location .gmap_canvas {
    width: 500px;
  }
}
@media screen and (max-width: 416px) {
  body.site.find-us .find__location .gmap_canvas {
    width: 380px;
  }
}
body.site.find-us .find__contact--form h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.find-us .find__contact--form h2 {
    font-size: 40px;
  }
}
body.site.find-us .find__contact--form p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form ul {
  padding-left: 0;
}
body.site.find-us .find__contact--form ul li {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  list-style-type: none;
  padding-left: 60px;
}
body.site.find-us .find__contact--form ul li img {
  margin-right: 1rem;
  max-width: 40px;
  width: 100%;
}
body.site.find-us .find__contact--form a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 35%;
}
@media screen and (max-width: 1026px) {
  body.site.find-us .find__contact--form a {
    width: 50%;
  }
}
@media screen and (max-width: 799px) {
  body.site.find-us .find__contact--form a {
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  body.site.find-us .find__contact--form a {
    margin-left: 10px;
    width: 50%;
  }
}
body.site.find-us .find__contact--form .contact__right--side {
  background-color: #FBF8F8;
  padding: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.find-us .find__contact--form .contact__right--side {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
}
body.site.find-us .find__contact--form .contact__right--side h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container label {
  color: #0B0A1D !important;
  font-family: "Arial", serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container input {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container input::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container input:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container input::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container input:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container textarea {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container textarea::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container textarea:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container textarea::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container textarea:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container .sppb-text-success {
  color: #2FB400;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1rem;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container span {
  color: #BA2B2B;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1rem;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container .sppb-form-check-label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container .sppb-form-check-label:before {
  border: 2px solid #982065;
}
body.site.find-us .find__contact--form .contact__right--side .contact__form--container .started-btn-contact {
  margin-top: 3rem;
}
/* BID LIVE ONLINE */
/*================================================================================
SECTIONS

- HOME LINK
- BID INTRO
- FAQS

================================================================================*/
body.site.bid-live-online {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ BID INTRO
  ================================================================================*/
  /*================================================================================
  $ FAQS
  ================================================================================*/
}
body.site.bid-live-online .bid__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.bid-live-online .bid__home--link img {
  margin-right: 1rem;
  width: 2%;
}
body.site.bid-live-online .bid__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
body.site.bid-live-online .bid__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 3rem;
}
body.site.bid-live-online .bid__intro a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.bid-live-online .bid__intro .bid__registerBtn {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 35%;
}
body.site.bid-live-online .bid__faqs--title h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.bid-live-online .bid__faqs--title h2 {
    font-size: 30px;
  }
}
body.site.bid-live-online .bid__registration--faqs, body.site.bid-live-online .bid__bidding--faqs, body.site.bid-live-online .bid__absentee--faqs, body.site.bid-live-online .bid__video--faqs {
  width: 60%;
}
@media screen and (max-width: 799px) {
  body.site.bid-live-online .bid__registration--faqs, body.site.bid-live-online .bid__bidding--faqs, body.site.bid-live-online .bid__absentee--faqs, body.site.bid-live-online .bid__video--faqs {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  body.site.bid-live-online .bid__registration--faqs, body.site.bid-live-online .bid__bidding--faqs, body.site.bid-live-online .bid__absentee--faqs, body.site.bid-live-online .bid__video--faqs {
    width: 100%;
  }
}
body.site.bid-live-online .bid__registration--faqs h3, body.site.bid-live-online .bid__bidding--faqs h3, body.site.bid-live-online .bid__absentee--faqs h3, body.site.bid-live-online .bid__video--faqs h3 {
  color: #982065;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.bid-live-online .bid__registration--faqs .sppb-panel-title, body.site.bid-live-online .bid__bidding--faqs .sppb-panel-title, body.site.bid-live-online .bid__absentee--faqs .sppb-panel-title, body.site.bid-live-online .bid__video--faqs .sppb-panel-title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 25px;
  font-weight: 400;
}
body.site.bid-live-online .bid__registration--faqs .sppb-addon-content p, body.site.bid-live-online .bid__bidding--faqs .sppb-addon-content p, body.site.bid-live-online .bid__absentee--faqs .sppb-addon-content p, body.site.bid-live-online .bid__video--faqs .sppb-addon-content p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}

/* OUR DEPARTMENTS */
/*================================================================================
SECTIONS

- HOME LINK
- DEPARTMENTS INTO
- DEPARTMENTS GRID
- DEPARTMENT GRID - DOUBLE-LINES

================================================================================*/
body.site.departments {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ DEPARTMENT INTRO
  ================================================================================*/
  /*================================================================================
  $ DEPARTMENT GRID
  ================================================================================*/
}
body.site.departments .department__home--link a.department__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
body.site.departments .department__home--link a.department__home--link img {
  margin-right: 1rem;
}
body.site.departments .department__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__intro h2 {
    font-size: 40px;
  }
}
body.site.departments .department__intro h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__intro h1 {
    font-size: 40px;
  }
}
body.site.departments .department__intro .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
  width: 52%;
  text-align: justify;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__intro .sppb-addon-content {
    width: 100%;
  }
}
body.site.departments .department__grid {
  /*================================================================================
  $ DEPARTMENT GRID - DOUBLE-LINES
  ================================================================================*/
}
body.site.departments .department__grid .sppb-addon-single-image-container {
  display: block;
  width: 100%;
}
body.site.departments .department__grid .sppb-addon-single-image-container > a {
  display: block;
}
body.site.departments .department__grid .sppb-img-responsive {
  border-radius: 5px;
  display: block;
  height: 300px;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .sppb-img-responsive {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  body.site.departments .department__grid .sppb-img-responsive {
    height: 170px;
  }
}
body.site.departments .department__grid .department__grid__text {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
body.site.departments .department__grid .full-btn-dept {
  border-radius: 5px;
  height: 300px;
  padding: 10px;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .full-btn-dept {
    height: 250px;
  }
}
@media screen and (max-width: 599px) {
  body.site.departments .department__grid .full-btn-dept {
    height: 170px;
  }
}
body.site.departments .department__grid .department__content {
  align-items: flex-end;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 11%, rgba(32, 22, 22, 0.81) 100%);
  border-radius: 0 0 5px 5px;
  display: flex;
  height: 230px;
  justify-content: space-between;
  opacity: 1;
  padding: 1rem;
  position: relative;
  z-index: 60;
}
@media screen and (max-width: 1199px) {
  body.site.departments .department__grid .department__content {
    padding: 0.8rem;
  }
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .department__content {
    height: 170px;
    width: 100%;
  }
}
body.site.departments .department__grid .department__content p {
  color: #FFFFFF;
  display: inline;
  font-family: "Georgia", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0rem;
}
body.site.departments .department__grid .department__content a {
  color: #FFFFFF;
  float: right;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  min-width: 90px;
}
body.site.departments .department__grid .department__content a:hover {
  text-decoration: none;
}
body.site.departments .department__grid .department__content a img {
  padding-left: 1rem;
}
body.site.departments .department__grid .department__double--explore {
  align-items: flex-end;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 11%, rgba(32, 22, 22, 0.81) 100%);
  border-radius: 0 0 5px 5px;
  display: flex;
  height: 230px;
  justify-content: space-between;
  opacity: 1;
  padding: 1rem;
  position: relative;
  z-index: 60;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .department__double--explore {
    height: 170px;
    width: 100%;
  }
}
body.site.departments .department__grid .department__double--explore p {
  color: #FFFFFF;
  display: inline;
  font-family: "Georgia", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0rem;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .department__double--explore p {
    font-size: 25px;
  }
}
body.site.departments .department__grid .department__double--explore .department__content--width {
  display: block;
  width: 70%;
}
@media screen and (max-width: 799px) {
  body.site.departments .department__grid .department__double--explore .department__content--width {
    width: 80%;
  }
}
body.site.departments .department__grid .department__double--explore a {
  color: #FFFFFF;
  float: right;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  min-width: 90px;
  text-transform: uppercase;
}
body.site.departments .department__grid .department__double--explore a:hover {
  text-decoration: none;
}
body.site.departments .department__grid .department__double--explore a img {
  padding-left: 1rem;
}

/* DEPARTMENT TEMPLATE */
/*================================================================================
SECTIONS

- TEMPLATE TOP ROW
- SPECIALIST SECTION

================================================================================*/
body.site.department-template-old-masters .container-fluid, body.site.department-template-old-masters .container-sm, body.site.department-template-old-masters .container-md, body.site.department-template-old-masters .container-lg, body.site.department-template-old-masters .container-xl, body.site.department-template-old-masters .container-xxl,
.department-template-jewellery .container-fluid,
.department-template-jewellery .container-sm,
.department-template-jewellery .container-md,
.department-template-jewellery .container-lg,
.department-template-jewellery .container-xl,
.department-template-jewellery .container-xxl,
.department-template-antiquities .container-fluid,
.department-template-antiquities .container-sm,
.department-template-antiquities .container-md,
.department-template-antiquities .container-lg,
.department-template-antiquities .container-xl,
.department-template-antiquities .container-xxl,
.department-template-chinese .container-fluid,
.department-template-chinese .container-sm,
.department-template-chinese .container-md,
.department-template-chinese .container-lg,
.department-template-chinese .container-xl,
.department-template-chinese .container-xxl,
.department-template-furniture .container-fluid,
.department-template-furniture .container-sm,
.department-template-furniture .container-md,
.department-template-furniture .container-lg,
.department-template-furniture .container-xl,
.department-template-furniture .container-xxl,
.department-template-design .container-fluid,
.department-template-design .container-sm,
.department-template-design .container-md,
.department-template-design .container-lg,
.department-template-design .container-xl,
.department-template-design .container-xxl,
.department-template-prints .container-fluid,
.department-template-prints .container-sm,
.department-template-prints .container-md,
.department-template-prints .container-lg,
.department-template-prints .container-xl,
.department-template-prints .container-xxl,
.department-template-modern-home .container-fluid,
.department-template-modern-home .container-sm,
.department-template-modern-home .container-md,
.department-template-modern-home .container-lg,
.department-template-modern-home .container-xl,
.department-template-modern-home .container-xxl,
.department-template-sculpture .container-fluid,
.department-template-sculpture .container-sm,
.department-template-sculpture .container-md,
.department-template-sculpture .container-lg,
.department-template-sculpture .container-xl,
.department-template-sculpture .container-xxl,
.department-template-valuations .container-fluid,
.department-template-valuations .container-sm,
.department-template-valuations .container-md,
.department-template-valuations .container-lg,
.department-template-valuations .container-xl,
.department-template-valuations .container-xxl,
.department-template-ceramics .container-fluid,
.department-template-ceramics .container-sm,
.department-template-ceramics .container-md,
.department-template-ceramics .container-lg,
.department-template-ceramics .container-xl,
.department-template-ceramics .container-xxl,
.department-template-decorative .container-fluid,
.department-template-decorative .container-sm,
.department-template-decorative .container-md,
.department-template-decorative .container-lg,
.department-template-decorative .container-xl,
.department-template-decorative .container-xxl,
.department-template-islamic .container-fluid,
.department-template-islamic .container-sm,
.department-template-islamic .container-md,
.department-template-islamic .container-lg,
.department-template-islamic .container-xl,
.department-template-islamic .container-xxl,
.department-template-british .container-fluid,
.department-template-british .container-sm,
.department-template-british .container-md,
.department-template-british .container-lg,
.department-template-british .container-xl,
.department-template-british .container-xxl,
.department-template-silver .container-fluid,
.department-template-silver .container-sm,
.department-template-silver .container-md,
.department-template-silver .container-lg,
.department-template-silver .container-xl,
.department-template-silver .container-xxl,
.department-template-watches .container-fluid,
.department-template-watches .container-sm,
.department-template-watches .container-md,
.department-template-watches .container-lg,
.department-template-watches .container-xl,
.department-template-watches .container-xxl,
.department-template-owner .container-fluid,
.department-template-owner .container-sm,
.department-template-owner .container-md,
.department-template-owner .container-lg,
.department-template-owner .container-xl,
.department-template-owner .container-xxl,
.department-template-wine .container-fluid,
.department-template-wine .container-sm,
.department-template-wine .container-md,
.department-template-wine .container-lg,
.department-template-wine .container-xl,
.department-template-wine .container-xxl,
.department-template-studio-pottery .container-fluid,
.department-template-studio-pottery .container-sm,
.department-template-studio-pottery .container-md,
.department-template-studio-pottery .container-lg,
.department-template-studio-pottery .container-xl,
.department-template-studio-pottery .container-xxl,
.single-owner-collections .container-fluid,
.single-owner-collections .container-sm,
.single-owner-collections .container-md,
.single-owner-collections .container-lg,
.single-owner-collections .container-xl,
.single-owner-collections .container-xxl,
.delivery-information .container-fluid,
.delivery-information .container-sm,
.delivery-information .container-md,
.delivery-information .container-lg,
.delivery-information .container-xl,
.delivery-information .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ TOP ROW
  ================================================================================*/
  /*================================================================================
  $ DEPARTMENT SPECIALIST
  ================================================================================*/
}
@media screen and (max-width: 416px) {
  body.site.department-template-old-masters .container-fluid .department__banner, body.site.department-template-old-masters .container-sm .department__banner, body.site.department-template-old-masters .container-md .department__banner, body.site.department-template-old-masters .container-lg .department__banner, body.site.department-template-old-masters .container-xl .department__banner, body.site.department-template-old-masters .container-xxl .department__banner,
  .department-template-jewellery .container-fluid .department__banner,
  .department-template-jewellery .container-sm .department__banner,
  .department-template-jewellery .container-md .department__banner,
  .department-template-jewellery .container-lg .department__banner,
  .department-template-jewellery .container-xl .department__banner,
  .department-template-jewellery .container-xxl .department__banner,
  .department-template-antiquities .container-fluid .department__banner,
  .department-template-antiquities .container-sm .department__banner,
  .department-template-antiquities .container-md .department__banner,
  .department-template-antiquities .container-lg .department__banner,
  .department-template-antiquities .container-xl .department__banner,
  .department-template-antiquities .container-xxl .department__banner,
  .department-template-chinese .container-fluid .department__banner,
  .department-template-chinese .container-sm .department__banner,
  .department-template-chinese .container-md .department__banner,
  .department-template-chinese .container-lg .department__banner,
  .department-template-chinese .container-xl .department__banner,
  .department-template-chinese .container-xxl .department__banner,
  .department-template-furniture .container-fluid .department__banner,
  .department-template-furniture .container-sm .department__banner,
  .department-template-furniture .container-md .department__banner,
  .department-template-furniture .container-lg .department__banner,
  .department-template-furniture .container-xl .department__banner,
  .department-template-furniture .container-xxl .department__banner,
  .department-template-design .container-fluid .department__banner,
  .department-template-design .container-sm .department__banner,
  .department-template-design .container-md .department__banner,
  .department-template-design .container-lg .department__banner,
  .department-template-design .container-xl .department__banner,
  .department-template-design .container-xxl .department__banner,
  .department-template-prints .container-fluid .department__banner,
  .department-template-prints .container-sm .department__banner,
  .department-template-prints .container-md .department__banner,
  .department-template-prints .container-lg .department__banner,
  .department-template-prints .container-xl .department__banner,
  .department-template-prints .container-xxl .department__banner,
  .department-template-modern-home .container-fluid .department__banner,
  .department-template-modern-home .container-sm .department__banner,
  .department-template-modern-home .container-md .department__banner,
  .department-template-modern-home .container-lg .department__banner,
  .department-template-modern-home .container-xl .department__banner,
  .department-template-modern-home .container-xxl .department__banner,
  .department-template-sculpture .container-fluid .department__banner,
  .department-template-sculpture .container-sm .department__banner,
  .department-template-sculpture .container-md .department__banner,
  .department-template-sculpture .container-lg .department__banner,
  .department-template-sculpture .container-xl .department__banner,
  .department-template-sculpture .container-xxl .department__banner,
  .department-template-valuations .container-fluid .department__banner,
  .department-template-valuations .container-sm .department__banner,
  .department-template-valuations .container-md .department__banner,
  .department-template-valuations .container-lg .department__banner,
  .department-template-valuations .container-xl .department__banner,
  .department-template-valuations .container-xxl .department__banner,
  .department-template-ceramics .container-fluid .department__banner,
  .department-template-ceramics .container-sm .department__banner,
  .department-template-ceramics .container-md .department__banner,
  .department-template-ceramics .container-lg .department__banner,
  .department-template-ceramics .container-xl .department__banner,
  .department-template-ceramics .container-xxl .department__banner,
  .department-template-decorative .container-fluid .department__banner,
  .department-template-decorative .container-sm .department__banner,
  .department-template-decorative .container-md .department__banner,
  .department-template-decorative .container-lg .department__banner,
  .department-template-decorative .container-xl .department__banner,
  .department-template-decorative .container-xxl .department__banner,
  .department-template-islamic .container-fluid .department__banner,
  .department-template-islamic .container-sm .department__banner,
  .department-template-islamic .container-md .department__banner,
  .department-template-islamic .container-lg .department__banner,
  .department-template-islamic .container-xl .department__banner,
  .department-template-islamic .container-xxl .department__banner,
  .department-template-british .container-fluid .department__banner,
  .department-template-british .container-sm .department__banner,
  .department-template-british .container-md .department__banner,
  .department-template-british .container-lg .department__banner,
  .department-template-british .container-xl .department__banner,
  .department-template-british .container-xxl .department__banner,
  .department-template-silver .container-fluid .department__banner,
  .department-template-silver .container-sm .department__banner,
  .department-template-silver .container-md .department__banner,
  .department-template-silver .container-lg .department__banner,
  .department-template-silver .container-xl .department__banner,
  .department-template-silver .container-xxl .department__banner,
  .department-template-watches .container-fluid .department__banner,
  .department-template-watches .container-sm .department__banner,
  .department-template-watches .container-md .department__banner,
  .department-template-watches .container-lg .department__banner,
  .department-template-watches .container-xl .department__banner,
  .department-template-watches .container-xxl .department__banner,
  .department-template-owner .container-fluid .department__banner,
  .department-template-owner .container-sm .department__banner,
  .department-template-owner .container-md .department__banner,
  .department-template-owner .container-lg .department__banner,
  .department-template-owner .container-xl .department__banner,
  .department-template-owner .container-xxl .department__banner,
  .department-template-wine .container-fluid .department__banner,
  .department-template-wine .container-sm .department__banner,
  .department-template-wine .container-md .department__banner,
  .department-template-wine .container-lg .department__banner,
  .department-template-wine .container-xl .department__banner,
  .department-template-wine .container-xxl .department__banner,
  .department-template-studio-pottery .container-fluid .department__banner,
  .department-template-studio-pottery .container-sm .department__banner,
  .department-template-studio-pottery .container-md .department__banner,
  .department-template-studio-pottery .container-lg .department__banner,
  .department-template-studio-pottery .container-xl .department__banner,
  .department-template-studio-pottery .container-xxl .department__banner,
  .single-owner-collections .container-fluid .department__banner,
  .single-owner-collections .container-sm .department__banner,
  .single-owner-collections .container-md .department__banner,
  .single-owner-collections .container-lg .department__banner,
  .single-owner-collections .container-xl .department__banner,
  .single-owner-collections .container-xxl .department__banner,
  .delivery-information .container-fluid .department__banner,
  .delivery-information .container-sm .department__banner,
  .delivery-information .container-md .department__banner,
  .delivery-information .container-lg .department__banner,
  .delivery-information .container-xl .department__banner,
  .delivery-information .container-xxl .department__banner {
    margin-top: 0px !important;
  }
}
body.site.department-template-old-masters .container-fluid .sp-page-builder, body.site.department-template-old-masters .container-sm .sp-page-builder, body.site.department-template-old-masters .container-md .sp-page-builder, body.site.department-template-old-masters .container-lg .sp-page-builder, body.site.department-template-old-masters .container-xl .sp-page-builder, body.site.department-template-old-masters .container-xxl .sp-page-builder,
.department-template-jewellery .container-fluid .sp-page-builder,
.department-template-jewellery .container-sm .sp-page-builder,
.department-template-jewellery .container-md .sp-page-builder,
.department-template-jewellery .container-lg .sp-page-builder,
.department-template-jewellery .container-xl .sp-page-builder,
.department-template-jewellery .container-xxl .sp-page-builder,
.department-template-antiquities .container-fluid .sp-page-builder,
.department-template-antiquities .container-sm .sp-page-builder,
.department-template-antiquities .container-md .sp-page-builder,
.department-template-antiquities .container-lg .sp-page-builder,
.department-template-antiquities .container-xl .sp-page-builder,
.department-template-antiquities .container-xxl .sp-page-builder,
.department-template-chinese .container-fluid .sp-page-builder,
.department-template-chinese .container-sm .sp-page-builder,
.department-template-chinese .container-md .sp-page-builder,
.department-template-chinese .container-lg .sp-page-builder,
.department-template-chinese .container-xl .sp-page-builder,
.department-template-chinese .container-xxl .sp-page-builder,
.department-template-furniture .container-fluid .sp-page-builder,
.department-template-furniture .container-sm .sp-page-builder,
.department-template-furniture .container-md .sp-page-builder,
.department-template-furniture .container-lg .sp-page-builder,
.department-template-furniture .container-xl .sp-page-builder,
.department-template-furniture .container-xxl .sp-page-builder,
.department-template-design .container-fluid .sp-page-builder,
.department-template-design .container-sm .sp-page-builder,
.department-template-design .container-md .sp-page-builder,
.department-template-design .container-lg .sp-page-builder,
.department-template-design .container-xl .sp-page-builder,
.department-template-design .container-xxl .sp-page-builder,
.department-template-prints .container-fluid .sp-page-builder,
.department-template-prints .container-sm .sp-page-builder,
.department-template-prints .container-md .sp-page-builder,
.department-template-prints .container-lg .sp-page-builder,
.department-template-prints .container-xl .sp-page-builder,
.department-template-prints .container-xxl .sp-page-builder,
.department-template-modern-home .container-fluid .sp-page-builder,
.department-template-modern-home .container-sm .sp-page-builder,
.department-template-modern-home .container-md .sp-page-builder,
.department-template-modern-home .container-lg .sp-page-builder,
.department-template-modern-home .container-xl .sp-page-builder,
.department-template-modern-home .container-xxl .sp-page-builder,
.department-template-sculpture .container-fluid .sp-page-builder,
.department-template-sculpture .container-sm .sp-page-builder,
.department-template-sculpture .container-md .sp-page-builder,
.department-template-sculpture .container-lg .sp-page-builder,
.department-template-sculpture .container-xl .sp-page-builder,
.department-template-sculpture .container-xxl .sp-page-builder,
.department-template-valuations .container-fluid .sp-page-builder,
.department-template-valuations .container-sm .sp-page-builder,
.department-template-valuations .container-md .sp-page-builder,
.department-template-valuations .container-lg .sp-page-builder,
.department-template-valuations .container-xl .sp-page-builder,
.department-template-valuations .container-xxl .sp-page-builder,
.department-template-ceramics .container-fluid .sp-page-builder,
.department-template-ceramics .container-sm .sp-page-builder,
.department-template-ceramics .container-md .sp-page-builder,
.department-template-ceramics .container-lg .sp-page-builder,
.department-template-ceramics .container-xl .sp-page-builder,
.department-template-ceramics .container-xxl .sp-page-builder,
.department-template-decorative .container-fluid .sp-page-builder,
.department-template-decorative .container-sm .sp-page-builder,
.department-template-decorative .container-md .sp-page-builder,
.department-template-decorative .container-lg .sp-page-builder,
.department-template-decorative .container-xl .sp-page-builder,
.department-template-decorative .container-xxl .sp-page-builder,
.department-template-islamic .container-fluid .sp-page-builder,
.department-template-islamic .container-sm .sp-page-builder,
.department-template-islamic .container-md .sp-page-builder,
.department-template-islamic .container-lg .sp-page-builder,
.department-template-islamic .container-xl .sp-page-builder,
.department-template-islamic .container-xxl .sp-page-builder,
.department-template-british .container-fluid .sp-page-builder,
.department-template-british .container-sm .sp-page-builder,
.department-template-british .container-md .sp-page-builder,
.department-template-british .container-lg .sp-page-builder,
.department-template-british .container-xl .sp-page-builder,
.department-template-british .container-xxl .sp-page-builder,
.department-template-silver .container-fluid .sp-page-builder,
.department-template-silver .container-sm .sp-page-builder,
.department-template-silver .container-md .sp-page-builder,
.department-template-silver .container-lg .sp-page-builder,
.department-template-silver .container-xl .sp-page-builder,
.department-template-silver .container-xxl .sp-page-builder,
.department-template-watches .container-fluid .sp-page-builder,
.department-template-watches .container-sm .sp-page-builder,
.department-template-watches .container-md .sp-page-builder,
.department-template-watches .container-lg .sp-page-builder,
.department-template-watches .container-xl .sp-page-builder,
.department-template-watches .container-xxl .sp-page-builder,
.department-template-owner .container-fluid .sp-page-builder,
.department-template-owner .container-sm .sp-page-builder,
.department-template-owner .container-md .sp-page-builder,
.department-template-owner .container-lg .sp-page-builder,
.department-template-owner .container-xl .sp-page-builder,
.department-template-owner .container-xxl .sp-page-builder,
.department-template-wine .container-fluid .sp-page-builder,
.department-template-wine .container-sm .sp-page-builder,
.department-template-wine .container-md .sp-page-builder,
.department-template-wine .container-lg .sp-page-builder,
.department-template-wine .container-xl .sp-page-builder,
.department-template-wine .container-xxl .sp-page-builder,
.department-template-studio-pottery .container-fluid .sp-page-builder,
.department-template-studio-pottery .container-sm .sp-page-builder,
.department-template-studio-pottery .container-md .sp-page-builder,
.department-template-studio-pottery .container-lg .sp-page-builder,
.department-template-studio-pottery .container-xl .sp-page-builder,
.department-template-studio-pottery .container-xxl .sp-page-builder,
.single-owner-collections .container-fluid .sp-page-builder,
.single-owner-collections .container-sm .sp-page-builder,
.single-owner-collections .container-md .sp-page-builder,
.single-owner-collections .container-lg .sp-page-builder,
.single-owner-collections .container-xl .sp-page-builder,
.single-owner-collections .container-xxl .sp-page-builder,
.delivery-information .container-fluid .sp-page-builder,
.delivery-information .container-sm .sp-page-builder,
.delivery-information .container-md .sp-page-builder,
.delivery-information .container-lg .sp-page-builder,
.delivery-information .container-xl .sp-page-builder,
.delivery-information .container-xxl .sp-page-builder {
  padding: 0;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row, body.site.department-template-old-masters .container-sm .department__template--top-row, body.site.department-template-old-masters .container-md .department__template--top-row, body.site.department-template-old-masters .container-lg .department__template--top-row, body.site.department-template-old-masters .container-xl .department__template--top-row, body.site.department-template-old-masters .container-xxl .department__template--top-row,
  .department-template-jewellery .container-fluid .department__template--top-row,
  .department-template-jewellery .container-sm .department__template--top-row,
  .department-template-jewellery .container-md .department__template--top-row,
  .department-template-jewellery .container-lg .department__template--top-row,
  .department-template-jewellery .container-xl .department__template--top-row,
  .department-template-jewellery .container-xxl .department__template--top-row,
  .department-template-antiquities .container-fluid .department__template--top-row,
  .department-template-antiquities .container-sm .department__template--top-row,
  .department-template-antiquities .container-md .department__template--top-row,
  .department-template-antiquities .container-lg .department__template--top-row,
  .department-template-antiquities .container-xl .department__template--top-row,
  .department-template-antiquities .container-xxl .department__template--top-row,
  .department-template-chinese .container-fluid .department__template--top-row,
  .department-template-chinese .container-sm .department__template--top-row,
  .department-template-chinese .container-md .department__template--top-row,
  .department-template-chinese .container-lg .department__template--top-row,
  .department-template-chinese .container-xl .department__template--top-row,
  .department-template-chinese .container-xxl .department__template--top-row,
  .department-template-furniture .container-fluid .department__template--top-row,
  .department-template-furniture .container-sm .department__template--top-row,
  .department-template-furniture .container-md .department__template--top-row,
  .department-template-furniture .container-lg .department__template--top-row,
  .department-template-furniture .container-xl .department__template--top-row,
  .department-template-furniture .container-xxl .department__template--top-row,
  .department-template-design .container-fluid .department__template--top-row,
  .department-template-design .container-sm .department__template--top-row,
  .department-template-design .container-md .department__template--top-row,
  .department-template-design .container-lg .department__template--top-row,
  .department-template-design .container-xl .department__template--top-row,
  .department-template-design .container-xxl .department__template--top-row,
  .department-template-prints .container-fluid .department__template--top-row,
  .department-template-prints .container-sm .department__template--top-row,
  .department-template-prints .container-md .department__template--top-row,
  .department-template-prints .container-lg .department__template--top-row,
  .department-template-prints .container-xl .department__template--top-row,
  .department-template-prints .container-xxl .department__template--top-row,
  .department-template-modern-home .container-fluid .department__template--top-row,
  .department-template-modern-home .container-sm .department__template--top-row,
  .department-template-modern-home .container-md .department__template--top-row,
  .department-template-modern-home .container-lg .department__template--top-row,
  .department-template-modern-home .container-xl .department__template--top-row,
  .department-template-modern-home .container-xxl .department__template--top-row,
  .department-template-sculpture .container-fluid .department__template--top-row,
  .department-template-sculpture .container-sm .department__template--top-row,
  .department-template-sculpture .container-md .department__template--top-row,
  .department-template-sculpture .container-lg .department__template--top-row,
  .department-template-sculpture .container-xl .department__template--top-row,
  .department-template-sculpture .container-xxl .department__template--top-row,
  .department-template-valuations .container-fluid .department__template--top-row,
  .department-template-valuations .container-sm .department__template--top-row,
  .department-template-valuations .container-md .department__template--top-row,
  .department-template-valuations .container-lg .department__template--top-row,
  .department-template-valuations .container-xl .department__template--top-row,
  .department-template-valuations .container-xxl .department__template--top-row,
  .department-template-ceramics .container-fluid .department__template--top-row,
  .department-template-ceramics .container-sm .department__template--top-row,
  .department-template-ceramics .container-md .department__template--top-row,
  .department-template-ceramics .container-lg .department__template--top-row,
  .department-template-ceramics .container-xl .department__template--top-row,
  .department-template-ceramics .container-xxl .department__template--top-row,
  .department-template-decorative .container-fluid .department__template--top-row,
  .department-template-decorative .container-sm .department__template--top-row,
  .department-template-decorative .container-md .department__template--top-row,
  .department-template-decorative .container-lg .department__template--top-row,
  .department-template-decorative .container-xl .department__template--top-row,
  .department-template-decorative .container-xxl .department__template--top-row,
  .department-template-islamic .container-fluid .department__template--top-row,
  .department-template-islamic .container-sm .department__template--top-row,
  .department-template-islamic .container-md .department__template--top-row,
  .department-template-islamic .container-lg .department__template--top-row,
  .department-template-islamic .container-xl .department__template--top-row,
  .department-template-islamic .container-xxl .department__template--top-row,
  .department-template-british .container-fluid .department__template--top-row,
  .department-template-british .container-sm .department__template--top-row,
  .department-template-british .container-md .department__template--top-row,
  .department-template-british .container-lg .department__template--top-row,
  .department-template-british .container-xl .department__template--top-row,
  .department-template-british .container-xxl .department__template--top-row,
  .department-template-silver .container-fluid .department__template--top-row,
  .department-template-silver .container-sm .department__template--top-row,
  .department-template-silver .container-md .department__template--top-row,
  .department-template-silver .container-lg .department__template--top-row,
  .department-template-silver .container-xl .department__template--top-row,
  .department-template-silver .container-xxl .department__template--top-row,
  .department-template-watches .container-fluid .department__template--top-row,
  .department-template-watches .container-sm .department__template--top-row,
  .department-template-watches .container-md .department__template--top-row,
  .department-template-watches .container-lg .department__template--top-row,
  .department-template-watches .container-xl .department__template--top-row,
  .department-template-watches .container-xxl .department__template--top-row,
  .department-template-owner .container-fluid .department__template--top-row,
  .department-template-owner .container-sm .department__template--top-row,
  .department-template-owner .container-md .department__template--top-row,
  .department-template-owner .container-lg .department__template--top-row,
  .department-template-owner .container-xl .department__template--top-row,
  .department-template-owner .container-xxl .department__template--top-row,
  .department-template-wine .container-fluid .department__template--top-row,
  .department-template-wine .container-sm .department__template--top-row,
  .department-template-wine .container-md .department__template--top-row,
  .department-template-wine .container-lg .department__template--top-row,
  .department-template-wine .container-xl .department__template--top-row,
  .department-template-wine .container-xxl .department__template--top-row,
  .department-template-studio-pottery .container-fluid .department__template--top-row,
  .department-template-studio-pottery .container-sm .department__template--top-row,
  .department-template-studio-pottery .container-md .department__template--top-row,
  .department-template-studio-pottery .container-lg .department__template--top-row,
  .department-template-studio-pottery .container-xl .department__template--top-row,
  .department-template-studio-pottery .container-xxl .department__template--top-row,
  .single-owner-collections .container-fluid .department__template--top-row,
  .single-owner-collections .container-sm .department__template--top-row,
  .single-owner-collections .container-md .department__template--top-row,
  .single-owner-collections .container-lg .department__template--top-row,
  .single-owner-collections .container-xl .department__template--top-row,
  .single-owner-collections .container-xxl .department__template--top-row,
  .delivery-information .container-fluid .department__template--top-row,
  .delivery-information .container-sm .department__template--top-row,
  .delivery-information .container-md .department__template--top-row,
  .delivery-information .container-lg .department__template--top-row,
  .delivery-information .container-xl .department__template--top-row,
  .delivery-information .container-xxl .department__template--top-row {
    padding-top: 20px !important;
  }
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-sm .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-md .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-lg .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xl .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__home-link,
.department-template-jewellery .container-fluid .department__template--top-row .department__home-link,
.department-template-jewellery .container-sm .department__template--top-row .department__home-link,
.department-template-jewellery .container-md .department__template--top-row .department__home-link,
.department-template-jewellery .container-lg .department__template--top-row .department__home-link,
.department-template-jewellery .container-xl .department__template--top-row .department__home-link,
.department-template-jewellery .container-xxl .department__template--top-row .department__home-link,
.department-template-antiquities .container-fluid .department__template--top-row .department__home-link,
.department-template-antiquities .container-sm .department__template--top-row .department__home-link,
.department-template-antiquities .container-md .department__template--top-row .department__home-link,
.department-template-antiquities .container-lg .department__template--top-row .department__home-link,
.department-template-antiquities .container-xl .department__template--top-row .department__home-link,
.department-template-antiquities .container-xxl .department__template--top-row .department__home-link,
.department-template-chinese .container-fluid .department__template--top-row .department__home-link,
.department-template-chinese .container-sm .department__template--top-row .department__home-link,
.department-template-chinese .container-md .department__template--top-row .department__home-link,
.department-template-chinese .container-lg .department__template--top-row .department__home-link,
.department-template-chinese .container-xl .department__template--top-row .department__home-link,
.department-template-chinese .container-xxl .department__template--top-row .department__home-link,
.department-template-furniture .container-fluid .department__template--top-row .department__home-link,
.department-template-furniture .container-sm .department__template--top-row .department__home-link,
.department-template-furniture .container-md .department__template--top-row .department__home-link,
.department-template-furniture .container-lg .department__template--top-row .department__home-link,
.department-template-furniture .container-xl .department__template--top-row .department__home-link,
.department-template-furniture .container-xxl .department__template--top-row .department__home-link,
.department-template-design .container-fluid .department__template--top-row .department__home-link,
.department-template-design .container-sm .department__template--top-row .department__home-link,
.department-template-design .container-md .department__template--top-row .department__home-link,
.department-template-design .container-lg .department__template--top-row .department__home-link,
.department-template-design .container-xl .department__template--top-row .department__home-link,
.department-template-design .container-xxl .department__template--top-row .department__home-link,
.department-template-prints .container-fluid .department__template--top-row .department__home-link,
.department-template-prints .container-sm .department__template--top-row .department__home-link,
.department-template-prints .container-md .department__template--top-row .department__home-link,
.department-template-prints .container-lg .department__template--top-row .department__home-link,
.department-template-prints .container-xl .department__template--top-row .department__home-link,
.department-template-prints .container-xxl .department__template--top-row .department__home-link,
.department-template-modern-home .container-fluid .department__template--top-row .department__home-link,
.department-template-modern-home .container-sm .department__template--top-row .department__home-link,
.department-template-modern-home .container-md .department__template--top-row .department__home-link,
.department-template-modern-home .container-lg .department__template--top-row .department__home-link,
.department-template-modern-home .container-xl .department__template--top-row .department__home-link,
.department-template-modern-home .container-xxl .department__template--top-row .department__home-link,
.department-template-sculpture .container-fluid .department__template--top-row .department__home-link,
.department-template-sculpture .container-sm .department__template--top-row .department__home-link,
.department-template-sculpture .container-md .department__template--top-row .department__home-link,
.department-template-sculpture .container-lg .department__template--top-row .department__home-link,
.department-template-sculpture .container-xl .department__template--top-row .department__home-link,
.department-template-sculpture .container-xxl .department__template--top-row .department__home-link,
.department-template-valuations .container-fluid .department__template--top-row .department__home-link,
.department-template-valuations .container-sm .department__template--top-row .department__home-link,
.department-template-valuations .container-md .department__template--top-row .department__home-link,
.department-template-valuations .container-lg .department__template--top-row .department__home-link,
.department-template-valuations .container-xl .department__template--top-row .department__home-link,
.department-template-valuations .container-xxl .department__template--top-row .department__home-link,
.department-template-ceramics .container-fluid .department__template--top-row .department__home-link,
.department-template-ceramics .container-sm .department__template--top-row .department__home-link,
.department-template-ceramics .container-md .department__template--top-row .department__home-link,
.department-template-ceramics .container-lg .department__template--top-row .department__home-link,
.department-template-ceramics .container-xl .department__template--top-row .department__home-link,
.department-template-ceramics .container-xxl .department__template--top-row .department__home-link,
.department-template-decorative .container-fluid .department__template--top-row .department__home-link,
.department-template-decorative .container-sm .department__template--top-row .department__home-link,
.department-template-decorative .container-md .department__template--top-row .department__home-link,
.department-template-decorative .container-lg .department__template--top-row .department__home-link,
.department-template-decorative .container-xl .department__template--top-row .department__home-link,
.department-template-decorative .container-xxl .department__template--top-row .department__home-link,
.department-template-islamic .container-fluid .department__template--top-row .department__home-link,
.department-template-islamic .container-sm .department__template--top-row .department__home-link,
.department-template-islamic .container-md .department__template--top-row .department__home-link,
.department-template-islamic .container-lg .department__template--top-row .department__home-link,
.department-template-islamic .container-xl .department__template--top-row .department__home-link,
.department-template-islamic .container-xxl .department__template--top-row .department__home-link,
.department-template-british .container-fluid .department__template--top-row .department__home-link,
.department-template-british .container-sm .department__template--top-row .department__home-link,
.department-template-british .container-md .department__template--top-row .department__home-link,
.department-template-british .container-lg .department__template--top-row .department__home-link,
.department-template-british .container-xl .department__template--top-row .department__home-link,
.department-template-british .container-xxl .department__template--top-row .department__home-link,
.department-template-silver .container-fluid .department__template--top-row .department__home-link,
.department-template-silver .container-sm .department__template--top-row .department__home-link,
.department-template-silver .container-md .department__template--top-row .department__home-link,
.department-template-silver .container-lg .department__template--top-row .department__home-link,
.department-template-silver .container-xl .department__template--top-row .department__home-link,
.department-template-silver .container-xxl .department__template--top-row .department__home-link,
.department-template-watches .container-fluid .department__template--top-row .department__home-link,
.department-template-watches .container-sm .department__template--top-row .department__home-link,
.department-template-watches .container-md .department__template--top-row .department__home-link,
.department-template-watches .container-lg .department__template--top-row .department__home-link,
.department-template-watches .container-xl .department__template--top-row .department__home-link,
.department-template-watches .container-xxl .department__template--top-row .department__home-link,
.department-template-owner .container-fluid .department__template--top-row .department__home-link,
.department-template-owner .container-sm .department__template--top-row .department__home-link,
.department-template-owner .container-md .department__template--top-row .department__home-link,
.department-template-owner .container-lg .department__template--top-row .department__home-link,
.department-template-owner .container-xl .department__template--top-row .department__home-link,
.department-template-owner .container-xxl .department__template--top-row .department__home-link,
.department-template-wine .container-fluid .department__template--top-row .department__home-link,
.department-template-wine .container-sm .department__template--top-row .department__home-link,
.department-template-wine .container-md .department__template--top-row .department__home-link,
.department-template-wine .container-lg .department__template--top-row .department__home-link,
.department-template-wine .container-xl .department__template--top-row .department__home-link,
.department-template-wine .container-xxl .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-fluid .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-sm .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-md .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-lg .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-xl .department__template--top-row .department__home-link,
.department-template-studio-pottery .container-xxl .department__template--top-row .department__home-link,
.single-owner-collections .container-fluid .department__template--top-row .department__home-link,
.single-owner-collections .container-sm .department__template--top-row .department__home-link,
.single-owner-collections .container-md .department__template--top-row .department__home-link,
.single-owner-collections .container-lg .department__template--top-row .department__home-link,
.single-owner-collections .container-xl .department__template--top-row .department__home-link,
.single-owner-collections .container-xxl .department__template--top-row .department__home-link,
.delivery-information .container-fluid .department__template--top-row .department__home-link,
.delivery-information .container-sm .department__template--top-row .department__home-link,
.delivery-information .container-md .department__template--top-row .department__home-link,
.delivery-information .container-lg .department__template--top-row .department__home-link,
.delivery-information .container-xl .department__template--top-row .department__home-link,
.delivery-information .container-xxl .department__template--top-row .department__home-link {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-sm .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-md .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-lg .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xl .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-fluid .department__template--top-row .department__home-link,
  .department-template-jewellery .container-sm .department__template--top-row .department__home-link,
  .department-template-jewellery .container-md .department__template--top-row .department__home-link,
  .department-template-jewellery .container-lg .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xxl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-fluid .department__template--top-row .department__home-link,
  .department-template-antiquities .container-sm .department__template--top-row .department__home-link,
  .department-template-antiquities .container-md .department__template--top-row .department__home-link,
  .department-template-antiquities .container-lg .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xxl .department__template--top-row .department__home-link,
  .department-template-chinese .container-fluid .department__template--top-row .department__home-link,
  .department-template-chinese .container-sm .department__template--top-row .department__home-link,
  .department-template-chinese .container-md .department__template--top-row .department__home-link,
  .department-template-chinese .container-lg .department__template--top-row .department__home-link,
  .department-template-chinese .container-xl .department__template--top-row .department__home-link,
  .department-template-chinese .container-xxl .department__template--top-row .department__home-link,
  .department-template-furniture .container-fluid .department__template--top-row .department__home-link,
  .department-template-furniture .container-sm .department__template--top-row .department__home-link,
  .department-template-furniture .container-md .department__template--top-row .department__home-link,
  .department-template-furniture .container-lg .department__template--top-row .department__home-link,
  .department-template-furniture .container-xl .department__template--top-row .department__home-link,
  .department-template-furniture .container-xxl .department__template--top-row .department__home-link,
  .department-template-design .container-fluid .department__template--top-row .department__home-link,
  .department-template-design .container-sm .department__template--top-row .department__home-link,
  .department-template-design .container-md .department__template--top-row .department__home-link,
  .department-template-design .container-lg .department__template--top-row .department__home-link,
  .department-template-design .container-xl .department__template--top-row .department__home-link,
  .department-template-design .container-xxl .department__template--top-row .department__home-link,
  .department-template-prints .container-fluid .department__template--top-row .department__home-link,
  .department-template-prints .container-sm .department__template--top-row .department__home-link,
  .department-template-prints .container-md .department__template--top-row .department__home-link,
  .department-template-prints .container-lg .department__template--top-row .department__home-link,
  .department-template-prints .container-xl .department__template--top-row .department__home-link,
  .department-template-prints .container-xxl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-fluid .department__template--top-row .department__home-link,
  .department-template-modern-home .container-sm .department__template--top-row .department__home-link,
  .department-template-modern-home .container-md .department__template--top-row .department__home-link,
  .department-template-modern-home .container-lg .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xxl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-fluid .department__template--top-row .department__home-link,
  .department-template-sculpture .container-sm .department__template--top-row .department__home-link,
  .department-template-sculpture .container-md .department__template--top-row .department__home-link,
  .department-template-sculpture .container-lg .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xxl .department__template--top-row .department__home-link,
  .department-template-valuations .container-fluid .department__template--top-row .department__home-link,
  .department-template-valuations .container-sm .department__template--top-row .department__home-link,
  .department-template-valuations .container-md .department__template--top-row .department__home-link,
  .department-template-valuations .container-lg .department__template--top-row .department__home-link,
  .department-template-valuations .container-xl .department__template--top-row .department__home-link,
  .department-template-valuations .container-xxl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-fluid .department__template--top-row .department__home-link,
  .department-template-ceramics .container-sm .department__template--top-row .department__home-link,
  .department-template-ceramics .container-md .department__template--top-row .department__home-link,
  .department-template-ceramics .container-lg .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xxl .department__template--top-row .department__home-link,
  .department-template-decorative .container-fluid .department__template--top-row .department__home-link,
  .department-template-decorative .container-sm .department__template--top-row .department__home-link,
  .department-template-decorative .container-md .department__template--top-row .department__home-link,
  .department-template-decorative .container-lg .department__template--top-row .department__home-link,
  .department-template-decorative .container-xl .department__template--top-row .department__home-link,
  .department-template-decorative .container-xxl .department__template--top-row .department__home-link,
  .department-template-islamic .container-fluid .department__template--top-row .department__home-link,
  .department-template-islamic .container-sm .department__template--top-row .department__home-link,
  .department-template-islamic .container-md .department__template--top-row .department__home-link,
  .department-template-islamic .container-lg .department__template--top-row .department__home-link,
  .department-template-islamic .container-xl .department__template--top-row .department__home-link,
  .department-template-islamic .container-xxl .department__template--top-row .department__home-link,
  .department-template-british .container-fluid .department__template--top-row .department__home-link,
  .department-template-british .container-sm .department__template--top-row .department__home-link,
  .department-template-british .container-md .department__template--top-row .department__home-link,
  .department-template-british .container-lg .department__template--top-row .department__home-link,
  .department-template-british .container-xl .department__template--top-row .department__home-link,
  .department-template-british .container-xxl .department__template--top-row .department__home-link,
  .department-template-silver .container-fluid .department__template--top-row .department__home-link,
  .department-template-silver .container-sm .department__template--top-row .department__home-link,
  .department-template-silver .container-md .department__template--top-row .department__home-link,
  .department-template-silver .container-lg .department__template--top-row .department__home-link,
  .department-template-silver .container-xl .department__template--top-row .department__home-link,
  .department-template-silver .container-xxl .department__template--top-row .department__home-link,
  .department-template-watches .container-fluid .department__template--top-row .department__home-link,
  .department-template-watches .container-sm .department__template--top-row .department__home-link,
  .department-template-watches .container-md .department__template--top-row .department__home-link,
  .department-template-watches .container-lg .department__template--top-row .department__home-link,
  .department-template-watches .container-xl .department__template--top-row .department__home-link,
  .department-template-watches .container-xxl .department__template--top-row .department__home-link,
  .department-template-owner .container-fluid .department__template--top-row .department__home-link,
  .department-template-owner .container-sm .department__template--top-row .department__home-link,
  .department-template-owner .container-md .department__template--top-row .department__home-link,
  .department-template-owner .container-lg .department__template--top-row .department__home-link,
  .department-template-owner .container-xl .department__template--top-row .department__home-link,
  .department-template-owner .container-xxl .department__template--top-row .department__home-link,
  .department-template-wine .container-fluid .department__template--top-row .department__home-link,
  .department-template-wine .container-sm .department__template--top-row .department__home-link,
  .department-template-wine .container-md .department__template--top-row .department__home-link,
  .department-template-wine .container-lg .department__template--top-row .department__home-link,
  .department-template-wine .container-xl .department__template--top-row .department__home-link,
  .department-template-wine .container-xxl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-fluid .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-sm .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-md .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-lg .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xxl .department__template--top-row .department__home-link,
  .single-owner-collections .container-fluid .department__template--top-row .department__home-link,
  .single-owner-collections .container-sm .department__template--top-row .department__home-link,
  .single-owner-collections .container-md .department__template--top-row .department__home-link,
  .single-owner-collections .container-lg .department__template--top-row .department__home-link,
  .single-owner-collections .container-xl .department__template--top-row .department__home-link,
  .single-owner-collections .container-xxl .department__template--top-row .department__home-link,
  .delivery-information .container-fluid .department__template--top-row .department__home-link,
  .delivery-information .container-sm .department__template--top-row .department__home-link,
  .delivery-information .container-md .department__template--top-row .department__home-link,
  .delivery-information .container-lg .department__template--top-row .department__home-link,
  .delivery-information .container-xl .department__template--top-row .department__home-link,
  .delivery-information .container-xxl .department__template--top-row .department__home-link {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-sm .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-md .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-lg .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xl .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-fluid .department__template--top-row .department__home-link,
  .department-template-jewellery .container-sm .department__template--top-row .department__home-link,
  .department-template-jewellery .container-md .department__template--top-row .department__home-link,
  .department-template-jewellery .container-lg .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xxl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-fluid .department__template--top-row .department__home-link,
  .department-template-antiquities .container-sm .department__template--top-row .department__home-link,
  .department-template-antiquities .container-md .department__template--top-row .department__home-link,
  .department-template-antiquities .container-lg .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xxl .department__template--top-row .department__home-link,
  .department-template-chinese .container-fluid .department__template--top-row .department__home-link,
  .department-template-chinese .container-sm .department__template--top-row .department__home-link,
  .department-template-chinese .container-md .department__template--top-row .department__home-link,
  .department-template-chinese .container-lg .department__template--top-row .department__home-link,
  .department-template-chinese .container-xl .department__template--top-row .department__home-link,
  .department-template-chinese .container-xxl .department__template--top-row .department__home-link,
  .department-template-furniture .container-fluid .department__template--top-row .department__home-link,
  .department-template-furniture .container-sm .department__template--top-row .department__home-link,
  .department-template-furniture .container-md .department__template--top-row .department__home-link,
  .department-template-furniture .container-lg .department__template--top-row .department__home-link,
  .department-template-furniture .container-xl .department__template--top-row .department__home-link,
  .department-template-furniture .container-xxl .department__template--top-row .department__home-link,
  .department-template-design .container-fluid .department__template--top-row .department__home-link,
  .department-template-design .container-sm .department__template--top-row .department__home-link,
  .department-template-design .container-md .department__template--top-row .department__home-link,
  .department-template-design .container-lg .department__template--top-row .department__home-link,
  .department-template-design .container-xl .department__template--top-row .department__home-link,
  .department-template-design .container-xxl .department__template--top-row .department__home-link,
  .department-template-prints .container-fluid .department__template--top-row .department__home-link,
  .department-template-prints .container-sm .department__template--top-row .department__home-link,
  .department-template-prints .container-md .department__template--top-row .department__home-link,
  .department-template-prints .container-lg .department__template--top-row .department__home-link,
  .department-template-prints .container-xl .department__template--top-row .department__home-link,
  .department-template-prints .container-xxl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-fluid .department__template--top-row .department__home-link,
  .department-template-modern-home .container-sm .department__template--top-row .department__home-link,
  .department-template-modern-home .container-md .department__template--top-row .department__home-link,
  .department-template-modern-home .container-lg .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xxl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-fluid .department__template--top-row .department__home-link,
  .department-template-sculpture .container-sm .department__template--top-row .department__home-link,
  .department-template-sculpture .container-md .department__template--top-row .department__home-link,
  .department-template-sculpture .container-lg .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xxl .department__template--top-row .department__home-link,
  .department-template-valuations .container-fluid .department__template--top-row .department__home-link,
  .department-template-valuations .container-sm .department__template--top-row .department__home-link,
  .department-template-valuations .container-md .department__template--top-row .department__home-link,
  .department-template-valuations .container-lg .department__template--top-row .department__home-link,
  .department-template-valuations .container-xl .department__template--top-row .department__home-link,
  .department-template-valuations .container-xxl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-fluid .department__template--top-row .department__home-link,
  .department-template-ceramics .container-sm .department__template--top-row .department__home-link,
  .department-template-ceramics .container-md .department__template--top-row .department__home-link,
  .department-template-ceramics .container-lg .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xxl .department__template--top-row .department__home-link,
  .department-template-decorative .container-fluid .department__template--top-row .department__home-link,
  .department-template-decorative .container-sm .department__template--top-row .department__home-link,
  .department-template-decorative .container-md .department__template--top-row .department__home-link,
  .department-template-decorative .container-lg .department__template--top-row .department__home-link,
  .department-template-decorative .container-xl .department__template--top-row .department__home-link,
  .department-template-decorative .container-xxl .department__template--top-row .department__home-link,
  .department-template-islamic .container-fluid .department__template--top-row .department__home-link,
  .department-template-islamic .container-sm .department__template--top-row .department__home-link,
  .department-template-islamic .container-md .department__template--top-row .department__home-link,
  .department-template-islamic .container-lg .department__template--top-row .department__home-link,
  .department-template-islamic .container-xl .department__template--top-row .department__home-link,
  .department-template-islamic .container-xxl .department__template--top-row .department__home-link,
  .department-template-british .container-fluid .department__template--top-row .department__home-link,
  .department-template-british .container-sm .department__template--top-row .department__home-link,
  .department-template-british .container-md .department__template--top-row .department__home-link,
  .department-template-british .container-lg .department__template--top-row .department__home-link,
  .department-template-british .container-xl .department__template--top-row .department__home-link,
  .department-template-british .container-xxl .department__template--top-row .department__home-link,
  .department-template-silver .container-fluid .department__template--top-row .department__home-link,
  .department-template-silver .container-sm .department__template--top-row .department__home-link,
  .department-template-silver .container-md .department__template--top-row .department__home-link,
  .department-template-silver .container-lg .department__template--top-row .department__home-link,
  .department-template-silver .container-xl .department__template--top-row .department__home-link,
  .department-template-silver .container-xxl .department__template--top-row .department__home-link,
  .department-template-watches .container-fluid .department__template--top-row .department__home-link,
  .department-template-watches .container-sm .department__template--top-row .department__home-link,
  .department-template-watches .container-md .department__template--top-row .department__home-link,
  .department-template-watches .container-lg .department__template--top-row .department__home-link,
  .department-template-watches .container-xl .department__template--top-row .department__home-link,
  .department-template-watches .container-xxl .department__template--top-row .department__home-link,
  .department-template-owner .container-fluid .department__template--top-row .department__home-link,
  .department-template-owner .container-sm .department__template--top-row .department__home-link,
  .department-template-owner .container-md .department__template--top-row .department__home-link,
  .department-template-owner .container-lg .department__template--top-row .department__home-link,
  .department-template-owner .container-xl .department__template--top-row .department__home-link,
  .department-template-owner .container-xxl .department__template--top-row .department__home-link,
  .department-template-wine .container-fluid .department__template--top-row .department__home-link,
  .department-template-wine .container-sm .department__template--top-row .department__home-link,
  .department-template-wine .container-md .department__template--top-row .department__home-link,
  .department-template-wine .container-lg .department__template--top-row .department__home-link,
  .department-template-wine .container-xl .department__template--top-row .department__home-link,
  .department-template-wine .container-xxl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-fluid .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-sm .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-md .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-lg .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xxl .department__template--top-row .department__home-link,
  .single-owner-collections .container-fluid .department__template--top-row .department__home-link,
  .single-owner-collections .container-sm .department__template--top-row .department__home-link,
  .single-owner-collections .container-md .department__template--top-row .department__home-link,
  .single-owner-collections .container-lg .department__template--top-row .department__home-link,
  .single-owner-collections .container-xl .department__template--top-row .department__home-link,
  .single-owner-collections .container-xxl .department__template--top-row .department__home-link,
  .delivery-information .container-fluid .department__template--top-row .department__home-link,
  .delivery-information .container-sm .department__template--top-row .department__home-link,
  .delivery-information .container-md .department__template--top-row .department__home-link,
  .delivery-information .container-lg .department__template--top-row .department__home-link,
  .delivery-information .container-xl .department__template--top-row .department__home-link,
  .delivery-information .container-xxl .department__template--top-row .department__home-link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 479px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-sm .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-md .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-lg .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xl .department__template--top-row .department__home-link, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-fluid .department__template--top-row .department__home-link,
  .department-template-jewellery .container-sm .department__template--top-row .department__home-link,
  .department-template-jewellery .container-md .department__template--top-row .department__home-link,
  .department-template-jewellery .container-lg .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xl .department__template--top-row .department__home-link,
  .department-template-jewellery .container-xxl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-fluid .department__template--top-row .department__home-link,
  .department-template-antiquities .container-sm .department__template--top-row .department__home-link,
  .department-template-antiquities .container-md .department__template--top-row .department__home-link,
  .department-template-antiquities .container-lg .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xl .department__template--top-row .department__home-link,
  .department-template-antiquities .container-xxl .department__template--top-row .department__home-link,
  .department-template-chinese .container-fluid .department__template--top-row .department__home-link,
  .department-template-chinese .container-sm .department__template--top-row .department__home-link,
  .department-template-chinese .container-md .department__template--top-row .department__home-link,
  .department-template-chinese .container-lg .department__template--top-row .department__home-link,
  .department-template-chinese .container-xl .department__template--top-row .department__home-link,
  .department-template-chinese .container-xxl .department__template--top-row .department__home-link,
  .department-template-furniture .container-fluid .department__template--top-row .department__home-link,
  .department-template-furniture .container-sm .department__template--top-row .department__home-link,
  .department-template-furniture .container-md .department__template--top-row .department__home-link,
  .department-template-furniture .container-lg .department__template--top-row .department__home-link,
  .department-template-furniture .container-xl .department__template--top-row .department__home-link,
  .department-template-furniture .container-xxl .department__template--top-row .department__home-link,
  .department-template-design .container-fluid .department__template--top-row .department__home-link,
  .department-template-design .container-sm .department__template--top-row .department__home-link,
  .department-template-design .container-md .department__template--top-row .department__home-link,
  .department-template-design .container-lg .department__template--top-row .department__home-link,
  .department-template-design .container-xl .department__template--top-row .department__home-link,
  .department-template-design .container-xxl .department__template--top-row .department__home-link,
  .department-template-prints .container-fluid .department__template--top-row .department__home-link,
  .department-template-prints .container-sm .department__template--top-row .department__home-link,
  .department-template-prints .container-md .department__template--top-row .department__home-link,
  .department-template-prints .container-lg .department__template--top-row .department__home-link,
  .department-template-prints .container-xl .department__template--top-row .department__home-link,
  .department-template-prints .container-xxl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-fluid .department__template--top-row .department__home-link,
  .department-template-modern-home .container-sm .department__template--top-row .department__home-link,
  .department-template-modern-home .container-md .department__template--top-row .department__home-link,
  .department-template-modern-home .container-lg .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xl .department__template--top-row .department__home-link,
  .department-template-modern-home .container-xxl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-fluid .department__template--top-row .department__home-link,
  .department-template-sculpture .container-sm .department__template--top-row .department__home-link,
  .department-template-sculpture .container-md .department__template--top-row .department__home-link,
  .department-template-sculpture .container-lg .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xl .department__template--top-row .department__home-link,
  .department-template-sculpture .container-xxl .department__template--top-row .department__home-link,
  .department-template-valuations .container-fluid .department__template--top-row .department__home-link,
  .department-template-valuations .container-sm .department__template--top-row .department__home-link,
  .department-template-valuations .container-md .department__template--top-row .department__home-link,
  .department-template-valuations .container-lg .department__template--top-row .department__home-link,
  .department-template-valuations .container-xl .department__template--top-row .department__home-link,
  .department-template-valuations .container-xxl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-fluid .department__template--top-row .department__home-link,
  .department-template-ceramics .container-sm .department__template--top-row .department__home-link,
  .department-template-ceramics .container-md .department__template--top-row .department__home-link,
  .department-template-ceramics .container-lg .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xl .department__template--top-row .department__home-link,
  .department-template-ceramics .container-xxl .department__template--top-row .department__home-link,
  .department-template-decorative .container-fluid .department__template--top-row .department__home-link,
  .department-template-decorative .container-sm .department__template--top-row .department__home-link,
  .department-template-decorative .container-md .department__template--top-row .department__home-link,
  .department-template-decorative .container-lg .department__template--top-row .department__home-link,
  .department-template-decorative .container-xl .department__template--top-row .department__home-link,
  .department-template-decorative .container-xxl .department__template--top-row .department__home-link,
  .department-template-islamic .container-fluid .department__template--top-row .department__home-link,
  .department-template-islamic .container-sm .department__template--top-row .department__home-link,
  .department-template-islamic .container-md .department__template--top-row .department__home-link,
  .department-template-islamic .container-lg .department__template--top-row .department__home-link,
  .department-template-islamic .container-xl .department__template--top-row .department__home-link,
  .department-template-islamic .container-xxl .department__template--top-row .department__home-link,
  .department-template-british .container-fluid .department__template--top-row .department__home-link,
  .department-template-british .container-sm .department__template--top-row .department__home-link,
  .department-template-british .container-md .department__template--top-row .department__home-link,
  .department-template-british .container-lg .department__template--top-row .department__home-link,
  .department-template-british .container-xl .department__template--top-row .department__home-link,
  .department-template-british .container-xxl .department__template--top-row .department__home-link,
  .department-template-silver .container-fluid .department__template--top-row .department__home-link,
  .department-template-silver .container-sm .department__template--top-row .department__home-link,
  .department-template-silver .container-md .department__template--top-row .department__home-link,
  .department-template-silver .container-lg .department__template--top-row .department__home-link,
  .department-template-silver .container-xl .department__template--top-row .department__home-link,
  .department-template-silver .container-xxl .department__template--top-row .department__home-link,
  .department-template-watches .container-fluid .department__template--top-row .department__home-link,
  .department-template-watches .container-sm .department__template--top-row .department__home-link,
  .department-template-watches .container-md .department__template--top-row .department__home-link,
  .department-template-watches .container-lg .department__template--top-row .department__home-link,
  .department-template-watches .container-xl .department__template--top-row .department__home-link,
  .department-template-watches .container-xxl .department__template--top-row .department__home-link,
  .department-template-owner .container-fluid .department__template--top-row .department__home-link,
  .department-template-owner .container-sm .department__template--top-row .department__home-link,
  .department-template-owner .container-md .department__template--top-row .department__home-link,
  .department-template-owner .container-lg .department__template--top-row .department__home-link,
  .department-template-owner .container-xl .department__template--top-row .department__home-link,
  .department-template-owner .container-xxl .department__template--top-row .department__home-link,
  .department-template-wine .container-fluid .department__template--top-row .department__home-link,
  .department-template-wine .container-sm .department__template--top-row .department__home-link,
  .department-template-wine .container-md .department__template--top-row .department__home-link,
  .department-template-wine .container-lg .department__template--top-row .department__home-link,
  .department-template-wine .container-xl .department__template--top-row .department__home-link,
  .department-template-wine .container-xxl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-fluid .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-sm .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-md .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-lg .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xl .department__template--top-row .department__home-link,
  .department-template-studio-pottery .container-xxl .department__template--top-row .department__home-link,
  .single-owner-collections .container-fluid .department__template--top-row .department__home-link,
  .single-owner-collections .container-sm .department__template--top-row .department__home-link,
  .single-owner-collections .container-md .department__template--top-row .department__home-link,
  .single-owner-collections .container-lg .department__template--top-row .department__home-link,
  .single-owner-collections .container-xl .department__template--top-row .department__home-link,
  .single-owner-collections .container-xxl .department__template--top-row .department__home-link,
  .delivery-information .container-fluid .department__template--top-row .department__home-link,
  .delivery-information .container-sm .department__template--top-row .department__home-link,
  .delivery-information .container-md .department__template--top-row .department__home-link,
  .delivery-information .container-lg .department__template--top-row .department__home-link,
  .delivery-information .container-xl .department__template--top-row .department__home-link,
  .delivery-information .container-xxl .department__template--top-row .department__home-link {
    margin-top: 15px;
  }
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .department__home-link img, body.site.department-template-old-masters .container-sm .department__template--top-row .department__home-link img, body.site.department-template-old-masters .container-md .department__template--top-row .department__home-link img, body.site.department-template-old-masters .container-lg .department__template--top-row .department__home-link img, body.site.department-template-old-masters .container-xl .department__template--top-row .department__home-link img, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__home-link img,
.department-template-jewellery .container-fluid .department__template--top-row .department__home-link img,
.department-template-jewellery .container-sm .department__template--top-row .department__home-link img,
.department-template-jewellery .container-md .department__template--top-row .department__home-link img,
.department-template-jewellery .container-lg .department__template--top-row .department__home-link img,
.department-template-jewellery .container-xl .department__template--top-row .department__home-link img,
.department-template-jewellery .container-xxl .department__template--top-row .department__home-link img,
.department-template-antiquities .container-fluid .department__template--top-row .department__home-link img,
.department-template-antiquities .container-sm .department__template--top-row .department__home-link img,
.department-template-antiquities .container-md .department__template--top-row .department__home-link img,
.department-template-antiquities .container-lg .department__template--top-row .department__home-link img,
.department-template-antiquities .container-xl .department__template--top-row .department__home-link img,
.department-template-antiquities .container-xxl .department__template--top-row .department__home-link img,
.department-template-chinese .container-fluid .department__template--top-row .department__home-link img,
.department-template-chinese .container-sm .department__template--top-row .department__home-link img,
.department-template-chinese .container-md .department__template--top-row .department__home-link img,
.department-template-chinese .container-lg .department__template--top-row .department__home-link img,
.department-template-chinese .container-xl .department__template--top-row .department__home-link img,
.department-template-chinese .container-xxl .department__template--top-row .department__home-link img,
.department-template-furniture .container-fluid .department__template--top-row .department__home-link img,
.department-template-furniture .container-sm .department__template--top-row .department__home-link img,
.department-template-furniture .container-md .department__template--top-row .department__home-link img,
.department-template-furniture .container-lg .department__template--top-row .department__home-link img,
.department-template-furniture .container-xl .department__template--top-row .department__home-link img,
.department-template-furniture .container-xxl .department__template--top-row .department__home-link img,
.department-template-design .container-fluid .department__template--top-row .department__home-link img,
.department-template-design .container-sm .department__template--top-row .department__home-link img,
.department-template-design .container-md .department__template--top-row .department__home-link img,
.department-template-design .container-lg .department__template--top-row .department__home-link img,
.department-template-design .container-xl .department__template--top-row .department__home-link img,
.department-template-design .container-xxl .department__template--top-row .department__home-link img,
.department-template-prints .container-fluid .department__template--top-row .department__home-link img,
.department-template-prints .container-sm .department__template--top-row .department__home-link img,
.department-template-prints .container-md .department__template--top-row .department__home-link img,
.department-template-prints .container-lg .department__template--top-row .department__home-link img,
.department-template-prints .container-xl .department__template--top-row .department__home-link img,
.department-template-prints .container-xxl .department__template--top-row .department__home-link img,
.department-template-modern-home .container-fluid .department__template--top-row .department__home-link img,
.department-template-modern-home .container-sm .department__template--top-row .department__home-link img,
.department-template-modern-home .container-md .department__template--top-row .department__home-link img,
.department-template-modern-home .container-lg .department__template--top-row .department__home-link img,
.department-template-modern-home .container-xl .department__template--top-row .department__home-link img,
.department-template-modern-home .container-xxl .department__template--top-row .department__home-link img,
.department-template-sculpture .container-fluid .department__template--top-row .department__home-link img,
.department-template-sculpture .container-sm .department__template--top-row .department__home-link img,
.department-template-sculpture .container-md .department__template--top-row .department__home-link img,
.department-template-sculpture .container-lg .department__template--top-row .department__home-link img,
.department-template-sculpture .container-xl .department__template--top-row .department__home-link img,
.department-template-sculpture .container-xxl .department__template--top-row .department__home-link img,
.department-template-valuations .container-fluid .department__template--top-row .department__home-link img,
.department-template-valuations .container-sm .department__template--top-row .department__home-link img,
.department-template-valuations .container-md .department__template--top-row .department__home-link img,
.department-template-valuations .container-lg .department__template--top-row .department__home-link img,
.department-template-valuations .container-xl .department__template--top-row .department__home-link img,
.department-template-valuations .container-xxl .department__template--top-row .department__home-link img,
.department-template-ceramics .container-fluid .department__template--top-row .department__home-link img,
.department-template-ceramics .container-sm .department__template--top-row .department__home-link img,
.department-template-ceramics .container-md .department__template--top-row .department__home-link img,
.department-template-ceramics .container-lg .department__template--top-row .department__home-link img,
.department-template-ceramics .container-xl .department__template--top-row .department__home-link img,
.department-template-ceramics .container-xxl .department__template--top-row .department__home-link img,
.department-template-decorative .container-fluid .department__template--top-row .department__home-link img,
.department-template-decorative .container-sm .department__template--top-row .department__home-link img,
.department-template-decorative .container-md .department__template--top-row .department__home-link img,
.department-template-decorative .container-lg .department__template--top-row .department__home-link img,
.department-template-decorative .container-xl .department__template--top-row .department__home-link img,
.department-template-decorative .container-xxl .department__template--top-row .department__home-link img,
.department-template-islamic .container-fluid .department__template--top-row .department__home-link img,
.department-template-islamic .container-sm .department__template--top-row .department__home-link img,
.department-template-islamic .container-md .department__template--top-row .department__home-link img,
.department-template-islamic .container-lg .department__template--top-row .department__home-link img,
.department-template-islamic .container-xl .department__template--top-row .department__home-link img,
.department-template-islamic .container-xxl .department__template--top-row .department__home-link img,
.department-template-british .container-fluid .department__template--top-row .department__home-link img,
.department-template-british .container-sm .department__template--top-row .department__home-link img,
.department-template-british .container-md .department__template--top-row .department__home-link img,
.department-template-british .container-lg .department__template--top-row .department__home-link img,
.department-template-british .container-xl .department__template--top-row .department__home-link img,
.department-template-british .container-xxl .department__template--top-row .department__home-link img,
.department-template-silver .container-fluid .department__template--top-row .department__home-link img,
.department-template-silver .container-sm .department__template--top-row .department__home-link img,
.department-template-silver .container-md .department__template--top-row .department__home-link img,
.department-template-silver .container-lg .department__template--top-row .department__home-link img,
.department-template-silver .container-xl .department__template--top-row .department__home-link img,
.department-template-silver .container-xxl .department__template--top-row .department__home-link img,
.department-template-watches .container-fluid .department__template--top-row .department__home-link img,
.department-template-watches .container-sm .department__template--top-row .department__home-link img,
.department-template-watches .container-md .department__template--top-row .department__home-link img,
.department-template-watches .container-lg .department__template--top-row .department__home-link img,
.department-template-watches .container-xl .department__template--top-row .department__home-link img,
.department-template-watches .container-xxl .department__template--top-row .department__home-link img,
.department-template-owner .container-fluid .department__template--top-row .department__home-link img,
.department-template-owner .container-sm .department__template--top-row .department__home-link img,
.department-template-owner .container-md .department__template--top-row .department__home-link img,
.department-template-owner .container-lg .department__template--top-row .department__home-link img,
.department-template-owner .container-xl .department__template--top-row .department__home-link img,
.department-template-owner .container-xxl .department__template--top-row .department__home-link img,
.department-template-wine .container-fluid .department__template--top-row .department__home-link img,
.department-template-wine .container-sm .department__template--top-row .department__home-link img,
.department-template-wine .container-md .department__template--top-row .department__home-link img,
.department-template-wine .container-lg .department__template--top-row .department__home-link img,
.department-template-wine .container-xl .department__template--top-row .department__home-link img,
.department-template-wine .container-xxl .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-fluid .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-sm .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-md .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-lg .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-xl .department__template--top-row .department__home-link img,
.department-template-studio-pottery .container-xxl .department__template--top-row .department__home-link img,
.single-owner-collections .container-fluid .department__template--top-row .department__home-link img,
.single-owner-collections .container-sm .department__template--top-row .department__home-link img,
.single-owner-collections .container-md .department__template--top-row .department__home-link img,
.single-owner-collections .container-lg .department__template--top-row .department__home-link img,
.single-owner-collections .container-xl .department__template--top-row .department__home-link img,
.single-owner-collections .container-xxl .department__template--top-row .department__home-link img,
.delivery-information .container-fluid .department__template--top-row .department__home-link img,
.delivery-information .container-sm .department__template--top-row .department__home-link img,
.delivery-information .container-md .department__template--top-row .department__home-link img,
.delivery-information .container-lg .department__template--top-row .department__home-link img,
.delivery-information .container-xl .department__template--top-row .department__home-link img,
.delivery-information .container-xxl .department__template--top-row .department__home-link img {
  padding-right: 1rem;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .readMoreLink a, body.site.department-template-old-masters .container-sm .department__template--top-row .readMoreLink a, body.site.department-template-old-masters .container-md .department__template--top-row .readMoreLink a, body.site.department-template-old-masters .container-lg .department__template--top-row .readMoreLink a, body.site.department-template-old-masters .container-xl .department__template--top-row .readMoreLink a, body.site.department-template-old-masters .container-xxl .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-fluid .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-sm .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-md .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-lg .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-xl .department__template--top-row .readMoreLink a,
.department-template-jewellery .container-xxl .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-fluid .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-sm .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-md .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-lg .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-xl .department__template--top-row .readMoreLink a,
.department-template-antiquities .container-xxl .department__template--top-row .readMoreLink a,
.department-template-chinese .container-fluid .department__template--top-row .readMoreLink a,
.department-template-chinese .container-sm .department__template--top-row .readMoreLink a,
.department-template-chinese .container-md .department__template--top-row .readMoreLink a,
.department-template-chinese .container-lg .department__template--top-row .readMoreLink a,
.department-template-chinese .container-xl .department__template--top-row .readMoreLink a,
.department-template-chinese .container-xxl .department__template--top-row .readMoreLink a,
.department-template-furniture .container-fluid .department__template--top-row .readMoreLink a,
.department-template-furniture .container-sm .department__template--top-row .readMoreLink a,
.department-template-furniture .container-md .department__template--top-row .readMoreLink a,
.department-template-furniture .container-lg .department__template--top-row .readMoreLink a,
.department-template-furniture .container-xl .department__template--top-row .readMoreLink a,
.department-template-furniture .container-xxl .department__template--top-row .readMoreLink a,
.department-template-design .container-fluid .department__template--top-row .readMoreLink a,
.department-template-design .container-sm .department__template--top-row .readMoreLink a,
.department-template-design .container-md .department__template--top-row .readMoreLink a,
.department-template-design .container-lg .department__template--top-row .readMoreLink a,
.department-template-design .container-xl .department__template--top-row .readMoreLink a,
.department-template-design .container-xxl .department__template--top-row .readMoreLink a,
.department-template-prints .container-fluid .department__template--top-row .readMoreLink a,
.department-template-prints .container-sm .department__template--top-row .readMoreLink a,
.department-template-prints .container-md .department__template--top-row .readMoreLink a,
.department-template-prints .container-lg .department__template--top-row .readMoreLink a,
.department-template-prints .container-xl .department__template--top-row .readMoreLink a,
.department-template-prints .container-xxl .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-fluid .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-sm .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-md .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-lg .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-xl .department__template--top-row .readMoreLink a,
.department-template-modern-home .container-xxl .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-fluid .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-sm .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-md .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-lg .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-xl .department__template--top-row .readMoreLink a,
.department-template-sculpture .container-xxl .department__template--top-row .readMoreLink a,
.department-template-valuations .container-fluid .department__template--top-row .readMoreLink a,
.department-template-valuations .container-sm .department__template--top-row .readMoreLink a,
.department-template-valuations .container-md .department__template--top-row .readMoreLink a,
.department-template-valuations .container-lg .department__template--top-row .readMoreLink a,
.department-template-valuations .container-xl .department__template--top-row .readMoreLink a,
.department-template-valuations .container-xxl .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-fluid .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-sm .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-md .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-lg .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-xl .department__template--top-row .readMoreLink a,
.department-template-ceramics .container-xxl .department__template--top-row .readMoreLink a,
.department-template-decorative .container-fluid .department__template--top-row .readMoreLink a,
.department-template-decorative .container-sm .department__template--top-row .readMoreLink a,
.department-template-decorative .container-md .department__template--top-row .readMoreLink a,
.department-template-decorative .container-lg .department__template--top-row .readMoreLink a,
.department-template-decorative .container-xl .department__template--top-row .readMoreLink a,
.department-template-decorative .container-xxl .department__template--top-row .readMoreLink a,
.department-template-islamic .container-fluid .department__template--top-row .readMoreLink a,
.department-template-islamic .container-sm .department__template--top-row .readMoreLink a,
.department-template-islamic .container-md .department__template--top-row .readMoreLink a,
.department-template-islamic .container-lg .department__template--top-row .readMoreLink a,
.department-template-islamic .container-xl .department__template--top-row .readMoreLink a,
.department-template-islamic .container-xxl .department__template--top-row .readMoreLink a,
.department-template-british .container-fluid .department__template--top-row .readMoreLink a,
.department-template-british .container-sm .department__template--top-row .readMoreLink a,
.department-template-british .container-md .department__template--top-row .readMoreLink a,
.department-template-british .container-lg .department__template--top-row .readMoreLink a,
.department-template-british .container-xl .department__template--top-row .readMoreLink a,
.department-template-british .container-xxl .department__template--top-row .readMoreLink a,
.department-template-silver .container-fluid .department__template--top-row .readMoreLink a,
.department-template-silver .container-sm .department__template--top-row .readMoreLink a,
.department-template-silver .container-md .department__template--top-row .readMoreLink a,
.department-template-silver .container-lg .department__template--top-row .readMoreLink a,
.department-template-silver .container-xl .department__template--top-row .readMoreLink a,
.department-template-silver .container-xxl .department__template--top-row .readMoreLink a,
.department-template-watches .container-fluid .department__template--top-row .readMoreLink a,
.department-template-watches .container-sm .department__template--top-row .readMoreLink a,
.department-template-watches .container-md .department__template--top-row .readMoreLink a,
.department-template-watches .container-lg .department__template--top-row .readMoreLink a,
.department-template-watches .container-xl .department__template--top-row .readMoreLink a,
.department-template-watches .container-xxl .department__template--top-row .readMoreLink a,
.department-template-owner .container-fluid .department__template--top-row .readMoreLink a,
.department-template-owner .container-sm .department__template--top-row .readMoreLink a,
.department-template-owner .container-md .department__template--top-row .readMoreLink a,
.department-template-owner .container-lg .department__template--top-row .readMoreLink a,
.department-template-owner .container-xl .department__template--top-row .readMoreLink a,
.department-template-owner .container-xxl .department__template--top-row .readMoreLink a,
.department-template-wine .container-fluid .department__template--top-row .readMoreLink a,
.department-template-wine .container-sm .department__template--top-row .readMoreLink a,
.department-template-wine .container-md .department__template--top-row .readMoreLink a,
.department-template-wine .container-lg .department__template--top-row .readMoreLink a,
.department-template-wine .container-xl .department__template--top-row .readMoreLink a,
.department-template-wine .container-xxl .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-fluid .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-sm .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-md .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-lg .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-xl .department__template--top-row .readMoreLink a,
.department-template-studio-pottery .container-xxl .department__template--top-row .readMoreLink a,
.single-owner-collections .container-fluid .department__template--top-row .readMoreLink a,
.single-owner-collections .container-sm .department__template--top-row .readMoreLink a,
.single-owner-collections .container-md .department__template--top-row .readMoreLink a,
.single-owner-collections .container-lg .department__template--top-row .readMoreLink a,
.single-owner-collections .container-xl .department__template--top-row .readMoreLink a,
.single-owner-collections .container-xxl .department__template--top-row .readMoreLink a,
.delivery-information .container-fluid .department__template--top-row .readMoreLink a,
.delivery-information .container-sm .department__template--top-row .readMoreLink a,
.delivery-information .container-md .department__template--top-row .readMoreLink a,
.delivery-information .container-lg .department__template--top-row .readMoreLink a,
.delivery-information .container-xl .department__template--top-row .readMoreLink a,
.delivery-information .container-xxl .department__template--top-row .readMoreLink a {
  text-transform: uppercase;
  font-size: 0.75rem;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-column, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-column, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-column, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-column, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-column, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-column,
  .department-template-jewellery .container-fluid .department__template--top-row .sppb-column,
  .department-template-jewellery .container-sm .department__template--top-row .sppb-column,
  .department-template-jewellery .container-md .department__template--top-row .sppb-column,
  .department-template-jewellery .container-lg .department__template--top-row .sppb-column,
  .department-template-jewellery .container-xl .department__template--top-row .sppb-column,
  .department-template-jewellery .container-xxl .department__template--top-row .sppb-column,
  .department-template-antiquities .container-fluid .department__template--top-row .sppb-column,
  .department-template-antiquities .container-sm .department__template--top-row .sppb-column,
  .department-template-antiquities .container-md .department__template--top-row .sppb-column,
  .department-template-antiquities .container-lg .department__template--top-row .sppb-column,
  .department-template-antiquities .container-xl .department__template--top-row .sppb-column,
  .department-template-antiquities .container-xxl .department__template--top-row .sppb-column,
  .department-template-chinese .container-fluid .department__template--top-row .sppb-column,
  .department-template-chinese .container-sm .department__template--top-row .sppb-column,
  .department-template-chinese .container-md .department__template--top-row .sppb-column,
  .department-template-chinese .container-lg .department__template--top-row .sppb-column,
  .department-template-chinese .container-xl .department__template--top-row .sppb-column,
  .department-template-chinese .container-xxl .department__template--top-row .sppb-column,
  .department-template-furniture .container-fluid .department__template--top-row .sppb-column,
  .department-template-furniture .container-sm .department__template--top-row .sppb-column,
  .department-template-furniture .container-md .department__template--top-row .sppb-column,
  .department-template-furniture .container-lg .department__template--top-row .sppb-column,
  .department-template-furniture .container-xl .department__template--top-row .sppb-column,
  .department-template-furniture .container-xxl .department__template--top-row .sppb-column,
  .department-template-design .container-fluid .department__template--top-row .sppb-column,
  .department-template-design .container-sm .department__template--top-row .sppb-column,
  .department-template-design .container-md .department__template--top-row .sppb-column,
  .department-template-design .container-lg .department__template--top-row .sppb-column,
  .department-template-design .container-xl .department__template--top-row .sppb-column,
  .department-template-design .container-xxl .department__template--top-row .sppb-column,
  .department-template-prints .container-fluid .department__template--top-row .sppb-column,
  .department-template-prints .container-sm .department__template--top-row .sppb-column,
  .department-template-prints .container-md .department__template--top-row .sppb-column,
  .department-template-prints .container-lg .department__template--top-row .sppb-column,
  .department-template-prints .container-xl .department__template--top-row .sppb-column,
  .department-template-prints .container-xxl .department__template--top-row .sppb-column,
  .department-template-modern-home .container-fluid .department__template--top-row .sppb-column,
  .department-template-modern-home .container-sm .department__template--top-row .sppb-column,
  .department-template-modern-home .container-md .department__template--top-row .sppb-column,
  .department-template-modern-home .container-lg .department__template--top-row .sppb-column,
  .department-template-modern-home .container-xl .department__template--top-row .sppb-column,
  .department-template-modern-home .container-xxl .department__template--top-row .sppb-column,
  .department-template-sculpture .container-fluid .department__template--top-row .sppb-column,
  .department-template-sculpture .container-sm .department__template--top-row .sppb-column,
  .department-template-sculpture .container-md .department__template--top-row .sppb-column,
  .department-template-sculpture .container-lg .department__template--top-row .sppb-column,
  .department-template-sculpture .container-xl .department__template--top-row .sppb-column,
  .department-template-sculpture .container-xxl .department__template--top-row .sppb-column,
  .department-template-valuations .container-fluid .department__template--top-row .sppb-column,
  .department-template-valuations .container-sm .department__template--top-row .sppb-column,
  .department-template-valuations .container-md .department__template--top-row .sppb-column,
  .department-template-valuations .container-lg .department__template--top-row .sppb-column,
  .department-template-valuations .container-xl .department__template--top-row .sppb-column,
  .department-template-valuations .container-xxl .department__template--top-row .sppb-column,
  .department-template-ceramics .container-fluid .department__template--top-row .sppb-column,
  .department-template-ceramics .container-sm .department__template--top-row .sppb-column,
  .department-template-ceramics .container-md .department__template--top-row .sppb-column,
  .department-template-ceramics .container-lg .department__template--top-row .sppb-column,
  .department-template-ceramics .container-xl .department__template--top-row .sppb-column,
  .department-template-ceramics .container-xxl .department__template--top-row .sppb-column,
  .department-template-decorative .container-fluid .department__template--top-row .sppb-column,
  .department-template-decorative .container-sm .department__template--top-row .sppb-column,
  .department-template-decorative .container-md .department__template--top-row .sppb-column,
  .department-template-decorative .container-lg .department__template--top-row .sppb-column,
  .department-template-decorative .container-xl .department__template--top-row .sppb-column,
  .department-template-decorative .container-xxl .department__template--top-row .sppb-column,
  .department-template-islamic .container-fluid .department__template--top-row .sppb-column,
  .department-template-islamic .container-sm .department__template--top-row .sppb-column,
  .department-template-islamic .container-md .department__template--top-row .sppb-column,
  .department-template-islamic .container-lg .department__template--top-row .sppb-column,
  .department-template-islamic .container-xl .department__template--top-row .sppb-column,
  .department-template-islamic .container-xxl .department__template--top-row .sppb-column,
  .department-template-british .container-fluid .department__template--top-row .sppb-column,
  .department-template-british .container-sm .department__template--top-row .sppb-column,
  .department-template-british .container-md .department__template--top-row .sppb-column,
  .department-template-british .container-lg .department__template--top-row .sppb-column,
  .department-template-british .container-xl .department__template--top-row .sppb-column,
  .department-template-british .container-xxl .department__template--top-row .sppb-column,
  .department-template-silver .container-fluid .department__template--top-row .sppb-column,
  .department-template-silver .container-sm .department__template--top-row .sppb-column,
  .department-template-silver .container-md .department__template--top-row .sppb-column,
  .department-template-silver .container-lg .department__template--top-row .sppb-column,
  .department-template-silver .container-xl .department__template--top-row .sppb-column,
  .department-template-silver .container-xxl .department__template--top-row .sppb-column,
  .department-template-watches .container-fluid .department__template--top-row .sppb-column,
  .department-template-watches .container-sm .department__template--top-row .sppb-column,
  .department-template-watches .container-md .department__template--top-row .sppb-column,
  .department-template-watches .container-lg .department__template--top-row .sppb-column,
  .department-template-watches .container-xl .department__template--top-row .sppb-column,
  .department-template-watches .container-xxl .department__template--top-row .sppb-column,
  .department-template-owner .container-fluid .department__template--top-row .sppb-column,
  .department-template-owner .container-sm .department__template--top-row .sppb-column,
  .department-template-owner .container-md .department__template--top-row .sppb-column,
  .department-template-owner .container-lg .department__template--top-row .sppb-column,
  .department-template-owner .container-xl .department__template--top-row .sppb-column,
  .department-template-owner .container-xxl .department__template--top-row .sppb-column,
  .department-template-wine .container-fluid .department__template--top-row .sppb-column,
  .department-template-wine .container-sm .department__template--top-row .sppb-column,
  .department-template-wine .container-md .department__template--top-row .sppb-column,
  .department-template-wine .container-lg .department__template--top-row .sppb-column,
  .department-template-wine .container-xl .department__template--top-row .sppb-column,
  .department-template-wine .container-xxl .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-fluid .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-sm .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-md .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-lg .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-xl .department__template--top-row .sppb-column,
  .department-template-studio-pottery .container-xxl .department__template--top-row .sppb-column,
  .single-owner-collections .container-fluid .department__template--top-row .sppb-column,
  .single-owner-collections .container-sm .department__template--top-row .sppb-column,
  .single-owner-collections .container-md .department__template--top-row .sppb-column,
  .single-owner-collections .container-lg .department__template--top-row .sppb-column,
  .single-owner-collections .container-xl .department__template--top-row .sppb-column,
  .single-owner-collections .container-xxl .department__template--top-row .sppb-column,
  .delivery-information .container-fluid .department__template--top-row .sppb-column,
  .delivery-information .container-sm .department__template--top-row .sppb-column,
  .delivery-information .container-md .department__template--top-row .sppb-column,
  .delivery-information .container-lg .department__template--top-row .sppb-column,
  .delivery-information .container-xl .department__template--top-row .sppb-column,
  .delivery-information .container-xxl .department__template--top-row .sppb-column {
    padding-right: 0 !important;
  }
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-title,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-title,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-title,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-title,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-design .container-sm .department__template--top-row .sppb-addon-title,
.department-template-design .container-md .department__template--top-row .sppb-addon-title,
.department-template-design .container-lg .department__template--top-row .sppb-addon-title,
.department-template-design .container-xl .department__template--top-row .sppb-addon-title,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-title,
.department-template-prints .container-md .department__template--top-row .sppb-addon-title,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-title,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-title,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-title,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-title,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-title,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-title,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-title,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-title,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-british .container-sm .department__template--top-row .sppb-addon-title,
.department-template-british .container-md .department__template--top-row .sppb-addon-title,
.department-template-british .container-lg .department__template--top-row .sppb-addon-title,
.department-template-british .container-xl .department__template--top-row .sppb-addon-title,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-title,
.department-template-silver .container-md .department__template--top-row .sppb-addon-title,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-title,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-title,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-title,
.department-template-watches .container-md .department__template--top-row .sppb-addon-title,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-title,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-title,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-title,
.department-template-owner .container-md .department__template--top-row .sppb-addon-title,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-title,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-title,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-title,
.department-template-wine .container-md .department__template--top-row .sppb-addon-title,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-title,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-title,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-title,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-title,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-title,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-title,
.delivery-information .container-sm .department__template--top-row .sppb-addon-title,
.delivery-information .container-md .department__template--top-row .sppb-addon-title,
.delivery-information .container-lg .department__template--top-row .sppb-addon-title,
.delivery-information .container-xl .department__template--top-row .sppb-addon-title,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-title {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-md .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-md .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-design .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-design .container-md .department__template--top-row .sppb-addon-title,
  .department-template-design .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-md .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-md .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-md .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-md .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-md .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-md .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-british .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-british .container-md .department__template--top-row .sppb-addon-title,
  .department-template-british .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-md .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-md .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-md .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-md .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-fluid .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-sm .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-md .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-lg .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xxl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-fluid .department__template--top-row .sppb-addon-title,
  .delivery-information .container-sm .department__template--top-row .sppb-addon-title,
  .delivery-information .container-md .department__template--top-row .sppb-addon-title,
  .delivery-information .container-lg .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xxl .department__template--top-row .sppb-addon-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-md .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-md .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-design .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-design .container-md .department__template--top-row .sppb-addon-title,
  .department-template-design .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-md .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-md .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-md .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-md .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-md .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-md .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-british .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-british .container-md .department__template--top-row .sppb-addon-title,
  .department-template-british .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-md .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-md .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-md .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-md .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-fluid .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-sm .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-md .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-lg .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xxl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-fluid .department__template--top-row .sppb-addon-title,
  .delivery-information .container-sm .department__template--top-row .sppb-addon-title,
  .delivery-information .container-md .department__template--top-row .sppb-addon-title,
  .delivery-information .container-lg .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xxl .department__template--top-row .sppb-addon-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-title, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-md .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-md .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-chinese .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-furniture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-design .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-design .container-md .department__template--top-row .sppb-addon-title,
  .department-template-design .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-design .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-md .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-prints .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-md .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-md .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-md .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-valuations .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-md .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-md .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-decorative .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-md .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-islamic .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-british .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-british .container-md .department__template--top-row .sppb-addon-title,
  .department-template-british .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-british .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-md .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-silver .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-md .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-watches .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-md .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-owner .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-md .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-wine .container-xxl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-title,
  .department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-fluid .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-sm .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-md .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-lg .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xl .department__template--top-row .sppb-addon-title,
  .single-owner-collections .container-xxl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-fluid .department__template--top-row .sppb-addon-title,
  .delivery-information .container-sm .department__template--top-row .sppb-addon-title,
  .delivery-information .container-md .department__template--top-row .sppb-addon-title,
  .delivery-information .container-lg .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xl .department__template--top-row .sppb-addon-title,
  .delivery-information .container-xxl .department__template--top-row .sppb-addon-title {
    font-size: 30px;
  }
}
body.site.department-template-old-masters .container-fluid .department__template--top-row h2, body.site.department-template-old-masters .container-sm .department__template--top-row h2, body.site.department-template-old-masters .container-md .department__template--top-row h2, body.site.department-template-old-masters .container-lg .department__template--top-row h2, body.site.department-template-old-masters .container-xl .department__template--top-row h2, body.site.department-template-old-masters .container-xxl .department__template--top-row h2,
.department-template-jewellery .container-fluid .department__template--top-row h2,
.department-template-jewellery .container-sm .department__template--top-row h2,
.department-template-jewellery .container-md .department__template--top-row h2,
.department-template-jewellery .container-lg .department__template--top-row h2,
.department-template-jewellery .container-xl .department__template--top-row h2,
.department-template-jewellery .container-xxl .department__template--top-row h2,
.department-template-antiquities .container-fluid .department__template--top-row h2,
.department-template-antiquities .container-sm .department__template--top-row h2,
.department-template-antiquities .container-md .department__template--top-row h2,
.department-template-antiquities .container-lg .department__template--top-row h2,
.department-template-antiquities .container-xl .department__template--top-row h2,
.department-template-antiquities .container-xxl .department__template--top-row h2,
.department-template-chinese .container-fluid .department__template--top-row h2,
.department-template-chinese .container-sm .department__template--top-row h2,
.department-template-chinese .container-md .department__template--top-row h2,
.department-template-chinese .container-lg .department__template--top-row h2,
.department-template-chinese .container-xl .department__template--top-row h2,
.department-template-chinese .container-xxl .department__template--top-row h2,
.department-template-furniture .container-fluid .department__template--top-row h2,
.department-template-furniture .container-sm .department__template--top-row h2,
.department-template-furniture .container-md .department__template--top-row h2,
.department-template-furniture .container-lg .department__template--top-row h2,
.department-template-furniture .container-xl .department__template--top-row h2,
.department-template-furniture .container-xxl .department__template--top-row h2,
.department-template-design .container-fluid .department__template--top-row h2,
.department-template-design .container-sm .department__template--top-row h2,
.department-template-design .container-md .department__template--top-row h2,
.department-template-design .container-lg .department__template--top-row h2,
.department-template-design .container-xl .department__template--top-row h2,
.department-template-design .container-xxl .department__template--top-row h2,
.department-template-prints .container-fluid .department__template--top-row h2,
.department-template-prints .container-sm .department__template--top-row h2,
.department-template-prints .container-md .department__template--top-row h2,
.department-template-prints .container-lg .department__template--top-row h2,
.department-template-prints .container-xl .department__template--top-row h2,
.department-template-prints .container-xxl .department__template--top-row h2,
.department-template-modern-home .container-fluid .department__template--top-row h2,
.department-template-modern-home .container-sm .department__template--top-row h2,
.department-template-modern-home .container-md .department__template--top-row h2,
.department-template-modern-home .container-lg .department__template--top-row h2,
.department-template-modern-home .container-xl .department__template--top-row h2,
.department-template-modern-home .container-xxl .department__template--top-row h2,
.department-template-sculpture .container-fluid .department__template--top-row h2,
.department-template-sculpture .container-sm .department__template--top-row h2,
.department-template-sculpture .container-md .department__template--top-row h2,
.department-template-sculpture .container-lg .department__template--top-row h2,
.department-template-sculpture .container-xl .department__template--top-row h2,
.department-template-sculpture .container-xxl .department__template--top-row h2,
.department-template-valuations .container-fluid .department__template--top-row h2,
.department-template-valuations .container-sm .department__template--top-row h2,
.department-template-valuations .container-md .department__template--top-row h2,
.department-template-valuations .container-lg .department__template--top-row h2,
.department-template-valuations .container-xl .department__template--top-row h2,
.department-template-valuations .container-xxl .department__template--top-row h2,
.department-template-ceramics .container-fluid .department__template--top-row h2,
.department-template-ceramics .container-sm .department__template--top-row h2,
.department-template-ceramics .container-md .department__template--top-row h2,
.department-template-ceramics .container-lg .department__template--top-row h2,
.department-template-ceramics .container-xl .department__template--top-row h2,
.department-template-ceramics .container-xxl .department__template--top-row h2,
.department-template-decorative .container-fluid .department__template--top-row h2,
.department-template-decorative .container-sm .department__template--top-row h2,
.department-template-decorative .container-md .department__template--top-row h2,
.department-template-decorative .container-lg .department__template--top-row h2,
.department-template-decorative .container-xl .department__template--top-row h2,
.department-template-decorative .container-xxl .department__template--top-row h2,
.department-template-islamic .container-fluid .department__template--top-row h2,
.department-template-islamic .container-sm .department__template--top-row h2,
.department-template-islamic .container-md .department__template--top-row h2,
.department-template-islamic .container-lg .department__template--top-row h2,
.department-template-islamic .container-xl .department__template--top-row h2,
.department-template-islamic .container-xxl .department__template--top-row h2,
.department-template-british .container-fluid .department__template--top-row h2,
.department-template-british .container-sm .department__template--top-row h2,
.department-template-british .container-md .department__template--top-row h2,
.department-template-british .container-lg .department__template--top-row h2,
.department-template-british .container-xl .department__template--top-row h2,
.department-template-british .container-xxl .department__template--top-row h2,
.department-template-silver .container-fluid .department__template--top-row h2,
.department-template-silver .container-sm .department__template--top-row h2,
.department-template-silver .container-md .department__template--top-row h2,
.department-template-silver .container-lg .department__template--top-row h2,
.department-template-silver .container-xl .department__template--top-row h2,
.department-template-silver .container-xxl .department__template--top-row h2,
.department-template-watches .container-fluid .department__template--top-row h2,
.department-template-watches .container-sm .department__template--top-row h2,
.department-template-watches .container-md .department__template--top-row h2,
.department-template-watches .container-lg .department__template--top-row h2,
.department-template-watches .container-xl .department__template--top-row h2,
.department-template-watches .container-xxl .department__template--top-row h2,
.department-template-owner .container-fluid .department__template--top-row h2,
.department-template-owner .container-sm .department__template--top-row h2,
.department-template-owner .container-md .department__template--top-row h2,
.department-template-owner .container-lg .department__template--top-row h2,
.department-template-owner .container-xl .department__template--top-row h2,
.department-template-owner .container-xxl .department__template--top-row h2,
.department-template-wine .container-fluid .department__template--top-row h2,
.department-template-wine .container-sm .department__template--top-row h2,
.department-template-wine .container-md .department__template--top-row h2,
.department-template-wine .container-lg .department__template--top-row h2,
.department-template-wine .container-xl .department__template--top-row h2,
.department-template-wine .container-xxl .department__template--top-row h2,
.department-template-studio-pottery .container-fluid .department__template--top-row h2,
.department-template-studio-pottery .container-sm .department__template--top-row h2,
.department-template-studio-pottery .container-md .department__template--top-row h2,
.department-template-studio-pottery .container-lg .department__template--top-row h2,
.department-template-studio-pottery .container-xl .department__template--top-row h2,
.department-template-studio-pottery .container-xxl .department__template--top-row h2,
.single-owner-collections .container-fluid .department__template--top-row h2,
.single-owner-collections .container-sm .department__template--top-row h2,
.single-owner-collections .container-md .department__template--top-row h2,
.single-owner-collections .container-lg .department__template--top-row h2,
.single-owner-collections .container-xl .department__template--top-row h2,
.single-owner-collections .container-xxl .department__template--top-row h2,
.delivery-information .container-fluid .department__template--top-row h2,
.delivery-information .container-sm .department__template--top-row h2,
.delivery-information .container-md .department__template--top-row h2,
.delivery-information .container-lg .department__template--top-row h2,
.delivery-information .container-xl .department__template--top-row h2,
.delivery-information .container-xxl .department__template--top-row h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row h2, body.site.department-template-old-masters .container-sm .department__template--top-row h2, body.site.department-template-old-masters .container-md .department__template--top-row h2, body.site.department-template-old-masters .container-lg .department__template--top-row h2, body.site.department-template-old-masters .container-xl .department__template--top-row h2, body.site.department-template-old-masters .container-xxl .department__template--top-row h2,
  .department-template-jewellery .container-fluid .department__template--top-row h2,
  .department-template-jewellery .container-sm .department__template--top-row h2,
  .department-template-jewellery .container-md .department__template--top-row h2,
  .department-template-jewellery .container-lg .department__template--top-row h2,
  .department-template-jewellery .container-xl .department__template--top-row h2,
  .department-template-jewellery .container-xxl .department__template--top-row h2,
  .department-template-antiquities .container-fluid .department__template--top-row h2,
  .department-template-antiquities .container-sm .department__template--top-row h2,
  .department-template-antiquities .container-md .department__template--top-row h2,
  .department-template-antiquities .container-lg .department__template--top-row h2,
  .department-template-antiquities .container-xl .department__template--top-row h2,
  .department-template-antiquities .container-xxl .department__template--top-row h2,
  .department-template-chinese .container-fluid .department__template--top-row h2,
  .department-template-chinese .container-sm .department__template--top-row h2,
  .department-template-chinese .container-md .department__template--top-row h2,
  .department-template-chinese .container-lg .department__template--top-row h2,
  .department-template-chinese .container-xl .department__template--top-row h2,
  .department-template-chinese .container-xxl .department__template--top-row h2,
  .department-template-furniture .container-fluid .department__template--top-row h2,
  .department-template-furniture .container-sm .department__template--top-row h2,
  .department-template-furniture .container-md .department__template--top-row h2,
  .department-template-furniture .container-lg .department__template--top-row h2,
  .department-template-furniture .container-xl .department__template--top-row h2,
  .department-template-furniture .container-xxl .department__template--top-row h2,
  .department-template-design .container-fluid .department__template--top-row h2,
  .department-template-design .container-sm .department__template--top-row h2,
  .department-template-design .container-md .department__template--top-row h2,
  .department-template-design .container-lg .department__template--top-row h2,
  .department-template-design .container-xl .department__template--top-row h2,
  .department-template-design .container-xxl .department__template--top-row h2,
  .department-template-prints .container-fluid .department__template--top-row h2,
  .department-template-prints .container-sm .department__template--top-row h2,
  .department-template-prints .container-md .department__template--top-row h2,
  .department-template-prints .container-lg .department__template--top-row h2,
  .department-template-prints .container-xl .department__template--top-row h2,
  .department-template-prints .container-xxl .department__template--top-row h2,
  .department-template-modern-home .container-fluid .department__template--top-row h2,
  .department-template-modern-home .container-sm .department__template--top-row h2,
  .department-template-modern-home .container-md .department__template--top-row h2,
  .department-template-modern-home .container-lg .department__template--top-row h2,
  .department-template-modern-home .container-xl .department__template--top-row h2,
  .department-template-modern-home .container-xxl .department__template--top-row h2,
  .department-template-sculpture .container-fluid .department__template--top-row h2,
  .department-template-sculpture .container-sm .department__template--top-row h2,
  .department-template-sculpture .container-md .department__template--top-row h2,
  .department-template-sculpture .container-lg .department__template--top-row h2,
  .department-template-sculpture .container-xl .department__template--top-row h2,
  .department-template-sculpture .container-xxl .department__template--top-row h2,
  .department-template-valuations .container-fluid .department__template--top-row h2,
  .department-template-valuations .container-sm .department__template--top-row h2,
  .department-template-valuations .container-md .department__template--top-row h2,
  .department-template-valuations .container-lg .department__template--top-row h2,
  .department-template-valuations .container-xl .department__template--top-row h2,
  .department-template-valuations .container-xxl .department__template--top-row h2,
  .department-template-ceramics .container-fluid .department__template--top-row h2,
  .department-template-ceramics .container-sm .department__template--top-row h2,
  .department-template-ceramics .container-md .department__template--top-row h2,
  .department-template-ceramics .container-lg .department__template--top-row h2,
  .department-template-ceramics .container-xl .department__template--top-row h2,
  .department-template-ceramics .container-xxl .department__template--top-row h2,
  .department-template-decorative .container-fluid .department__template--top-row h2,
  .department-template-decorative .container-sm .department__template--top-row h2,
  .department-template-decorative .container-md .department__template--top-row h2,
  .department-template-decorative .container-lg .department__template--top-row h2,
  .department-template-decorative .container-xl .department__template--top-row h2,
  .department-template-decorative .container-xxl .department__template--top-row h2,
  .department-template-islamic .container-fluid .department__template--top-row h2,
  .department-template-islamic .container-sm .department__template--top-row h2,
  .department-template-islamic .container-md .department__template--top-row h2,
  .department-template-islamic .container-lg .department__template--top-row h2,
  .department-template-islamic .container-xl .department__template--top-row h2,
  .department-template-islamic .container-xxl .department__template--top-row h2,
  .department-template-british .container-fluid .department__template--top-row h2,
  .department-template-british .container-sm .department__template--top-row h2,
  .department-template-british .container-md .department__template--top-row h2,
  .department-template-british .container-lg .department__template--top-row h2,
  .department-template-british .container-xl .department__template--top-row h2,
  .department-template-british .container-xxl .department__template--top-row h2,
  .department-template-silver .container-fluid .department__template--top-row h2,
  .department-template-silver .container-sm .department__template--top-row h2,
  .department-template-silver .container-md .department__template--top-row h2,
  .department-template-silver .container-lg .department__template--top-row h2,
  .department-template-silver .container-xl .department__template--top-row h2,
  .department-template-silver .container-xxl .department__template--top-row h2,
  .department-template-watches .container-fluid .department__template--top-row h2,
  .department-template-watches .container-sm .department__template--top-row h2,
  .department-template-watches .container-md .department__template--top-row h2,
  .department-template-watches .container-lg .department__template--top-row h2,
  .department-template-watches .container-xl .department__template--top-row h2,
  .department-template-watches .container-xxl .department__template--top-row h2,
  .department-template-owner .container-fluid .department__template--top-row h2,
  .department-template-owner .container-sm .department__template--top-row h2,
  .department-template-owner .container-md .department__template--top-row h2,
  .department-template-owner .container-lg .department__template--top-row h2,
  .department-template-owner .container-xl .department__template--top-row h2,
  .department-template-owner .container-xxl .department__template--top-row h2,
  .department-template-wine .container-fluid .department__template--top-row h2,
  .department-template-wine .container-sm .department__template--top-row h2,
  .department-template-wine .container-md .department__template--top-row h2,
  .department-template-wine .container-lg .department__template--top-row h2,
  .department-template-wine .container-xl .department__template--top-row h2,
  .department-template-wine .container-xxl .department__template--top-row h2,
  .department-template-studio-pottery .container-fluid .department__template--top-row h2,
  .department-template-studio-pottery .container-sm .department__template--top-row h2,
  .department-template-studio-pottery .container-md .department__template--top-row h2,
  .department-template-studio-pottery .container-lg .department__template--top-row h2,
  .department-template-studio-pottery .container-xl .department__template--top-row h2,
  .department-template-studio-pottery .container-xxl .department__template--top-row h2,
  .single-owner-collections .container-fluid .department__template--top-row h2,
  .single-owner-collections .container-sm .department__template--top-row h2,
  .single-owner-collections .container-md .department__template--top-row h2,
  .single-owner-collections .container-lg .department__template--top-row h2,
  .single-owner-collections .container-xl .department__template--top-row h2,
  .single-owner-collections .container-xxl .department__template--top-row h2,
  .delivery-information .container-fluid .department__template--top-row h2,
  .delivery-information .container-sm .department__template--top-row h2,
  .delivery-information .container-md .department__template--top-row h2,
  .delivery-information .container-lg .department__template--top-row h2,
  .delivery-information .container-xl .department__template--top-row h2,
  .delivery-information .container-xxl .department__template--top-row h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row h2, body.site.department-template-old-masters .container-sm .department__template--top-row h2, body.site.department-template-old-masters .container-md .department__template--top-row h2, body.site.department-template-old-masters .container-lg .department__template--top-row h2, body.site.department-template-old-masters .container-xl .department__template--top-row h2, body.site.department-template-old-masters .container-xxl .department__template--top-row h2,
  .department-template-jewellery .container-fluid .department__template--top-row h2,
  .department-template-jewellery .container-sm .department__template--top-row h2,
  .department-template-jewellery .container-md .department__template--top-row h2,
  .department-template-jewellery .container-lg .department__template--top-row h2,
  .department-template-jewellery .container-xl .department__template--top-row h2,
  .department-template-jewellery .container-xxl .department__template--top-row h2,
  .department-template-antiquities .container-fluid .department__template--top-row h2,
  .department-template-antiquities .container-sm .department__template--top-row h2,
  .department-template-antiquities .container-md .department__template--top-row h2,
  .department-template-antiquities .container-lg .department__template--top-row h2,
  .department-template-antiquities .container-xl .department__template--top-row h2,
  .department-template-antiquities .container-xxl .department__template--top-row h2,
  .department-template-chinese .container-fluid .department__template--top-row h2,
  .department-template-chinese .container-sm .department__template--top-row h2,
  .department-template-chinese .container-md .department__template--top-row h2,
  .department-template-chinese .container-lg .department__template--top-row h2,
  .department-template-chinese .container-xl .department__template--top-row h2,
  .department-template-chinese .container-xxl .department__template--top-row h2,
  .department-template-furniture .container-fluid .department__template--top-row h2,
  .department-template-furniture .container-sm .department__template--top-row h2,
  .department-template-furniture .container-md .department__template--top-row h2,
  .department-template-furniture .container-lg .department__template--top-row h2,
  .department-template-furniture .container-xl .department__template--top-row h2,
  .department-template-furniture .container-xxl .department__template--top-row h2,
  .department-template-design .container-fluid .department__template--top-row h2,
  .department-template-design .container-sm .department__template--top-row h2,
  .department-template-design .container-md .department__template--top-row h2,
  .department-template-design .container-lg .department__template--top-row h2,
  .department-template-design .container-xl .department__template--top-row h2,
  .department-template-design .container-xxl .department__template--top-row h2,
  .department-template-prints .container-fluid .department__template--top-row h2,
  .department-template-prints .container-sm .department__template--top-row h2,
  .department-template-prints .container-md .department__template--top-row h2,
  .department-template-prints .container-lg .department__template--top-row h2,
  .department-template-prints .container-xl .department__template--top-row h2,
  .department-template-prints .container-xxl .department__template--top-row h2,
  .department-template-modern-home .container-fluid .department__template--top-row h2,
  .department-template-modern-home .container-sm .department__template--top-row h2,
  .department-template-modern-home .container-md .department__template--top-row h2,
  .department-template-modern-home .container-lg .department__template--top-row h2,
  .department-template-modern-home .container-xl .department__template--top-row h2,
  .department-template-modern-home .container-xxl .department__template--top-row h2,
  .department-template-sculpture .container-fluid .department__template--top-row h2,
  .department-template-sculpture .container-sm .department__template--top-row h2,
  .department-template-sculpture .container-md .department__template--top-row h2,
  .department-template-sculpture .container-lg .department__template--top-row h2,
  .department-template-sculpture .container-xl .department__template--top-row h2,
  .department-template-sculpture .container-xxl .department__template--top-row h2,
  .department-template-valuations .container-fluid .department__template--top-row h2,
  .department-template-valuations .container-sm .department__template--top-row h2,
  .department-template-valuations .container-md .department__template--top-row h2,
  .department-template-valuations .container-lg .department__template--top-row h2,
  .department-template-valuations .container-xl .department__template--top-row h2,
  .department-template-valuations .container-xxl .department__template--top-row h2,
  .department-template-ceramics .container-fluid .department__template--top-row h2,
  .department-template-ceramics .container-sm .department__template--top-row h2,
  .department-template-ceramics .container-md .department__template--top-row h2,
  .department-template-ceramics .container-lg .department__template--top-row h2,
  .department-template-ceramics .container-xl .department__template--top-row h2,
  .department-template-ceramics .container-xxl .department__template--top-row h2,
  .department-template-decorative .container-fluid .department__template--top-row h2,
  .department-template-decorative .container-sm .department__template--top-row h2,
  .department-template-decorative .container-md .department__template--top-row h2,
  .department-template-decorative .container-lg .department__template--top-row h2,
  .department-template-decorative .container-xl .department__template--top-row h2,
  .department-template-decorative .container-xxl .department__template--top-row h2,
  .department-template-islamic .container-fluid .department__template--top-row h2,
  .department-template-islamic .container-sm .department__template--top-row h2,
  .department-template-islamic .container-md .department__template--top-row h2,
  .department-template-islamic .container-lg .department__template--top-row h2,
  .department-template-islamic .container-xl .department__template--top-row h2,
  .department-template-islamic .container-xxl .department__template--top-row h2,
  .department-template-british .container-fluid .department__template--top-row h2,
  .department-template-british .container-sm .department__template--top-row h2,
  .department-template-british .container-md .department__template--top-row h2,
  .department-template-british .container-lg .department__template--top-row h2,
  .department-template-british .container-xl .department__template--top-row h2,
  .department-template-british .container-xxl .department__template--top-row h2,
  .department-template-silver .container-fluid .department__template--top-row h2,
  .department-template-silver .container-sm .department__template--top-row h2,
  .department-template-silver .container-md .department__template--top-row h2,
  .department-template-silver .container-lg .department__template--top-row h2,
  .department-template-silver .container-xl .department__template--top-row h2,
  .department-template-silver .container-xxl .department__template--top-row h2,
  .department-template-watches .container-fluid .department__template--top-row h2,
  .department-template-watches .container-sm .department__template--top-row h2,
  .department-template-watches .container-md .department__template--top-row h2,
  .department-template-watches .container-lg .department__template--top-row h2,
  .department-template-watches .container-xl .department__template--top-row h2,
  .department-template-watches .container-xxl .department__template--top-row h2,
  .department-template-owner .container-fluid .department__template--top-row h2,
  .department-template-owner .container-sm .department__template--top-row h2,
  .department-template-owner .container-md .department__template--top-row h2,
  .department-template-owner .container-lg .department__template--top-row h2,
  .department-template-owner .container-xl .department__template--top-row h2,
  .department-template-owner .container-xxl .department__template--top-row h2,
  .department-template-wine .container-fluid .department__template--top-row h2,
  .department-template-wine .container-sm .department__template--top-row h2,
  .department-template-wine .container-md .department__template--top-row h2,
  .department-template-wine .container-lg .department__template--top-row h2,
  .department-template-wine .container-xl .department__template--top-row h2,
  .department-template-wine .container-xxl .department__template--top-row h2,
  .department-template-studio-pottery .container-fluid .department__template--top-row h2,
  .department-template-studio-pottery .container-sm .department__template--top-row h2,
  .department-template-studio-pottery .container-md .department__template--top-row h2,
  .department-template-studio-pottery .container-lg .department__template--top-row h2,
  .department-template-studio-pottery .container-xl .department__template--top-row h2,
  .department-template-studio-pottery .container-xxl .department__template--top-row h2,
  .single-owner-collections .container-fluid .department__template--top-row h2,
  .single-owner-collections .container-sm .department__template--top-row h2,
  .single-owner-collections .container-md .department__template--top-row h2,
  .single-owner-collections .container-lg .department__template--top-row h2,
  .single-owner-collections .container-xl .department__template--top-row h2,
  .single-owner-collections .container-xxl .department__template--top-row h2,
  .delivery-information .container-fluid .department__template--top-row h2,
  .delivery-information .container-sm .department__template--top-row h2,
  .delivery-information .container-md .department__template--top-row h2,
  .delivery-information .container-lg .department__template--top-row h2,
  .delivery-information .container-xl .department__template--top-row h2,
  .delivery-information .container-xxl .department__template--top-row h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .department__template--top-row h2, body.site.department-template-old-masters .container-sm .department__template--top-row h2, body.site.department-template-old-masters .container-md .department__template--top-row h2, body.site.department-template-old-masters .container-lg .department__template--top-row h2, body.site.department-template-old-masters .container-xl .department__template--top-row h2, body.site.department-template-old-masters .container-xxl .department__template--top-row h2,
  .department-template-jewellery .container-fluid .department__template--top-row h2,
  .department-template-jewellery .container-sm .department__template--top-row h2,
  .department-template-jewellery .container-md .department__template--top-row h2,
  .department-template-jewellery .container-lg .department__template--top-row h2,
  .department-template-jewellery .container-xl .department__template--top-row h2,
  .department-template-jewellery .container-xxl .department__template--top-row h2,
  .department-template-antiquities .container-fluid .department__template--top-row h2,
  .department-template-antiquities .container-sm .department__template--top-row h2,
  .department-template-antiquities .container-md .department__template--top-row h2,
  .department-template-antiquities .container-lg .department__template--top-row h2,
  .department-template-antiquities .container-xl .department__template--top-row h2,
  .department-template-antiquities .container-xxl .department__template--top-row h2,
  .department-template-chinese .container-fluid .department__template--top-row h2,
  .department-template-chinese .container-sm .department__template--top-row h2,
  .department-template-chinese .container-md .department__template--top-row h2,
  .department-template-chinese .container-lg .department__template--top-row h2,
  .department-template-chinese .container-xl .department__template--top-row h2,
  .department-template-chinese .container-xxl .department__template--top-row h2,
  .department-template-furniture .container-fluid .department__template--top-row h2,
  .department-template-furniture .container-sm .department__template--top-row h2,
  .department-template-furniture .container-md .department__template--top-row h2,
  .department-template-furniture .container-lg .department__template--top-row h2,
  .department-template-furniture .container-xl .department__template--top-row h2,
  .department-template-furniture .container-xxl .department__template--top-row h2,
  .department-template-design .container-fluid .department__template--top-row h2,
  .department-template-design .container-sm .department__template--top-row h2,
  .department-template-design .container-md .department__template--top-row h2,
  .department-template-design .container-lg .department__template--top-row h2,
  .department-template-design .container-xl .department__template--top-row h2,
  .department-template-design .container-xxl .department__template--top-row h2,
  .department-template-prints .container-fluid .department__template--top-row h2,
  .department-template-prints .container-sm .department__template--top-row h2,
  .department-template-prints .container-md .department__template--top-row h2,
  .department-template-prints .container-lg .department__template--top-row h2,
  .department-template-prints .container-xl .department__template--top-row h2,
  .department-template-prints .container-xxl .department__template--top-row h2,
  .department-template-modern-home .container-fluid .department__template--top-row h2,
  .department-template-modern-home .container-sm .department__template--top-row h2,
  .department-template-modern-home .container-md .department__template--top-row h2,
  .department-template-modern-home .container-lg .department__template--top-row h2,
  .department-template-modern-home .container-xl .department__template--top-row h2,
  .department-template-modern-home .container-xxl .department__template--top-row h2,
  .department-template-sculpture .container-fluid .department__template--top-row h2,
  .department-template-sculpture .container-sm .department__template--top-row h2,
  .department-template-sculpture .container-md .department__template--top-row h2,
  .department-template-sculpture .container-lg .department__template--top-row h2,
  .department-template-sculpture .container-xl .department__template--top-row h2,
  .department-template-sculpture .container-xxl .department__template--top-row h2,
  .department-template-valuations .container-fluid .department__template--top-row h2,
  .department-template-valuations .container-sm .department__template--top-row h2,
  .department-template-valuations .container-md .department__template--top-row h2,
  .department-template-valuations .container-lg .department__template--top-row h2,
  .department-template-valuations .container-xl .department__template--top-row h2,
  .department-template-valuations .container-xxl .department__template--top-row h2,
  .department-template-ceramics .container-fluid .department__template--top-row h2,
  .department-template-ceramics .container-sm .department__template--top-row h2,
  .department-template-ceramics .container-md .department__template--top-row h2,
  .department-template-ceramics .container-lg .department__template--top-row h2,
  .department-template-ceramics .container-xl .department__template--top-row h2,
  .department-template-ceramics .container-xxl .department__template--top-row h2,
  .department-template-decorative .container-fluid .department__template--top-row h2,
  .department-template-decorative .container-sm .department__template--top-row h2,
  .department-template-decorative .container-md .department__template--top-row h2,
  .department-template-decorative .container-lg .department__template--top-row h2,
  .department-template-decorative .container-xl .department__template--top-row h2,
  .department-template-decorative .container-xxl .department__template--top-row h2,
  .department-template-islamic .container-fluid .department__template--top-row h2,
  .department-template-islamic .container-sm .department__template--top-row h2,
  .department-template-islamic .container-md .department__template--top-row h2,
  .department-template-islamic .container-lg .department__template--top-row h2,
  .department-template-islamic .container-xl .department__template--top-row h2,
  .department-template-islamic .container-xxl .department__template--top-row h2,
  .department-template-british .container-fluid .department__template--top-row h2,
  .department-template-british .container-sm .department__template--top-row h2,
  .department-template-british .container-md .department__template--top-row h2,
  .department-template-british .container-lg .department__template--top-row h2,
  .department-template-british .container-xl .department__template--top-row h2,
  .department-template-british .container-xxl .department__template--top-row h2,
  .department-template-silver .container-fluid .department__template--top-row h2,
  .department-template-silver .container-sm .department__template--top-row h2,
  .department-template-silver .container-md .department__template--top-row h2,
  .department-template-silver .container-lg .department__template--top-row h2,
  .department-template-silver .container-xl .department__template--top-row h2,
  .department-template-silver .container-xxl .department__template--top-row h2,
  .department-template-watches .container-fluid .department__template--top-row h2,
  .department-template-watches .container-sm .department__template--top-row h2,
  .department-template-watches .container-md .department__template--top-row h2,
  .department-template-watches .container-lg .department__template--top-row h2,
  .department-template-watches .container-xl .department__template--top-row h2,
  .department-template-watches .container-xxl .department__template--top-row h2,
  .department-template-owner .container-fluid .department__template--top-row h2,
  .department-template-owner .container-sm .department__template--top-row h2,
  .department-template-owner .container-md .department__template--top-row h2,
  .department-template-owner .container-lg .department__template--top-row h2,
  .department-template-owner .container-xl .department__template--top-row h2,
  .department-template-owner .container-xxl .department__template--top-row h2,
  .department-template-wine .container-fluid .department__template--top-row h2,
  .department-template-wine .container-sm .department__template--top-row h2,
  .department-template-wine .container-md .department__template--top-row h2,
  .department-template-wine .container-lg .department__template--top-row h2,
  .department-template-wine .container-xl .department__template--top-row h2,
  .department-template-wine .container-xxl .department__template--top-row h2,
  .department-template-studio-pottery .container-fluid .department__template--top-row h2,
  .department-template-studio-pottery .container-sm .department__template--top-row h2,
  .department-template-studio-pottery .container-md .department__template--top-row h2,
  .department-template-studio-pottery .container-lg .department__template--top-row h2,
  .department-template-studio-pottery .container-xl .department__template--top-row h2,
  .department-template-studio-pottery .container-xxl .department__template--top-row h2,
  .single-owner-collections .container-fluid .department__template--top-row h2,
  .single-owner-collections .container-sm .department__template--top-row h2,
  .single-owner-collections .container-md .department__template--top-row h2,
  .single-owner-collections .container-lg .department__template--top-row h2,
  .single-owner-collections .container-xl .department__template--top-row h2,
  .single-owner-collections .container-xxl .department__template--top-row h2,
  .delivery-information .container-fluid .department__template--top-row h2,
  .delivery-information .container-sm .department__template--top-row h2,
  .delivery-information .container-md .department__template--top-row h2,
  .delivery-information .container-lg .department__template--top-row h2,
  .delivery-information .container-xl .department__template--top-row h2,
  .delivery-information .container-xxl .department__template--top-row h2 {
    font-size: 30px;
  }
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-content, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-content, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-content, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-content, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-content, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-content,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-content,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-content,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-content,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-design .container-sm .department__template--top-row .sppb-addon-content,
.department-template-design .container-md .department__template--top-row .sppb-addon-content,
.department-template-design .container-lg .department__template--top-row .sppb-addon-content,
.department-template-design .container-xl .department__template--top-row .sppb-addon-content,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-content,
.department-template-prints .container-md .department__template--top-row .sppb-addon-content,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-content,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-content,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-content,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-content,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-content,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-content,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-content,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-content,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-british .container-sm .department__template--top-row .sppb-addon-content,
.department-template-british .container-md .department__template--top-row .sppb-addon-content,
.department-template-british .container-lg .department__template--top-row .sppb-addon-content,
.department-template-british .container-xl .department__template--top-row .sppb-addon-content,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-content,
.department-template-silver .container-md .department__template--top-row .sppb-addon-content,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-content,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-content,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-content,
.department-template-watches .container-md .department__template--top-row .sppb-addon-content,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-content,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-content,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-content,
.department-template-owner .container-md .department__template--top-row .sppb-addon-content,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-content,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-content,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-content,
.department-template-wine .container-md .department__template--top-row .sppb-addon-content,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-content,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-content,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-content,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-content,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-content,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-content,
.delivery-information .container-sm .department__template--top-row .sppb-addon-content,
.delivery-information .container-md .department__template--top-row .sppb-addon-content,
.delivery-information .container-lg .department__template--top-row .sppb-addon-content,
.delivery-information .container-xl .department__template--top-row .sppb-addon-content,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-content a, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-content a, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-content a, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-content a, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-content a, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-design .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-design .container-md .department__template--top-row .sppb-addon-content a,
.department-template-design .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-design .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-md .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-british .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-british .container-md .department__template--top-row .sppb-addon-content a,
.department-template-british .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-british .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-md .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-md .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-md .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-md .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-content a,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-content a,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-content a,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-content a,
.delivery-information .container-sm .department__template--top-row .sppb-addon-content a,
.delivery-information .container-md .department__template--top-row .sppb-addon-content a,
.delivery-information .container-lg .department__template--top-row .sppb-addon-content a,
.delivery-information .container-xl .department__template--top-row .sppb-addon-content a,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-content a {
  color: #982065;
  font-family: "Arial", serif;
  font-weight: 400;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-content a:hover, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-content a:hover, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-content a:hover, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-content a:hover, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-content a:hover, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-content a:hover,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-content a:hover,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-sm .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-md .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-lg .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-xl .department__template--top-row .sppb-addon-content a:hover,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-content a:hover {
  text-decoration: none;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-content .probate__titles, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-content .probate__titles, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-content .probate__titles, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-content .probate__titles, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-content .probate__titles, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-sm .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-md .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-lg .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-xl .department__template--top-row .sppb-addon-content .probate__titles,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-content .probate__titles {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  padding-top: 2rem;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .sppb-addon-content .probate__links, body.site.department-template-old-masters .container-sm .department__template--top-row .sppb-addon-content .probate__links, body.site.department-template-old-masters .container-md .department__template--top-row .sppb-addon-content .probate__links, body.site.department-template-old-masters .container-lg .department__template--top-row .sppb-addon-content .probate__links, body.site.department-template-old-masters .container-xl .department__template--top-row .sppb-addon-content .probate__links, body.site.department-template-old-masters .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-jewellery .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-antiquities .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-chinese .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-furniture .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-design .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-prints .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-modern-home .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-sculpture .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-valuations .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-ceramics .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-decorative .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-islamic .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-british .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-silver .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-watches .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-owner .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-wine .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-md .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.department-template-studio-pottery .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-md .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.single-owner-collections .container-xxl .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-fluid .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-sm .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-md .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-lg .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-xl .department__template--top-row .sppb-addon-content .probate__links,
.delivery-information .container-xxl .department__template--top-row .sppb-addon-content .probate__links {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .department__valuation, body.site.department-template-old-masters .container-sm .department__template--top-row .department__valuation, body.site.department-template-old-masters .container-md .department__template--top-row .department__valuation, body.site.department-template-old-masters .container-lg .department__template--top-row .department__valuation, body.site.department-template-old-masters .container-xl .department__template--top-row .department__valuation, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__valuation,
.department-template-jewellery .container-fluid .department__template--top-row .department__valuation,
.department-template-jewellery .container-sm .department__template--top-row .department__valuation,
.department-template-jewellery .container-md .department__template--top-row .department__valuation,
.department-template-jewellery .container-lg .department__template--top-row .department__valuation,
.department-template-jewellery .container-xl .department__template--top-row .department__valuation,
.department-template-jewellery .container-xxl .department__template--top-row .department__valuation,
.department-template-antiquities .container-fluid .department__template--top-row .department__valuation,
.department-template-antiquities .container-sm .department__template--top-row .department__valuation,
.department-template-antiquities .container-md .department__template--top-row .department__valuation,
.department-template-antiquities .container-lg .department__template--top-row .department__valuation,
.department-template-antiquities .container-xl .department__template--top-row .department__valuation,
.department-template-antiquities .container-xxl .department__template--top-row .department__valuation,
.department-template-chinese .container-fluid .department__template--top-row .department__valuation,
.department-template-chinese .container-sm .department__template--top-row .department__valuation,
.department-template-chinese .container-md .department__template--top-row .department__valuation,
.department-template-chinese .container-lg .department__template--top-row .department__valuation,
.department-template-chinese .container-xl .department__template--top-row .department__valuation,
.department-template-chinese .container-xxl .department__template--top-row .department__valuation,
.department-template-furniture .container-fluid .department__template--top-row .department__valuation,
.department-template-furniture .container-sm .department__template--top-row .department__valuation,
.department-template-furniture .container-md .department__template--top-row .department__valuation,
.department-template-furniture .container-lg .department__template--top-row .department__valuation,
.department-template-furniture .container-xl .department__template--top-row .department__valuation,
.department-template-furniture .container-xxl .department__template--top-row .department__valuation,
.department-template-design .container-fluid .department__template--top-row .department__valuation,
.department-template-design .container-sm .department__template--top-row .department__valuation,
.department-template-design .container-md .department__template--top-row .department__valuation,
.department-template-design .container-lg .department__template--top-row .department__valuation,
.department-template-design .container-xl .department__template--top-row .department__valuation,
.department-template-design .container-xxl .department__template--top-row .department__valuation,
.department-template-prints .container-fluid .department__template--top-row .department__valuation,
.department-template-prints .container-sm .department__template--top-row .department__valuation,
.department-template-prints .container-md .department__template--top-row .department__valuation,
.department-template-prints .container-lg .department__template--top-row .department__valuation,
.department-template-prints .container-xl .department__template--top-row .department__valuation,
.department-template-prints .container-xxl .department__template--top-row .department__valuation,
.department-template-modern-home .container-fluid .department__template--top-row .department__valuation,
.department-template-modern-home .container-sm .department__template--top-row .department__valuation,
.department-template-modern-home .container-md .department__template--top-row .department__valuation,
.department-template-modern-home .container-lg .department__template--top-row .department__valuation,
.department-template-modern-home .container-xl .department__template--top-row .department__valuation,
.department-template-modern-home .container-xxl .department__template--top-row .department__valuation,
.department-template-sculpture .container-fluid .department__template--top-row .department__valuation,
.department-template-sculpture .container-sm .department__template--top-row .department__valuation,
.department-template-sculpture .container-md .department__template--top-row .department__valuation,
.department-template-sculpture .container-lg .department__template--top-row .department__valuation,
.department-template-sculpture .container-xl .department__template--top-row .department__valuation,
.department-template-sculpture .container-xxl .department__template--top-row .department__valuation,
.department-template-valuations .container-fluid .department__template--top-row .department__valuation,
.department-template-valuations .container-sm .department__template--top-row .department__valuation,
.department-template-valuations .container-md .department__template--top-row .department__valuation,
.department-template-valuations .container-lg .department__template--top-row .department__valuation,
.department-template-valuations .container-xl .department__template--top-row .department__valuation,
.department-template-valuations .container-xxl .department__template--top-row .department__valuation,
.department-template-ceramics .container-fluid .department__template--top-row .department__valuation,
.department-template-ceramics .container-sm .department__template--top-row .department__valuation,
.department-template-ceramics .container-md .department__template--top-row .department__valuation,
.department-template-ceramics .container-lg .department__template--top-row .department__valuation,
.department-template-ceramics .container-xl .department__template--top-row .department__valuation,
.department-template-ceramics .container-xxl .department__template--top-row .department__valuation,
.department-template-decorative .container-fluid .department__template--top-row .department__valuation,
.department-template-decorative .container-sm .department__template--top-row .department__valuation,
.department-template-decorative .container-md .department__template--top-row .department__valuation,
.department-template-decorative .container-lg .department__template--top-row .department__valuation,
.department-template-decorative .container-xl .department__template--top-row .department__valuation,
.department-template-decorative .container-xxl .department__template--top-row .department__valuation,
.department-template-islamic .container-fluid .department__template--top-row .department__valuation,
.department-template-islamic .container-sm .department__template--top-row .department__valuation,
.department-template-islamic .container-md .department__template--top-row .department__valuation,
.department-template-islamic .container-lg .department__template--top-row .department__valuation,
.department-template-islamic .container-xl .department__template--top-row .department__valuation,
.department-template-islamic .container-xxl .department__template--top-row .department__valuation,
.department-template-british .container-fluid .department__template--top-row .department__valuation,
.department-template-british .container-sm .department__template--top-row .department__valuation,
.department-template-british .container-md .department__template--top-row .department__valuation,
.department-template-british .container-lg .department__template--top-row .department__valuation,
.department-template-british .container-xl .department__template--top-row .department__valuation,
.department-template-british .container-xxl .department__template--top-row .department__valuation,
.department-template-silver .container-fluid .department__template--top-row .department__valuation,
.department-template-silver .container-sm .department__template--top-row .department__valuation,
.department-template-silver .container-md .department__template--top-row .department__valuation,
.department-template-silver .container-lg .department__template--top-row .department__valuation,
.department-template-silver .container-xl .department__template--top-row .department__valuation,
.department-template-silver .container-xxl .department__template--top-row .department__valuation,
.department-template-watches .container-fluid .department__template--top-row .department__valuation,
.department-template-watches .container-sm .department__template--top-row .department__valuation,
.department-template-watches .container-md .department__template--top-row .department__valuation,
.department-template-watches .container-lg .department__template--top-row .department__valuation,
.department-template-watches .container-xl .department__template--top-row .department__valuation,
.department-template-watches .container-xxl .department__template--top-row .department__valuation,
.department-template-owner .container-fluid .department__template--top-row .department__valuation,
.department-template-owner .container-sm .department__template--top-row .department__valuation,
.department-template-owner .container-md .department__template--top-row .department__valuation,
.department-template-owner .container-lg .department__template--top-row .department__valuation,
.department-template-owner .container-xl .department__template--top-row .department__valuation,
.department-template-owner .container-xxl .department__template--top-row .department__valuation,
.department-template-wine .container-fluid .department__template--top-row .department__valuation,
.department-template-wine .container-sm .department__template--top-row .department__valuation,
.department-template-wine .container-md .department__template--top-row .department__valuation,
.department-template-wine .container-lg .department__template--top-row .department__valuation,
.department-template-wine .container-xl .department__template--top-row .department__valuation,
.department-template-wine .container-xxl .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-fluid .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-sm .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-md .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-lg .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-xl .department__template--top-row .department__valuation,
.department-template-studio-pottery .container-xxl .department__template--top-row .department__valuation,
.single-owner-collections .container-fluid .department__template--top-row .department__valuation,
.single-owner-collections .container-sm .department__template--top-row .department__valuation,
.single-owner-collections .container-md .department__template--top-row .department__valuation,
.single-owner-collections .container-lg .department__template--top-row .department__valuation,
.single-owner-collections .container-xl .department__template--top-row .department__valuation,
.single-owner-collections .container-xxl .department__template--top-row .department__valuation,
.delivery-information .container-fluid .department__template--top-row .department__valuation,
.delivery-information .container-sm .department__template--top-row .department__valuation,
.delivery-information .container-md .department__template--top-row .department__valuation,
.delivery-information .container-lg .department__template--top-row .department__valuation,
.delivery-information .container-xl .department__template--top-row .department__valuation,
.delivery-information .container-xxl .department__template--top-row .department__valuation {
  background-color: #FBF8F8;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: -2rem;
  padding: 2.5rem;
  text-align: center;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .department__valuation p, body.site.department-template-old-masters .container-sm .department__template--top-row .department__valuation p, body.site.department-template-old-masters .container-md .department__template--top-row .department__valuation p, body.site.department-template-old-masters .container-lg .department__template--top-row .department__valuation p, body.site.department-template-old-masters .container-xl .department__template--top-row .department__valuation p, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__valuation p,
.department-template-jewellery .container-fluid .department__template--top-row .department__valuation p,
.department-template-jewellery .container-sm .department__template--top-row .department__valuation p,
.department-template-jewellery .container-md .department__template--top-row .department__valuation p,
.department-template-jewellery .container-lg .department__template--top-row .department__valuation p,
.department-template-jewellery .container-xl .department__template--top-row .department__valuation p,
.department-template-jewellery .container-xxl .department__template--top-row .department__valuation p,
.department-template-antiquities .container-fluid .department__template--top-row .department__valuation p,
.department-template-antiquities .container-sm .department__template--top-row .department__valuation p,
.department-template-antiquities .container-md .department__template--top-row .department__valuation p,
.department-template-antiquities .container-lg .department__template--top-row .department__valuation p,
.department-template-antiquities .container-xl .department__template--top-row .department__valuation p,
.department-template-antiquities .container-xxl .department__template--top-row .department__valuation p,
.department-template-chinese .container-fluid .department__template--top-row .department__valuation p,
.department-template-chinese .container-sm .department__template--top-row .department__valuation p,
.department-template-chinese .container-md .department__template--top-row .department__valuation p,
.department-template-chinese .container-lg .department__template--top-row .department__valuation p,
.department-template-chinese .container-xl .department__template--top-row .department__valuation p,
.department-template-chinese .container-xxl .department__template--top-row .department__valuation p,
.department-template-furniture .container-fluid .department__template--top-row .department__valuation p,
.department-template-furniture .container-sm .department__template--top-row .department__valuation p,
.department-template-furniture .container-md .department__template--top-row .department__valuation p,
.department-template-furniture .container-lg .department__template--top-row .department__valuation p,
.department-template-furniture .container-xl .department__template--top-row .department__valuation p,
.department-template-furniture .container-xxl .department__template--top-row .department__valuation p,
.department-template-design .container-fluid .department__template--top-row .department__valuation p,
.department-template-design .container-sm .department__template--top-row .department__valuation p,
.department-template-design .container-md .department__template--top-row .department__valuation p,
.department-template-design .container-lg .department__template--top-row .department__valuation p,
.department-template-design .container-xl .department__template--top-row .department__valuation p,
.department-template-design .container-xxl .department__template--top-row .department__valuation p,
.department-template-prints .container-fluid .department__template--top-row .department__valuation p,
.department-template-prints .container-sm .department__template--top-row .department__valuation p,
.department-template-prints .container-md .department__template--top-row .department__valuation p,
.department-template-prints .container-lg .department__template--top-row .department__valuation p,
.department-template-prints .container-xl .department__template--top-row .department__valuation p,
.department-template-prints .container-xxl .department__template--top-row .department__valuation p,
.department-template-modern-home .container-fluid .department__template--top-row .department__valuation p,
.department-template-modern-home .container-sm .department__template--top-row .department__valuation p,
.department-template-modern-home .container-md .department__template--top-row .department__valuation p,
.department-template-modern-home .container-lg .department__template--top-row .department__valuation p,
.department-template-modern-home .container-xl .department__template--top-row .department__valuation p,
.department-template-modern-home .container-xxl .department__template--top-row .department__valuation p,
.department-template-sculpture .container-fluid .department__template--top-row .department__valuation p,
.department-template-sculpture .container-sm .department__template--top-row .department__valuation p,
.department-template-sculpture .container-md .department__template--top-row .department__valuation p,
.department-template-sculpture .container-lg .department__template--top-row .department__valuation p,
.department-template-sculpture .container-xl .department__template--top-row .department__valuation p,
.department-template-sculpture .container-xxl .department__template--top-row .department__valuation p,
.department-template-valuations .container-fluid .department__template--top-row .department__valuation p,
.department-template-valuations .container-sm .department__template--top-row .department__valuation p,
.department-template-valuations .container-md .department__template--top-row .department__valuation p,
.department-template-valuations .container-lg .department__template--top-row .department__valuation p,
.department-template-valuations .container-xl .department__template--top-row .department__valuation p,
.department-template-valuations .container-xxl .department__template--top-row .department__valuation p,
.department-template-ceramics .container-fluid .department__template--top-row .department__valuation p,
.department-template-ceramics .container-sm .department__template--top-row .department__valuation p,
.department-template-ceramics .container-md .department__template--top-row .department__valuation p,
.department-template-ceramics .container-lg .department__template--top-row .department__valuation p,
.department-template-ceramics .container-xl .department__template--top-row .department__valuation p,
.department-template-ceramics .container-xxl .department__template--top-row .department__valuation p,
.department-template-decorative .container-fluid .department__template--top-row .department__valuation p,
.department-template-decorative .container-sm .department__template--top-row .department__valuation p,
.department-template-decorative .container-md .department__template--top-row .department__valuation p,
.department-template-decorative .container-lg .department__template--top-row .department__valuation p,
.department-template-decorative .container-xl .department__template--top-row .department__valuation p,
.department-template-decorative .container-xxl .department__template--top-row .department__valuation p,
.department-template-islamic .container-fluid .department__template--top-row .department__valuation p,
.department-template-islamic .container-sm .department__template--top-row .department__valuation p,
.department-template-islamic .container-md .department__template--top-row .department__valuation p,
.department-template-islamic .container-lg .department__template--top-row .department__valuation p,
.department-template-islamic .container-xl .department__template--top-row .department__valuation p,
.department-template-islamic .container-xxl .department__template--top-row .department__valuation p,
.department-template-british .container-fluid .department__template--top-row .department__valuation p,
.department-template-british .container-sm .department__template--top-row .department__valuation p,
.department-template-british .container-md .department__template--top-row .department__valuation p,
.department-template-british .container-lg .department__template--top-row .department__valuation p,
.department-template-british .container-xl .department__template--top-row .department__valuation p,
.department-template-british .container-xxl .department__template--top-row .department__valuation p,
.department-template-silver .container-fluid .department__template--top-row .department__valuation p,
.department-template-silver .container-sm .department__template--top-row .department__valuation p,
.department-template-silver .container-md .department__template--top-row .department__valuation p,
.department-template-silver .container-lg .department__template--top-row .department__valuation p,
.department-template-silver .container-xl .department__template--top-row .department__valuation p,
.department-template-silver .container-xxl .department__template--top-row .department__valuation p,
.department-template-watches .container-fluid .department__template--top-row .department__valuation p,
.department-template-watches .container-sm .department__template--top-row .department__valuation p,
.department-template-watches .container-md .department__template--top-row .department__valuation p,
.department-template-watches .container-lg .department__template--top-row .department__valuation p,
.department-template-watches .container-xl .department__template--top-row .department__valuation p,
.department-template-watches .container-xxl .department__template--top-row .department__valuation p,
.department-template-owner .container-fluid .department__template--top-row .department__valuation p,
.department-template-owner .container-sm .department__template--top-row .department__valuation p,
.department-template-owner .container-md .department__template--top-row .department__valuation p,
.department-template-owner .container-lg .department__template--top-row .department__valuation p,
.department-template-owner .container-xl .department__template--top-row .department__valuation p,
.department-template-owner .container-xxl .department__template--top-row .department__valuation p,
.department-template-wine .container-fluid .department__template--top-row .department__valuation p,
.department-template-wine .container-sm .department__template--top-row .department__valuation p,
.department-template-wine .container-md .department__template--top-row .department__valuation p,
.department-template-wine .container-lg .department__template--top-row .department__valuation p,
.department-template-wine .container-xl .department__template--top-row .department__valuation p,
.department-template-wine .container-xxl .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-fluid .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-sm .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-md .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-lg .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-xl .department__template--top-row .department__valuation p,
.department-template-studio-pottery .container-xxl .department__template--top-row .department__valuation p,
.single-owner-collections .container-fluid .department__template--top-row .department__valuation p,
.single-owner-collections .container-sm .department__template--top-row .department__valuation p,
.single-owner-collections .container-md .department__template--top-row .department__valuation p,
.single-owner-collections .container-lg .department__template--top-row .department__valuation p,
.single-owner-collections .container-xl .department__template--top-row .department__valuation p,
.single-owner-collections .container-xxl .department__template--top-row .department__valuation p,
.delivery-information .container-fluid .department__template--top-row .department__valuation p,
.delivery-information .container-sm .department__template--top-row .department__valuation p,
.delivery-information .container-md .department__template--top-row .department__valuation p,
.delivery-information .container-lg .department__template--top-row .department__valuation p,
.delivery-information .container-xl .department__template--top-row .department__valuation p,
.delivery-information .container-xxl .department__template--top-row .department__valuation p {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 2rem;
}
body.site.department-template-old-masters .container-fluid .department__template--top-row .department__valuation a, body.site.department-template-old-masters .container-sm .department__template--top-row .department__valuation a, body.site.department-template-old-masters .container-md .department__template--top-row .department__valuation a, body.site.department-template-old-masters .container-lg .department__template--top-row .department__valuation a, body.site.department-template-old-masters .container-xl .department__template--top-row .department__valuation a, body.site.department-template-old-masters .container-xxl .department__template--top-row .department__valuation a,
.department-template-jewellery .container-fluid .department__template--top-row .department__valuation a,
.department-template-jewellery .container-sm .department__template--top-row .department__valuation a,
.department-template-jewellery .container-md .department__template--top-row .department__valuation a,
.department-template-jewellery .container-lg .department__template--top-row .department__valuation a,
.department-template-jewellery .container-xl .department__template--top-row .department__valuation a,
.department-template-jewellery .container-xxl .department__template--top-row .department__valuation a,
.department-template-antiquities .container-fluid .department__template--top-row .department__valuation a,
.department-template-antiquities .container-sm .department__template--top-row .department__valuation a,
.department-template-antiquities .container-md .department__template--top-row .department__valuation a,
.department-template-antiquities .container-lg .department__template--top-row .department__valuation a,
.department-template-antiquities .container-xl .department__template--top-row .department__valuation a,
.department-template-antiquities .container-xxl .department__template--top-row .department__valuation a,
.department-template-chinese .container-fluid .department__template--top-row .department__valuation a,
.department-template-chinese .container-sm .department__template--top-row .department__valuation a,
.department-template-chinese .container-md .department__template--top-row .department__valuation a,
.department-template-chinese .container-lg .department__template--top-row .department__valuation a,
.department-template-chinese .container-xl .department__template--top-row .department__valuation a,
.department-template-chinese .container-xxl .department__template--top-row .department__valuation a,
.department-template-furniture .container-fluid .department__template--top-row .department__valuation a,
.department-template-furniture .container-sm .department__template--top-row .department__valuation a,
.department-template-furniture .container-md .department__template--top-row .department__valuation a,
.department-template-furniture .container-lg .department__template--top-row .department__valuation a,
.department-template-furniture .container-xl .department__template--top-row .department__valuation a,
.department-template-furniture .container-xxl .department__template--top-row .department__valuation a,
.department-template-design .container-fluid .department__template--top-row .department__valuation a,
.department-template-design .container-sm .department__template--top-row .department__valuation a,
.department-template-design .container-md .department__template--top-row .department__valuation a,
.department-template-design .container-lg .department__template--top-row .department__valuation a,
.department-template-design .container-xl .department__template--top-row .department__valuation a,
.department-template-design .container-xxl .department__template--top-row .department__valuation a,
.department-template-prints .container-fluid .department__template--top-row .department__valuation a,
.department-template-prints .container-sm .department__template--top-row .department__valuation a,
.department-template-prints .container-md .department__template--top-row .department__valuation a,
.department-template-prints .container-lg .department__template--top-row .department__valuation a,
.department-template-prints .container-xl .department__template--top-row .department__valuation a,
.department-template-prints .container-xxl .department__template--top-row .department__valuation a,
.department-template-modern-home .container-fluid .department__template--top-row .department__valuation a,
.department-template-modern-home .container-sm .department__template--top-row .department__valuation a,
.department-template-modern-home .container-md .department__template--top-row .department__valuation a,
.department-template-modern-home .container-lg .department__template--top-row .department__valuation a,
.department-template-modern-home .container-xl .department__template--top-row .department__valuation a,
.department-template-modern-home .container-xxl .department__template--top-row .department__valuation a,
.department-template-sculpture .container-fluid .department__template--top-row .department__valuation a,
.department-template-sculpture .container-sm .department__template--top-row .department__valuation a,
.department-template-sculpture .container-md .department__template--top-row .department__valuation a,
.department-template-sculpture .container-lg .department__template--top-row .department__valuation a,
.department-template-sculpture .container-xl .department__template--top-row .department__valuation a,
.department-template-sculpture .container-xxl .department__template--top-row .department__valuation a,
.department-template-valuations .container-fluid .department__template--top-row .department__valuation a,
.department-template-valuations .container-sm .department__template--top-row .department__valuation a,
.department-template-valuations .container-md .department__template--top-row .department__valuation a,
.department-template-valuations .container-lg .department__template--top-row .department__valuation a,
.department-template-valuations .container-xl .department__template--top-row .department__valuation a,
.department-template-valuations .container-xxl .department__template--top-row .department__valuation a,
.department-template-ceramics .container-fluid .department__template--top-row .department__valuation a,
.department-template-ceramics .container-sm .department__template--top-row .department__valuation a,
.department-template-ceramics .container-md .department__template--top-row .department__valuation a,
.department-template-ceramics .container-lg .department__template--top-row .department__valuation a,
.department-template-ceramics .container-xl .department__template--top-row .department__valuation a,
.department-template-ceramics .container-xxl .department__template--top-row .department__valuation a,
.department-template-decorative .container-fluid .department__template--top-row .department__valuation a,
.department-template-decorative .container-sm .department__template--top-row .department__valuation a,
.department-template-decorative .container-md .department__template--top-row .department__valuation a,
.department-template-decorative .container-lg .department__template--top-row .department__valuation a,
.department-template-decorative .container-xl .department__template--top-row .department__valuation a,
.department-template-decorative .container-xxl .department__template--top-row .department__valuation a,
.department-template-islamic .container-fluid .department__template--top-row .department__valuation a,
.department-template-islamic .container-sm .department__template--top-row .department__valuation a,
.department-template-islamic .container-md .department__template--top-row .department__valuation a,
.department-template-islamic .container-lg .department__template--top-row .department__valuation a,
.department-template-islamic .container-xl .department__template--top-row .department__valuation a,
.department-template-islamic .container-xxl .department__template--top-row .department__valuation a,
.department-template-british .container-fluid .department__template--top-row .department__valuation a,
.department-template-british .container-sm .department__template--top-row .department__valuation a,
.department-template-british .container-md .department__template--top-row .department__valuation a,
.department-template-british .container-lg .department__template--top-row .department__valuation a,
.department-template-british .container-xl .department__template--top-row .department__valuation a,
.department-template-british .container-xxl .department__template--top-row .department__valuation a,
.department-template-silver .container-fluid .department__template--top-row .department__valuation a,
.department-template-silver .container-sm .department__template--top-row .department__valuation a,
.department-template-silver .container-md .department__template--top-row .department__valuation a,
.department-template-silver .container-lg .department__template--top-row .department__valuation a,
.department-template-silver .container-xl .department__template--top-row .department__valuation a,
.department-template-silver .container-xxl .department__template--top-row .department__valuation a,
.department-template-watches .container-fluid .department__template--top-row .department__valuation a,
.department-template-watches .container-sm .department__template--top-row .department__valuation a,
.department-template-watches .container-md .department__template--top-row .department__valuation a,
.department-template-watches .container-lg .department__template--top-row .department__valuation a,
.department-template-watches .container-xl .department__template--top-row .department__valuation a,
.department-template-watches .container-xxl .department__template--top-row .department__valuation a,
.department-template-owner .container-fluid .department__template--top-row .department__valuation a,
.department-template-owner .container-sm .department__template--top-row .department__valuation a,
.department-template-owner .container-md .department__template--top-row .department__valuation a,
.department-template-owner .container-lg .department__template--top-row .department__valuation a,
.department-template-owner .container-xl .department__template--top-row .department__valuation a,
.department-template-owner .container-xxl .department__template--top-row .department__valuation a,
.department-template-wine .container-fluid .department__template--top-row .department__valuation a,
.department-template-wine .container-sm .department__template--top-row .department__valuation a,
.department-template-wine .container-md .department__template--top-row .department__valuation a,
.department-template-wine .container-lg .department__template--top-row .department__valuation a,
.department-template-wine .container-xl .department__template--top-row .department__valuation a,
.department-template-wine .container-xxl .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-fluid .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-sm .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-md .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-lg .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-xl .department__template--top-row .department__valuation a,
.department-template-studio-pottery .container-xxl .department__template--top-row .department__valuation a,
.single-owner-collections .container-fluid .department__template--top-row .department__valuation a,
.single-owner-collections .container-sm .department__template--top-row .department__valuation a,
.single-owner-collections .container-md .department__template--top-row .department__valuation a,
.single-owner-collections .container-lg .department__template--top-row .department__valuation a,
.single-owner-collections .container-xl .department__template--top-row .department__valuation a,
.single-owner-collections .container-xxl .department__template--top-row .department__valuation a,
.delivery-information .container-fluid .department__template--top-row .department__valuation a,
.delivery-information .container-sm .department__template--top-row .department__valuation a,
.delivery-information .container-md .department__template--top-row .department__valuation a,
.delivery-information .container-lg .department__template--top-row .department__valuation a,
.delivery-information .container-xl .department__template--top-row .department__valuation a,
.delivery-information .container-xxl .department__template--top-row .department__valuation a {
  background-color: #982065;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1rem;
  padding: 0.5rem 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department h4, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department h4, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department h4, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department h4, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department h4, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-md .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department h4,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-md .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department h4,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department h4,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department h4,
.department-template-chinese .container-sm .meet__team--container .meet__team--department h4,
.department-template-chinese .container-md .meet__team--container .meet__team--department h4,
.department-template-chinese .container-lg .meet__team--container .meet__team--department h4,
.department-template-chinese .container-xl .meet__team--container .meet__team--department h4,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department h4,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department h4,
.department-template-furniture .container-sm .meet__team--container .meet__team--department h4,
.department-template-furniture .container-md .meet__team--container .meet__team--department h4,
.department-template-furniture .container-lg .meet__team--container .meet__team--department h4,
.department-template-furniture .container-xl .meet__team--container .meet__team--department h4,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department h4,
.department-template-design .container-fluid .meet__team--container .meet__team--department h4,
.department-template-design .container-sm .meet__team--container .meet__team--department h4,
.department-template-design .container-md .meet__team--container .meet__team--department h4,
.department-template-design .container-lg .meet__team--container .meet__team--department h4,
.department-template-design .container-xl .meet__team--container .meet__team--department h4,
.department-template-design .container-xxl .meet__team--container .meet__team--department h4,
.department-template-prints .container-fluid .meet__team--container .meet__team--department h4,
.department-template-prints .container-sm .meet__team--container .meet__team--department h4,
.department-template-prints .container-md .meet__team--container .meet__team--department h4,
.department-template-prints .container-lg .meet__team--container .meet__team--department h4,
.department-template-prints .container-xl .meet__team--container .meet__team--department h4,
.department-template-prints .container-xxl .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-md .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department h4,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-md .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department h4,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department h4,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department h4,
.department-template-valuations .container-sm .meet__team--container .meet__team--department h4,
.department-template-valuations .container-md .meet__team--container .meet__team--department h4,
.department-template-valuations .container-lg .meet__team--container .meet__team--department h4,
.department-template-valuations .container-xl .meet__team--container .meet__team--department h4,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-md .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department h4,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department h4,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department h4,
.department-template-decorative .container-sm .meet__team--container .meet__team--department h4,
.department-template-decorative .container-md .meet__team--container .meet__team--department h4,
.department-template-decorative .container-lg .meet__team--container .meet__team--department h4,
.department-template-decorative .container-xl .meet__team--container .meet__team--department h4,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department h4,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department h4,
.department-template-islamic .container-sm .meet__team--container .meet__team--department h4,
.department-template-islamic .container-md .meet__team--container .meet__team--department h4,
.department-template-islamic .container-lg .meet__team--container .meet__team--department h4,
.department-template-islamic .container-xl .meet__team--container .meet__team--department h4,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department h4,
.department-template-british .container-fluid .meet__team--container .meet__team--department h4,
.department-template-british .container-sm .meet__team--container .meet__team--department h4,
.department-template-british .container-md .meet__team--container .meet__team--department h4,
.department-template-british .container-lg .meet__team--container .meet__team--department h4,
.department-template-british .container-xl .meet__team--container .meet__team--department h4,
.department-template-british .container-xxl .meet__team--container .meet__team--department h4,
.department-template-silver .container-fluid .meet__team--container .meet__team--department h4,
.department-template-silver .container-sm .meet__team--container .meet__team--department h4,
.department-template-silver .container-md .meet__team--container .meet__team--department h4,
.department-template-silver .container-lg .meet__team--container .meet__team--department h4,
.department-template-silver .container-xl .meet__team--container .meet__team--department h4,
.department-template-silver .container-xxl .meet__team--container .meet__team--department h4,
.department-template-watches .container-fluid .meet__team--container .meet__team--department h4,
.department-template-watches .container-sm .meet__team--container .meet__team--department h4,
.department-template-watches .container-md .meet__team--container .meet__team--department h4,
.department-template-watches .container-lg .meet__team--container .meet__team--department h4,
.department-template-watches .container-xl .meet__team--container .meet__team--department h4,
.department-template-watches .container-xxl .meet__team--container .meet__team--department h4,
.department-template-owner .container-fluid .meet__team--container .meet__team--department h4,
.department-template-owner .container-sm .meet__team--container .meet__team--department h4,
.department-template-owner .container-md .meet__team--container .meet__team--department h4,
.department-template-owner .container-lg .meet__team--container .meet__team--department h4,
.department-template-owner .container-xl .meet__team--container .meet__team--department h4,
.department-template-owner .container-xxl .meet__team--container .meet__team--department h4,
.department-template-wine .container-fluid .meet__team--container .meet__team--department h4,
.department-template-wine .container-sm .meet__team--container .meet__team--department h4,
.department-template-wine .container-md .meet__team--container .meet__team--department h4,
.department-template-wine .container-lg .meet__team--container .meet__team--department h4,
.department-template-wine .container-xl .meet__team--container .meet__team--department h4,
.department-template-wine .container-xxl .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department h4,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department h4,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department h4,
.single-owner-collections .container-sm .meet__team--container .meet__team--department h4,
.single-owner-collections .container-md .meet__team--container .meet__team--department h4,
.single-owner-collections .container-lg .meet__team--container .meet__team--department h4,
.single-owner-collections .container-xl .meet__team--container .meet__team--department h4,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department h4,
.delivery-information .container-fluid .meet__team--container .meet__team--department h4,
.delivery-information .container-sm .meet__team--container .meet__team--department h4,
.delivery-information .container-md .meet__team--container .meet__team--department h4,
.delivery-information .container-lg .meet__team--container .meet__team--department h4,
.delivery-information .container-xl .meet__team--container .meet__team--department h4,
.delivery-information .container-xxl .meet__team--container .meet__team--department h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 2rem;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  float: left;
  min-height: 190px;
  padding: 1rem;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container {
    min-height: 210px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container {
    min-height: auto;
  }
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image {
  float: left;
  width: 25%;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image {
    width: 100%;
  }
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img {
  height: 100%;
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img {
    display: block;
    margin: 0 auto;
    max-width: 150px;
  }
}
@media screen and (max-width: 574px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__image img {
    max-width: 250px;
  }
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info {
  float: left;
  padding-left: 1rem;
  width: 75%;
}
@media screen and (max-width: 1199px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info {
    margin-top: 10px;
    padding-left: 0;
    width: 100%;
  }
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow:hover {
  text-decoration: none;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .bio__arrow img {
  margin-top: -1px;
  padding-left: 0.5rem;
}
body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
.delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email {
  display: block;
  font-family: "Georgia", sans-serif;
  font-size: 0.875rem;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email, body.site.department-template-old-masters .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-jewellery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-antiquities .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-chinese .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-furniture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-design .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-prints .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-modern-home .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-sculpture .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-valuations .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-ceramics .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-decorative .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-islamic .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-british .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-silver .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-watches .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-owner .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-wine .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .department-template-studio-pottery .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .single-owner-collections .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-fluid .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-sm .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-md .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-lg .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-xl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email,
  .delivery-information .container-xxl .meet__team--container .meet__team--department .department__specialist--container .specialist__info .staff__email {
    word-wrap: break-word;
  }
}

body.department-template-valuations .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child),
body.probate-estates-insurance .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child) {
  width: 50%;
}
@media (max-width: 575.98px) {
  body.department-template-valuations .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child),
  body.probate-estates-insurance .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child) {
    width: 100%;
  }
}
body.department-template-valuations .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child) .department__specialist--container,
body.probate-estates-insurance .meet__team--container .meet__team--blocks .meet__team--department:not(:first-child) .department__specialist--container {
  min-height: 170px;
}

/* COLLECTIONS, DELIVERY */
/*================================================================================
SECTIONS

- HOME LINK
- COLLECTIONS SECTION
- EXCEPTIONS SECTION
- CONTACT FORM
- SUGGESTED DELIVERY COMPANIES
- STORAGE & CHARGES

================================================================================*/
body.site.delivery-information {
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ COLLECTIONS SECTION
  ================================================================================*/
  /*================================================================================
  $ EXCEPTIONS SECTION
  ================================================================================*/
  /*================================================================================
  $ SUGGESTED DELIVERY COMPANIES
     ================================================================================*/
  /*================================================================================
  $ STORAGE & CHARGES
     ================================================================================*/
}
body.site.delivery-information .delivery__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.delivery-information .delivery__home--link img {
  margin-right: 1rem;
  width: 2%;
}
body.site.delivery-information .delivery__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  width: 70%;
}
@media screen and (max-width: 1026px) {
  body.site.delivery-information .delivery__intro h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.delivery-information .delivery__intro h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__intro h2 {
    width: 100%;
  }
}
body.site.delivery-information .delivery__intro h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-top: 1rem;
}
body.site.delivery-information .delivery__intro p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__exceptions {
  /*================================================================================
  $ CONTACT FORM
  ================================================================================*/
}
body.site.delivery-information .delivery__exceptions h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-top: 5rem;
}
body.site.delivery-information .delivery__exceptions h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
  padding-top: 1rem;
}
body.site.delivery-information .delivery__exceptions .delivery__contact-title h4 {
  font-size: 28px;
}
body.site.delivery-information .delivery__exceptions p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  width: 95%;
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__exceptions p {
    width: 100%;
  }
}
body.site.delivery-information .delivery__exceptions a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__exceptions label {
  font-family: "Arial", serif;
}
body.site.delivery-information .delivery__exceptions input {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}
body.site.delivery-information .delivery__exceptions input::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions input:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions input::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions input:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions textarea {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__exceptions textarea::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions textarea:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions textarea::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions textarea:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 600;
}
body.site.delivery-information .delivery__exceptions span {
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding-top: 5px;
}
body.site.delivery-information .delivery__exceptions a.sell__contactBtn {
  background-color: #FFFFFF;
  border: 1px solid #982065;
  border-radius: 5px;
  color: #982065;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  padding: 0.5rem 4rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.delivery-information .delivery__exceptions a.sell__contactBtn:hover {
  background-color: #982065;
  color: #FFFFFF;
  border: 1px solid #982065;
}
body.site.delivery-information .delivery__exceptions .delivery__contact {
  background-color: #FBF8F8;
  padding: 4rem;
}
@media screen and (max-width: 1199px) {
  body.site.delivery-information .delivery__exceptions .delivery__contact {
    padding: 2rem;
  }
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__exceptions .delivery__contact {
    padding: 2rem 1rem 2rem 1rem;
  }
}
body.site.delivery-information .delivery__exceptions .delivery__contact .sppb-form-check-label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 1.2rem;
  margin-bottom: 3rem;
}
body.site.delivery-information .delivery__exceptions .delivery__contact .sppb-form-check-label:before {
  border: 2px solid #982065;
  margin-top: 1rem;
}
body.site.delivery-information .delivery__exceptions .delivery__contact .sppb-btn-custom {
  border-radius: 5px;
}
body.site.delivery-information .delivery__exceptions .delivery__contact .sppb-btn-custom:hover {
  border: 1px solid #982065;
}
body.site.delivery-information .delivery__suggested h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
body.site.delivery-information .delivery__suggested .companies__container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 2rem;
  min-height: 245px;
}
body.site.delivery-information .delivery__suggested .companies__container h5 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.delivery-information .delivery__suggested .companies__container p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__suggested .companies__container img {
  float: left;
  margin-right: 10px;
  margin-top: 6px;
  width: 4%;
}
@media screen and (max-width: 799px) {
  body.site.delivery-information .delivery__suggested .companies__container img {
    width: 2%;
  }
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__suggested .companies__container img {
    width: 4%;
  }
}
body.site.delivery-information .delivery__suggested .companies__container a {
  color: #0B0A1D;
  display: block;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__suggested .companies__container .delivery__client-link {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
}
body.site.delivery-information .delivery__storage h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.delivery-information .delivery__storage .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.delivery-information .delivery__storage h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
body.site.delivery-information .delivery__storage .department__specialist--container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  float: left;
  padding: 1rem;
  width: 100%;
}
@media screen and (max-width: 799px) {
  body.site.delivery-information .delivery__storage .department__specialist--container {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__storage .department__specialist--container {
    width: 100%;
  }
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__image {
  float: left;
  width: 25%;
}
@media screen and (max-width: 1026px) {
  body.site.delivery-information .delivery__storage .department__specialist--container .specialist__image {
    width: 40%;
  }
}
@media screen and (max-width: 799px) {
  body.site.delivery-information .delivery__storage .department__specialist--container .specialist__image {
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  body.site.delivery-information .delivery__storage .department__specialist--container .specialist__image {
    width: 40%;
  }
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info {
  float: left;
  width: 75%;
}
@media screen and (max-width: 1026px) {
  body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info {
    width: 60%;
  }
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info .bio__arrow {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.delivery-information .delivery__storage .department__specialist--container .specialist__info .bio__arrow img {
  margin-top: -1px;
  padding-left: 0.5rem;
}

/* Single Owner Collections Page

/*================================================================================
SECTIONS

- HOME LINK
- OWNER INTRO
- OWNER SPECIALIST

================================================================================*/
body.site.single-owner-collections .container-fluid, body.site.single-owner-collections .container-sm, body.site.single-owner-collections .container-md, body.site.single-owner-collections .container-lg, body.site.single-owner-collections .container-xl, body.site.single-owner-collections .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ HOME LINK
  ================================================================================*/
  /*================================================================================
  $ OWNER INTRO
  ================================================================================*/
  /*================================================================================
  $ OWNER SPECIALIST
  ================================================================================*/
}
body.site.single-owner-collections .container-fluid .owner__home--link, body.site.single-owner-collections .container-sm .owner__home--link, body.site.single-owner-collections .container-md .owner__home--link, body.site.single-owner-collections .container-lg .owner__home--link, body.site.single-owner-collections .container-xl .owner__home--link, body.site.single-owner-collections .container-xxl .owner__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.single-owner-collections .container-fluid .owner__home--link img, body.site.single-owner-collections .container-sm .owner__home--link img, body.site.single-owner-collections .container-md .owner__home--link img, body.site.single-owner-collections .container-lg .owner__home--link img, body.site.single-owner-collections .container-xl .owner__home--link img, body.site.single-owner-collections .container-xxl .owner__home--link img {
  margin-right: 1rem;
}
body.site.single-owner-collections .container-fluid .owner__intro h2, body.site.single-owner-collections .container-sm .owner__intro h2, body.site.single-owner-collections .container-md .owner__intro h2, body.site.single-owner-collections .container-lg .owner__intro h2, body.site.single-owner-collections .container-xl .owner__intro h2, body.site.single-owner-collections .container-xxl .owner__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.single-owner-collections .container-fluid .owner__intro h2, body.site.single-owner-collections .container-sm .owner__intro h2, body.site.single-owner-collections .container-md .owner__intro h2, body.site.single-owner-collections .container-lg .owner__intro h2, body.site.single-owner-collections .container-xl .owner__intro h2, body.site.single-owner-collections .container-xxl .owner__intro h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.single-owner-collections .container-fluid .owner__intro h2, body.site.single-owner-collections .container-sm .owner__intro h2, body.site.single-owner-collections .container-md .owner__intro h2, body.site.single-owner-collections .container-lg .owner__intro h2, body.site.single-owner-collections .container-xl .owner__intro h2, body.site.single-owner-collections .container-xxl .owner__intro h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.single-owner-collections .container-fluid .owner__intro h2, body.site.single-owner-collections .container-sm .owner__intro h2, body.site.single-owner-collections .container-md .owner__intro h2, body.site.single-owner-collections .container-lg .owner__intro h2, body.site.single-owner-collections .container-xl .owner__intro h2, body.site.single-owner-collections .container-xxl .owner__intro h2 {
    width: 100%;
  }
}
body.site.single-owner-collections .container-fluid .owner__intro .sppb-addon-content, body.site.single-owner-collections .container-sm .owner__intro .sppb-addon-content, body.site.single-owner-collections .container-md .owner__intro .sppb-addon-content, body.site.single-owner-collections .container-lg .owner__intro .sppb-addon-content, body.site.single-owner-collections .container-xl .owner__intro .sppb-addon-content, body.site.single-owner-collections .container-xxl .owner__intro .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.single-owner-collections .container-fluid .owner__specialist h4, body.site.single-owner-collections .container-sm .owner__specialist h4, body.site.single-owner-collections .container-md .owner__specialist h4, body.site.single-owner-collections .container-lg .owner__specialist h4, body.site.single-owner-collections .container-xl .owner__specialist h4, body.site.single-owner-collections .container-xxl .owner__specialist h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 35px;
  font-weight: 400;
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  float: left;
  min-height: 160px;
  padding: 1rem;
  width: 100%;
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__image {
  float: left;
  width: 25%;
}
@media screen and (max-width: 1026px) {
  body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__image, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__image {
    width: 40%;
  }
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info {
  float: left;
  width: 75%;
}
@media screen and (max-width: 1026px) {
  body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info {
    width: 60%;
  }
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info h5, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info h5, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info h5, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info h5, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info h5, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 28px;
  font-weight: 400;
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info p, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info p, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info p, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info p, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info p, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info .bio__arrow, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info .bio__arrow, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info .bio__arrow, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info .bio__arrow, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info .bio__arrow, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info .bio__arrow {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.single-owner-collections .container-fluid .owner__specialist .department__specialist--container .specialist__info .bio__arrow img, body.site.single-owner-collections .container-sm .owner__specialist .department__specialist--container .specialist__info .bio__arrow img, body.site.single-owner-collections .container-md .owner__specialist .department__specialist--container .specialist__info .bio__arrow img, body.site.single-owner-collections .container-lg .owner__specialist .department__specialist--container .specialist__info .bio__arrow img, body.site.single-owner-collections .container-xl .owner__specialist .department__specialist--container .specialist__info .bio__arrow img, body.site.single-owner-collections .container-xxl .owner__specialist .department__specialist--container .specialist__info .bio__arrow img {
  margin-top: -1px;
  padding-left: 0.5rem;
}

/* SERVICES PAGE */
/*================================================================================
SECTIONS

- SERVICES INTRO
- RIGHT SIDE - CONTACT FORM
- SPECIALIST SECTION
- SERVICES POINTS

================================================================================*/
body.site.professional-services-valuations .container-fluid, body.site.professional-services-valuations .container-sm, body.site.professional-services-valuations .container-md, body.site.professional-services-valuations .container-lg, body.site.professional-services-valuations .container-xl, body.site.professional-services-valuations .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ SERVICES INTRO
  ================================================================================*/
  /*================================================================================
  $ SPECIALIST SECTION
  ================================================================================*/
  /*================================================================================
  $ SERVICES POINTS
  ================================================================================*/
}
body.site.professional-services-valuations .container-fluid .services__intro, body.site.professional-services-valuations .container-sm .services__intro, body.site.professional-services-valuations .container-md .services__intro, body.site.professional-services-valuations .container-lg .services__intro, body.site.professional-services-valuations .container-xl .services__intro, body.site.professional-services-valuations .container-xxl .services__intro {
  /*================================================================================
  $ RIGHT SIDE - CONTACT FORM
  ================================================================================*/
}
body.site.professional-services-valuations .container-fluid .services__intro a.services__home--link, body.site.professional-services-valuations .container-sm .services__intro a.services__home--link, body.site.professional-services-valuations .container-md .services__intro a.services__home--link, body.site.professional-services-valuations .container-lg .services__intro a.services__home--link, body.site.professional-services-valuations .container-xl .services__intro a.services__home--link, body.site.professional-services-valuations .container-xxl .services__intro a.services__home--link {
  color: #982065;
  font-size: 0.875rem;
  text-decoration: none;
  text-transform: uppercase;
}
body.site.professional-services-valuations .container-fluid .services__intro a.services__home--link img, body.site.professional-services-valuations .container-sm .services__intro a.services__home--link img, body.site.professional-services-valuations .container-md .services__intro a.services__home--link img, body.site.professional-services-valuations .container-lg .services__intro a.services__home--link img, body.site.professional-services-valuations .container-xl .services__intro a.services__home--link img, body.site.professional-services-valuations .container-xxl .services__intro a.services__home--link img {
  margin-right: 1rem;
  width: 4%;
}
body.site.professional-services-valuations .container-fluid .services__intro h2, body.site.professional-services-valuations .container-sm .services__intro h2, body.site.professional-services-valuations .container-md .services__intro h2, body.site.professional-services-valuations .container-lg .services__intro h2, body.site.professional-services-valuations .container-xl .services__intro h2, body.site.professional-services-valuations .container-xxl .services__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.professional-services-valuations .container-fluid .services__intro h2, body.site.professional-services-valuations .container-sm .services__intro h2, body.site.professional-services-valuations .container-md .services__intro h2, body.site.professional-services-valuations .container-lg .services__intro h2, body.site.professional-services-valuations .container-xl .services__intro h2, body.site.professional-services-valuations .container-xxl .services__intro h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.professional-services-valuations .container-fluid .services__intro h2, body.site.professional-services-valuations .container-sm .services__intro h2, body.site.professional-services-valuations .container-md .services__intro h2, body.site.professional-services-valuations .container-lg .services__intro h2, body.site.professional-services-valuations .container-xl .services__intro h2, body.site.professional-services-valuations .container-xxl .services__intro h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.professional-services-valuations .container-fluid .services__intro h2, body.site.professional-services-valuations .container-sm .services__intro h2, body.site.professional-services-valuations .container-md .services__intro h2, body.site.professional-services-valuations .container-lg .services__intro h2, body.site.professional-services-valuations .container-xl .services__intro h2, body.site.professional-services-valuations .container-xxl .services__intro h2 {
    width: 100%;
  }
}
body.site.professional-services-valuations .container-fluid .services__intro .sppb-addon-content, body.site.professional-services-valuations .container-sm .services__intro .sppb-addon-content, body.site.professional-services-valuations .container-md .services__intro .sppb-addon-content, body.site.professional-services-valuations .container-lg .services__intro .sppb-addon-content, body.site.professional-services-valuations .container-xl .services__intro .sppb-addon-content, body.site.professional-services-valuations .container-xxl .services__intro .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side, body.site.professional-services-valuations .container-md .services__intro .contact__right--side, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side {
  background-color: #FBF8F8;
  padding: 4rem;
}
@media screen and (max-width: 599px) {
  body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side, body.site.professional-services-valuations .container-md .services__intro .contact__right--side, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side {
    padding: 2rem 1rem 2rem 1rem;
  }
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side h4, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side h4, body.site.professional-services-valuations .container-md .services__intro .contact__right--side h4, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side h4, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side h4, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 35px;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--intro, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--intro, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--intro, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--intro, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--intro, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--intro {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--intro a, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--intro a, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--intro a, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--intro a, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--intro a, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--intro a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container label, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container label, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container label, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container label, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container label, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container label {
  color: #0B0A1D !important;
  font-family: "Arial", serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .sppb-form-check-label, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .sppb-form-check-label, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .sppb-form-check-label, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .sppb-form-check-label, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .sppb-form-check-label, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .sppb-form-check-label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 2px;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .sppb-form-check-label:before {
  border: 2px solid #982065;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container input, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container input, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container input, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container input, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container input, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container input {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container input::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container input:-moz-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container input:-moz-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container input:-moz-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container input:-moz-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container input:-moz-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container input:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container input::-moz-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container input::-moz-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container input::-moz-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container input::-moz-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container input::-moz-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container input::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container input:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container textarea, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container textarea, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container textarea, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container textarea, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container textarea, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container textarea {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container textarea::-webkit-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container textarea:-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container textarea::-moz-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container textarea:-ms-input-placeholder {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .sppb-text-success, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .sppb-text-success, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .sppb-text-success, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .sppb-text-success, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .sppb-text-success, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .sppb-text-success {
  color: #2FB400;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1rem;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container span, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container span, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container span, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container span, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container span, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container span {
  color: #BA2B2B;
  display: inline-block;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 1rem;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .started-btn-contact, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .started-btn-contact, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .started-btn-contact, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .started-btn-contact, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .started-btn-contact, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .started-btn-contact {
  margin-top: 2rem;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .started-btn-contact button, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .started-btn-contact button, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .started-btn-contact button, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .started-btn-contact button, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .started-btn-contact button, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .started-btn-contact button {
  border-radius: 5px;
}
body.site.professional-services-valuations .container-fluid .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover, body.site.professional-services-valuations .container-sm .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover, body.site.professional-services-valuations .container-md .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover, body.site.professional-services-valuations .container-lg .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover, body.site.professional-services-valuations .container-xl .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover, body.site.professional-services-valuations .container-xxl .services__intro .contact__right--side .contact__form--container .started-btn-contact button:hover {
  border: 1px solid #982065;
}
@media screen and (max-width: 1199px) {
  body.site.professional-services-valuations .container-fluid .services__specialist, body.site.professional-services-valuations .container-sm .services__specialist, body.site.professional-services-valuations .container-md .services__specialist, body.site.professional-services-valuations .container-lg .services__specialist, body.site.professional-services-valuations .container-xl .services__specialist, body.site.professional-services-valuations .container-xxl .services__specialist {
    padding-top: 70px !important;
  }
}
@media screen and (max-width: 992px) {
  body.site.professional-services-valuations .container-fluid .services__specialist, body.site.professional-services-valuations .container-sm .services__specialist, body.site.professional-services-valuations .container-md .services__specialist, body.site.professional-services-valuations .container-lg .services__specialist, body.site.professional-services-valuations .container-xl .services__specialist, body.site.professional-services-valuations .container-xxl .services__specialist {
    padding-top: 18rem !important;
  }
}
@media screen and (max-width: 599px) {
  body.site.professional-services-valuations .container-fluid .services__specialist, body.site.professional-services-valuations .container-sm .services__specialist, body.site.professional-services-valuations .container-md .services__specialist, body.site.professional-services-valuations .container-lg .services__specialist, body.site.professional-services-valuations .container-xl .services__specialist, body.site.professional-services-valuations .container-xxl .services__specialist {
    padding-top: 20rem !important;
  }
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column {
  margin-top: -18rem;
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column h4, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column h4, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column h4, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column h4, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column h4, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column h4 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 35px;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  float: left;
  min-height: 160px;
  padding: 1rem;
  width: 100%;
}
@media screen and (max-width: 992px) {
  body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container {
    width: 100%;
  }
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__image {
  float: left;
  width: 40%;
}
@media screen and (max-width: 1026px) {
  body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__image {
    width: 40%;
  }
}
@media screen and (max-width: 992px) {
  body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__image, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__image {
    width: 30%;
  }
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info {
  float: left;
  width: 60%;
}
@media screen and (max-width: 1026px) {
  body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info {
    width: 60%;
  }
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info h5 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info p, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info p, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info p, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info p, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info p, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.professional-services-valuations .container-fluid .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img, body.site.professional-services-valuations .container-sm .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img, body.site.professional-services-valuations .container-md .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img, body.site.professional-services-valuations .container-lg .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img, body.site.professional-services-valuations .container-xl .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img, body.site.professional-services-valuations .container-xxl .services__specialist .specialist__left--column .department__specialist--container .specialist__info .bio__arrow img {
  margin-top: -1px;
  padding-left: 0.5rem;
}
body.site.professional-services-valuations .container-fluid .services__questions h3, body.site.professional-services-valuations .container-sm .services__questions h3, body.site.professional-services-valuations .container-md .services__questions h3, body.site.professional-services-valuations .container-lg .services__questions h3, body.site.professional-services-valuations .container-xl .services__questions h3, body.site.professional-services-valuations .container-xxl .services__questions h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}

/* CAREERS PAGE */
/*================================================================================
SECTIONS

- CAREERS INTRO
- CAREERS POINTS

================================================================================*/
body.site.careers .container-fluid, body.site.careers .container-sm, body.site.careers .container-md, body.site.careers .container-lg, body.site.careers .container-xl, body.site.careers .container-xxl {
  --bs-gutter-x: 0rem;
  --bs-gutter-y: 0rem;
  /*================================================================================
  $ CAREERS INTRO
  ================================================================================*/
  /*================================================================================
  $ CAREERS POINTS
  ================================================================================*/
}
body.site.careers .container-fluid .careers__intro img, body.site.careers .container-sm .careers__intro img, body.site.careers .container-md .careers__intro img, body.site.careers .container-lg .careers__intro img, body.site.careers .container-xl .careers__intro img, body.site.careers .container-xxl .careers__intro img {
  margin-right: 0.5rem;
}
body.site.careers .container-fluid .careers__intro a, body.site.careers .container-sm .careers__intro a, body.site.careers .container-md .careers__intro a, body.site.careers .container-lg .careers__intro a, body.site.careers .container-xl .careers__intro a, body.site.careers .container-xxl .careers__intro a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.careers .container-fluid .careers__intro h2, body.site.careers .container-sm .careers__intro h2, body.site.careers .container-md .careers__intro h2, body.site.careers .container-lg .careers__intro h2, body.site.careers .container-xl .careers__intro h2, body.site.careers .container-xxl .careers__intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}
@media screen and (max-width: 1026px) {
  body.site.careers .container-fluid .careers__intro h2, body.site.careers .container-sm .careers__intro h2, body.site.careers .container-md .careers__intro h2, body.site.careers .container-lg .careers__intro h2, body.site.careers .container-xl .careers__intro h2, body.site.careers .container-xxl .careers__intro h2 {
    width: 90%;
  }
}
@media screen and (max-width: 799px) {
  body.site.careers .container-fluid .careers__intro h2, body.site.careers .container-sm .careers__intro h2, body.site.careers .container-md .careers__intro h2, body.site.careers .container-lg .careers__intro h2, body.site.careers .container-xl .careers__intro h2, body.site.careers .container-xxl .careers__intro h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  body.site.careers .container-fluid .careers__intro h2, body.site.careers .container-sm .careers__intro h2, body.site.careers .container-md .careers__intro h2, body.site.careers .container-lg .careers__intro h2, body.site.careers .container-xl .careers__intro h2, body.site.careers .container-xxl .careers__intro h2 {
    width: 100%;
  }
}
body.site.careers .container-fluid .careers__intro .sppb-addon-content, body.site.careers .container-sm .careers__intro .sppb-addon-content, body.site.careers .container-md .careers__intro .sppb-addon-content, body.site.careers .container-lg .careers__intro .sppb-addon-content, body.site.careers .container-xl .careers__intro .sppb-addon-content, body.site.careers .container-xxl .careers__intro .sppb-addon-content {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.careers .container-fluid .careers__points h3, body.site.careers .container-sm .careers__points h3, body.site.careers .container-md .careers__points h3, body.site.careers .container-lg .careers__points h3, body.site.careers .container-xl .careers__points h3, body.site.careers .container-xxl .careers__points h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
}

/* ---------------- */
/* Features */
/* ---------------- */
/* Pages */
/* Silverstone Advanced Search page


/*================================================================================
SECTIONS

TOP SECTION - SEARCH BAR
- SEARCH BAR CONTAINER
- SEARCH BAR
- CLOSE CROSS
- POPULAR SEARCHES

BOTTOM SECTION - ADVANCED SEARCH
-





================================================================================*/
.search-container {
  width: 100%;
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
.search-container .search__bar--container {
  background-image: url("../../../images/search/search-bar-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 701px;
  position: relative;
  background-position: 50% 100%;
  padding-bottom: 30px;
  /*================================================================================

  ================================================================================*/
}
@media screen and (max-width: 416px) {
  .search-container .search__bar--container {
    padding-top: 80px;
  }
}
.search-container .search__bar--container .search-title {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 40px;
  font-weight: 700;
  left: 30%;
  position: absolute;
  text-transform: uppercase;
  top: 25%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  z-index: 1;
}
.search-container .search__bar--container .search__bar {
  padding-top: 250px;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
  /*================================================================================

  ================================================================================*/
}
@media screen and (max-width: 1239px) {
  .search-container .search__bar--container .search__bar {
    padding-left: 50px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar {
    padding-top: 200px;
  }
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar {
    padding-left: 40px;
    padding-right: 50px;
    padding-top: 150px;
  }
}
@media screen and (max-width: 416px) {
  .search-container .search__bar--container .search__bar {
    padding-top: 30px;
    padding-right: 40px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--title h1 {
  color: #FFFFFF;
  padding-bottom: 30px;
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar .search__bar--title h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 699px) {
  .search-container .search__bar--container .search__bar .search__bar--title h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 416px) {
  .search-container .search__bar--container .search__bar .search__bar--title h1 {
    font-size: 25px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--cross .search__bar--close-cross {
  color: #808080;
  display: inline-block;
  font-family: "Georgia", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  padding-right: 40px;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
.search-container .search__bar--container .search__bar .search__bar--cross .search__bar--close-cross::after {
  content: "";
  background: url(../../../images/icons/big-close-cross.png) right top no-repeat transparent;
  height: 30px;
  position: absolute;
  width: 30px;
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--cross .search__bar--close-cross::after {
    top: -10px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--cross .search__bar--close-cross:hover {
  color: black;
  text-decoration: none;
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--select {
  background-color: #FFFFFF;
  background-image: url("../../../images/icons/arrow-down.png");
  background-size: contain;
  background-size: 18px;
  background-position: 95% center;
  background-repeat: no-repeat;
  border-right: none;
  border-radius: 0;
  color: #982065;
  display: inline !important;
  font-size: 18px;
  font-weight: bold;
  height: 68px;
  padding-left: 15px;
  text-transform: uppercase;
  width: 14%;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--select {
    width: 22%;
  }
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--select {
    margin-bottom: 10px;
    width: 100%;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input {
  border-radius: 0;
  height: 70px;
  margin-left: -5px;
  width: 71%;
  border-left: 1px solid #808080;
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input {
    width: 55%;
  }
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input::-webkit-input-placeholder {
  font-size: 16px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input::-webkit-input-placeholder {
    padding-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input:-moz-placeholder {
  font-size: 16px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input:-moz-placeholder {
    padding-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input::-moz-placeholder {
  font-size: 16px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input::-moz-placeholder {
    padding-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input:-ms-input-placeholder {
  font-size: 16px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input:-ms-input-placeholder {
    padding-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--input[type=text] {
  border-radius: 0;
  font-size: 16px;
  padding-left: 20px;
}
.search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--button-top {
  background-color: #A68F65;
  border: 1px solid #A68F65;
  border-radius: 0;
  color: #FFFFFF;
  font-weight: bold;
  height: 70px;
  margin-left: -5px;
  text-transform: uppercase;
  width: 14%;
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--button-top {
    width: 22%;
  }
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--form-top .search__bar--button-top {
    width: 100%;
    margin-left: 0px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--form-top .chzn-container {
  display: none !important;
}
.search-container .search__bar--container .search__bar .search__bar--popular-searches {
  padding-top: 50px;
}
.search-container .search__bar--container .search__bar .search__bar--popular-searches .search__bar--popular-searches {
  color: #FFFFFF;
  display: inline;
  font-size: 16px;
  font-weight: bold;
  padding-right: 10px;
}
.search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results {
  display: inline;
  padding-left: 0px;
}
@media screen and (max-width: 770px) {
  .search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results {
    display: block;
    padding-top: 15px;
  }
}
.search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results li {
  border-bottom: 1px solid #A68F65;
  color: #FFFFFF;
  display: inline;
  list-style-type: none;
  margin-right: 20px;
  padding-bottom: 5px;
}
@media screen and (max-width: 416px) {
  .search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results li:nth-child(3) {
    display: block;
    padding-top: 20px;
    width: 30%;
  }
}
@media screen and (max-width: 416px) {
  .search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results li:nth-child(4) {
    display: block;
    padding-top: 20px;
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  .search-container .search__bar--container .search__bar .search__bar--popular-searches ul.search__bar--search-results li:nth-child(5) {
    display: block;
    padding-top: 20px;
    width: 30%;
  }
}
.search-container .advanced__search--container {
  padding-top: 70px;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container {
    padding-top: 40px;
  }
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container {
    padding-top: 30px;
  }
}
.search-container .advanced__search--container .advanced__search--form .advanced__search--results-info {
  color: #808080;
  text-transform: uppercase;
  padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .advanced__search--form .advanced__search--results-info {
    padding-left: 10px;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters {
  display: inline;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters {
    padding-left: 10px;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters .advanced__search--filter-title {
  display: inline;
  padding-right: 10px;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .advanced__search--filter-title p {
  display: inline;
  color: #222E5B;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-modal {
  display: inline;
  margin-right: 10px;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-modal .advanced__search--model-select {
  background-image: url("../../../images/icons/blue-car.png");
  background-size: contain;
  background-size: 18px;
  background-position: left;
  background-position-x: 5px;
  background-repeat: no-repeat;
  border: 1px solid #808080;
  color: #808080;
  display: inline !important;
  height: 32px;
  padding-left: 25px;
  position: relative;
  width: 13%;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-modal .advanced__search--model-select {
    width: 20%;
  }
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-modal .advanced__search--model-select {
    width: 100%;
    display: block !important;
    margin-top: 10px;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-modal .chzn-container {
  display: none !important;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-year {
  display: inline;
  margin-right: 10px;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-year .advanced__search--year-select {
  background-image: url("../../../images/icons/year.png");
  background-size: contain;
  background-size: 18px;
  background-position: left;
  background-position-x: 5px;
  background-repeat: no-repeat;
  border: 1px solid #808080;
  color: #808080;
  display: inline !important;
  height: 32px;
  padding-left: 25px;
  position: relative;
  width: 13%;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-year .advanced__search--year-select {
    width: 20%;
  }
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-year .advanced__search--year-select {
    width: 100%;
    display: block !important;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-year .chzn-container {
  display: none !important;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-colour {
  display: inline;
  margin-right: 10px;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-colour .advanced__search--colour-select {
  background-image: url("../../../images/icons/blue-circle.png");
  background-size: contain;
  background-size: 18px;
  background-position: left;
  background-position-x: 5px;
  background-repeat: no-repeat;
  border: 1px solid #808080;
  color: #808080;
  display: inline !important;
  height: 32px;
  padding-left: 25px;
  position: relative;
  width: 13%;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-colour .advanced__search--colour-select {
    width: 20%;
  }
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-colour .advanced__search--colour-select {
    width: 100%;
    display: block !important;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-colour .chzn-container {
  display: none !important;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-drive {
  display: inline;
  margin-right: 10px;
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-drive .advanced__search--drive-select {
  background-image: url("../../../images/icons/drive.png");
  background-size: contain;
  background-size: 18px;
  background-position: left;
  background-position-x: 5px;
  background-repeat: no-repeat;
  border: 1px solid #808080;
  color: #808080;
  display: inline !important;
  height: 32px;
  padding-left: 25px;
  position: relative;
  width: 13%;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-drive .advanced__search--drive-select {
    width: 20%;
  }
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .advanced__search--form .search-filters .search-drive .advanced__search--drive-select {
    width: 100%;
    display: block !important;
  }
}
.search-container .advanced__search--container .advanced__search--form .search-filters .search-drive .chzn-container {
  display: none !important;
}
.search-container .advanced__search--container .search-content {
  padding-top: 50px;
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .search-content {
    padding-top: 0px;
  }
}
.search-container .advanced__search--container .search-content .search-container .pagination-container {
  padding: 10px;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p {
  color: #222E5B;
  font-size: 16px;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p.active {
  color: #222E5B;
  font-weight: 600;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p.prev {
  color: #222E5B;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p.prev:hover {
  font-weight: 600;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p.next {
  color: #222E5B;
}
.search-container .advanced__search--container .search-content .search-container .pagination-container p.next:hover {
  font-weight: 600;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list {
  padding-left: 0px;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot {
  list-style-type: none;
  padding-bottom: 20px;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container,
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container {
  margin-top: 200px;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container,
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container {
    margin-bottom: 40px;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container > a,
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container > a {
  background-color: #A68F65;
  border: 1px solid #A68F65;
  color: #FFFFFF;
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 40px;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 416px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container > a,
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container > a {
    font-size: 16px;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container > a:hover, .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container > a:active, .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container > a:focus,
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container > a:hover,
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container > a:active,
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .advanced__search--fill-details-container > a:focus {
  background-color: #FFFFFF;
  border: 1px solid #A68F65;
  color: #A68F65;
  text-decoration: none;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left {
  padding-right: 0px;
}
@media screen and (max-width: 770px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left {
    padding-left: 0px;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left .advanced__search--lot-image {
  position: relative;
  transition: all ease-in-out 0.5s;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left .advanced__search--lot-image img {
  transition: all ease-in-out 0.5s;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left .advanced__search--lot-image .watchCount {
  transition: all ease-in-out 0.5s;
  background: rgba(2, 8, 30, 0.5);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  height: 43px;
  line-height: 43px;
  border-radius: 21px;
  position: absolute;
  left: 15px;
  top: 15px;
  padding-left: 55px;
  padding-right: 20px;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-left .advanced__search--lot-image .watchCount span {
  transition: all ease-in-out 0.5s;
  width: 43px;
  height: 43px;
  line-height: 45px;
  text-align: center;
  background: white;
  border-radius: 50%;
  color: #C4C4C4;
  position: absolute;
  left: -1px;
  font-size: 20px;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle {
  border: 1px solid #E5E5E5;
  padding-left: 15px;
  padding-top: 30px;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle {
    padding-top: 20px;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .information-container .advanced__search--lot-info {
  margin-bottom: 3px;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .information-container .advanced__search--lot-info .advanced__search--auction-name {
  color: #222E5B;
  text-transform: uppercase;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .information-container .advanced__search--lot-name {
  color: #222E5B;
  font-size: 20px;
  font-weight: bold;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .information-container .advanced__search--lot-estimate {
  color: #808080;
  margin-top: 40px;
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container {
  display: none;
  margin-bottom: 15px;
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container {
    display: block;
  }
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-middle .advanced__search--fill-details-container a {
    display: block;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right {
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 1199px) {
  .search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right {
    display: none;
  }
}
.search-container .advanced__search--container .search-content .search-container ul.lot-list li.lot .lot-right .auction-actions .advanced__search--your-bid {
  color: #808080;
  font-size: 15px;
  font-weight: 600;
  padding-top: 30px;
  text-transform: uppercase;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing {
  border: 1px solid rgba(65, 61, 61, 0.5);
  flex-direction: row;
  border-radius: 0;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .image {
  padding: 15px 15px;
}
@media (max-width: 991.98px) {
  .search-container .auction-content #am-search-results-list .lot-listing .lotListing .image {
    padding: 0px;
  }
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .info {
  max-width: 470px;
}
@media (max-width: 1199.98px) {
  .search-container .auction-content #am-search-results-list .lot-listing .lotListing .info {
    max-width: 100%;
  }
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .info p {
  margin-bottom: 0;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .info p:last-child {
  margin-bottom: 0px;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .info a.lot-details-url {
  color: #982065;
  text-decoration: underline;
  font-weight: 700;
  font-size: 15px;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls {
  border-left: 1px solid rgba(65, 61, 61, 0.5);
  min-width: 205px;
  padding: 0;
  background: #F3EDEA;
}
@media (min-width: 1200px) {
  .search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls {
    flex: 1;
    border-left: 1px solid #982065;
  }
}
@media (max-width: 991.98px) {
  .search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls {
    min-width: 150px;
  }
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls p.lotNo {
  background: #982065;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 8px;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls .control-2 {
  align-self: flex-start;
}
.search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls .control-3 {
  padding: 10px;
}
@media (min-width: 820px) and (max-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .search-container .auction-content #am-search-results-list .lot-listing .lotListing .controls .control-3 .btn {
    padding: 0 20px;
  }
}

#go-to-page {
  width: 50px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
  height: 46px;
  border-radius: 0px;
  border: 1px solid #982065;
}

/*================================================================================
Search Results PAGE
================================================================================*/
body.site.view-search .ui-autocomplete li {
  margin-left: -32px;
}

body.site {
  font-family: "Arial", serif;
}
body.site .ui-autocomplete {
  z-index: 99;
}
body.site .ui-autocomplete li {
  margin-left: -63px;
  height: 100%;
  min-height: 100px;
  display: flex;
}
@media (max-width: 991.98px) {
  body.site .ui-autocomplete li {
    width: 100%;
  }
  body.site .ui-autocomplete li .img-thumbnail {
    position: relative;
    top: 25%;
  }
}
body.site .ui-autocomplete li.ui-autocomplete-row .img-thumbnail {
  object-fit: contain;
  width: 100%;
  max-width: 140px;
}
body.site .equipment__overall-container {
  max-width: 1400px;
  margin: 100px auto;
  /*================================================================================
  $ SEARCH INPUT
  ================================================================================*/
  /*================================================================================
  $ SEARCH ICONS
  ================================================================================*/
}
@media screen and (max-width: 1499px) {
  body.site .equipment__overall-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body.site .equipment__overall-container #show-archived .btn {
  padding: 0 20px;
}
body.site .equipment__overall-container .equipment__search-input {
  border-bottom: 1px solid #982065;
  border-top: 1px solid #982065;
  padding-bottom: 10px;
  padding-top: 30px;
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-input {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
body.site .equipment__overall-container .equipment__search-input input {
  border: 1px solid #982065;
  color: #6D6D6D;
  font-size: 16px;
  font-weight: 500;
  padding-left: 5px;
  border-radius: 0;
  height: 47px;
  margin-left: 10px;
}
body.site .equipment__overall-container .equipment__search-input input.form-control:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(70, 147, 157, 0.3);
}
body.site .equipment__overall-container .equipment__search-input button#am-filterslist-query-btn i.fa.fa-search::before {
  color: #982065;
  font-size: 16px;
}
body.site .equipment__overall-container .equipment__search-input .col-lg-2 {
  padding-right: 0px;
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-input .col-lg-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body.site .equipment__overall-container .equipment__search-input .col-lg-2 .equipment__btn {
  float: right;
  height: 35px;
  padding: 10px 80px;
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-input .col-lg-2 .equipment__btn {
    float: left;
    width: 100%;
  }
}
body.site .equipment__overall-container .equipment__search-icons {
  margin-left: 5px;
  padding-top: 10px;
  /*================================================================================
  $ SEARCH ICONS BOTTOM ROW
  ================================================================================*/
}
@media screen and (max-width: 1402px) {
  body.site .equipment__overall-container .equipment__search-icons {
    margin-left: 0px;
  }
}
body.site .equipment__overall-container .equipment__search-icons .equipment__icon {
  margin-bottom: 10px;
  margin-right: 1%;
  max-width: 19%;
  min-width: 19%;
}
@media screen and (max-width: 992px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon {
    flex-basis: auto;
    -webkit-box-flex: 1;
    flex-grow: 1;
    margin-right: 2%;
    max-width: 48%;
  }
}
@media screen and (max-width: 992px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner {
    min-width: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner {
    text-align: center;
  }
}
body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-image {
  padding-left: 0px;
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-image {
    padding-top: 10px;
    padding-left: 20px;
  }
}
body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-title a:hover {
  text-decoration: none;
}
body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-title a p {
  color: #3D4042;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0rem;
  padding-left: 5px;
  padding-top: 8px;
  text-transform: uppercase;
}
@media screen and (max-width: 1499px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-title a p {
    font-size: 13px;
  }
}
@media screen and (max-width: 602px) {
  body.site .equipment__overall-container .equipment__search-icons .equipment__icon .equipment__inner .equipment__icon-title a p {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
body.site .equipment__overall-container .auction-title h1 {
  font-family: "Georgia", sans-serif;
  font-size: 30px;
}
@media screen and (max-width: 599px) {
  body.site .equipment__overall-container .auction-title h1 {
    font-size: 24px;
  }
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div {
  margin: calc(var(--bs-gutter-x) * 0.5) 0;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card {
  overflow: hidden;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .image {
  height: 35%;
  padding: 0;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .image img {
  max-height: 200px;
  min-height: 20px;
  max-width: 100%;
  object-fit: contain;
  display: flex;
  margin: 0 auto;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .controls {
  border: none;
  background-color: transparent;
  height: 10%;
  align-self: end;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .info,
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card h4 {
  font-family: "Georgia", sans-serif;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .info p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
body.site .equipment__overall-container #am-search-results-list .lot-listing > div .card .info a {
  margin: 1rem 0;
}

/*================================================================================
SECTIONS

- Secure Payment page
- Payment Failed pages
- Payment Success page
- MAKE A PAYMENT

================================================================================*/
body.com_payments .container {
  max-width: 500px;
}
body.com_payments .container.payment-success-container {
  max-width: 800px;
}
body.com_payments .container label {
  color: #0B0A1D;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 3px;
  text-transform: uppercase;
}
body.com_payments .container input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.87rem;
  font-weight: 400;
  height: 42px;
  padding-left: 13px;
  width: 100%;
}
body.com_payments .container input#user_phone_number {
  margin-left: -1px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: auto;
}
body.com_payments .container select {
  height: 42px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  padding-left: 13px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../images/icons/select-down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  font-size: 0.87rem;
  padding-left: 13px;
  padding-right: 20px;
  width: 100%;
  background-position: 98% center;
}
body.com_payments .container select#dial_code {
  background-position: 90% center;
  max-width: 80px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body.com_payments .container .lookup {
  width: 80%;
}
body.com_payments .container .lookup .field-holder {
  float: left;
  width: 100%;
  position: relative;
}
body.com_payments .container .lookup .field-holder .address-options {
  border: 0.5px solid #C4C4C4;
  height: 300px;
  overflow-y: auto;
}
body.com_payments .container .lookup .field-holder .address-options ul.address-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.com_payments .container .lookup .field-holder .address-options ul.address-list li.address-item {
  cursor: pointer;
  color: #282C27;
  font-size: 0.9rem;
  padding: 10px;
  transition: all ease-in-out 0.3s;
  background: #FFFFFF;
}
body.com_payments .container .lookup .field-holder .address-options ul.address-list li.address-item:hover {
  background-color: #F8F8F8;
  color: #282C27;
}
body.com_payments .payment-wrapper {
  width: 100%;
}
body.com_payments .payment-wrapper .invoice-payment-container .page-heading h3 {
  text-transform: uppercase;
  color: #222E5B;
  margin-top: 200px;
}
@media screen and (max-width: 1199px) {
  body.com_payments .payment-wrapper .invoice-payment-container .page-heading h3 {
    margin-top: 250px;
  }
}
@media screen and (max-width: 766px) {
  body.com_payments .payment-wrapper .invoice-payment-container .page-heading h3 {
    margin-top: 150px;
  }
}
body.com_payments .payment-wrapper .payment-failed-container .payment-failed-page .header h3 {
  text-transform: uppercase;
  color: #222E5B;
  margin-top: 250px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  body.com_payments .payment-wrapper .payment-failed-container .payment-failed-page .header h3 {
    margin-top: 300px;
  }
}
@media screen and (max-width: 766px) {
  body.com_payments .payment-wrapper .payment-failed-container .payment-failed-page .header h3 {
    margin-top: 200px;
  }
}
body.com_payments .payment-wrapper .payment-failed-container .payment-failed-page .information {
  margin-bottom: 250px;
}
body.com_payments .payment-wrapper .payment-failed-container .payment-failed-page .information > p {
  text-align: center;
}
body.com_payments .payment-wrapper .payment-success-container .payment-success-page .header h3 {
  text-transform: uppercase;
  color: #0B0A1D;
  margin-top: 250px;
  text-align: center;
  font-family: "Georgia", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  body.com_payments .payment-wrapper .payment-success-container .payment-success-page .header h3 {
    margin-top: 300px;
  }
}
@media screen and (max-width: 766px) {
  body.com_payments .payment-wrapper .payment-success-container .payment-success-page .header h3 {
    margin-top: 200px;
  }
}
body.com_payments .payment-wrapper .payment-success-container .payment-success-page .information {
  margin-bottom: 250px;
}
body.com_payments .payment-wrapper .payment-success-container .payment-success-page .information > p {
  text-align: center;
}

/*================================================================================
$ MAKE A PAYMENT 
================================================================================*/
body.site.com_makepayment {
  /*================================================================================
  $ MY INVOICES 
  ================================================================================*/
  /*================================================================================
  $ BILLING DETAILS
  ================================================================================*/
  /*================================================================================
  $ SAGEPAY LOADING PAGE
  ================================================================================*/
  /*================================================================================
  $ PAYMENT SUCCESS
  ================================================================================*/
  /*================================================================================
  $ PAYMENT ERROR
  ================================================================================*/
}
body.site.com_makepayment .cms-page-holder {
  margin: 5rem auto;
  max-width: 900px;
}
body.site.com_makepayment .cms-page-holder h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 3rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .cms-page-holder .content-section__left .left-column label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .left-column input {
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  height: 35px;
  margin-left: 10px;
  width: 35%;
}
body.site.com_makepayment .cms-page-holder .content-section__left .left-column .invoice_example {
  display: inline-block;
  margin-top: 1rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .left-column .mpayment-btn {
  margin-top: 3rem;
  margin-left: 10px;
  padding: 0.5rem 2rem;
  width: 15%;
}
body.site.com_makepayment .cms-page-holder .content-section__left .right-column {
  margin-top: 3rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .right-column .cards ul {
  padding-left: 0rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .right-column .cards ul li {
  list-style-type: none;
}
body.site.com_makepayment .cms-page-holder .content-section__left .right-column .cards ul li img {
  margin-bottom: 1rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .help {
  margin-top: 2rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .help h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 32px;
  font-weight: 400;
}
body.site.com_makepayment .cms-page-holder .content-section__left .help ul {
  padding-left: 0rem;
}
body.site.com_makepayment .cms-page-holder .content-section__left .help ul li {
  list-style-type: none;
}
body.site.com_makepayment .account__content {
  margin: 0rem auto;
  margin-top: 5rem;
  margin-bottom: 10rem;
  max-width: 900px;
}
@media screen and (max-width: 799px) {
  body.site.com_makepayment .account__content {
    padding-left: 2rem;
  }
}
body.site.com_makepayment .account__content .account__content__title {
  float: left;
  margin-top: 1rem;
  width: 100%;
}
body.site.com_makepayment .account__content .account__content__title h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .account__content .account__content__title h1 {
    font-size: 35px;
  }
}
body.site.com_makepayment .account__content .account__content__title h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
}
body.site.com_makepayment .account__content .account__content__main {
  float: left;
  margin-bottom: 1rem;
  width: 100%;
}
body.site.com_makepayment .account__content .account__content__main .invoices__top-text {
  padding: 20px 20px 20px 0px;
}
body.site.com_makepayment .account__content .account__content__main .invoices__top-text .invoices__top-text__title {
  text-align: left;
}
body.site.com_makepayment .account__content .account__content__main .invoices__top-text .invoices__top-text__title h5 {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 18px;
  font-weight: 400;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__left--column {
  padding-left: 0px;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__left--column .invoices__auction {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 5px;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__left--column .invoices__date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__right--column {
    padding-left: 0px;
  }
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__right--column p {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__right--column p span {
  float: right;
  font-weight: 700;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__right--column a {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
}
body.site.com_makepayment .account__content .account__content__main .invoices__list-holder .invoices__content .invoices__right--column a:hover {
  border: 1px solid #982065;
  color: #982065;
}
body.site.com_makepayment .payments-form-container {
  margin: 5rem auto;
  max-width: 900px;
}
body.site.com_makepayment .payments-form-container .payment-title h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .payments-form-container .payment-title h1 {
    font-size: 35px;
  }
}
body.site.com_makepayment .payments-form-container .payment-form-holder label {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_makepayment .payments-form-container .payment-form-holder input {
  border: 1px solid #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
}
body.site.com_makepayment .payments-form-container .payment-form-holder button {
  color: #FFFFFF;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
  text-transform: uppercase;
  width: 30%;
}
body.site.com_makepayment .payments-form-container .payment-form-holder button:hover {
  border: 1px solid #982065;
  color: #982065;
}
body.site.com_makepayment .payments-submission-container {
  margin: 5rem auto;
  max-width: 900px;
}
body.site.com_makepayment .payments-submission-container .payments-submit-overlay .title h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .payments-submission-container .payments-submit-overlay .title h1 {
    font-size: 35px;
  }
}
body.site.com_makepayment .payments-submission-container .payments-submit-overlay .information .text {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .payment-success-container {
  margin: 5rem auto;
  max-width: 900px;
}
body.site.com_makepayment .payment-success-container .payment-success-page .header h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .payment-success-container .payment-success-page .header h3 {
    font-size: 20px;
  }
}
body.site.com_makepayment .payment-success-container .payment-success-page .information .text {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .payment-success-container .payment-success-page .information .text a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .payment-failed-container {
  margin: 5rem auto;
  max-width: 900px;
}
body.site.com_makepayment .payment-failed-container .payment-failed-page .header h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  body.site.com_makepayment .payment-failed-container .payment-failed-page .header h3 {
    font-size: 20px;
  }
}
body.site.com_makepayment .payment-failed-container .payment-failed-page .information .text {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
}
body.site.com_makepayment .payment-failed-container .payment-failed-page .information .spacing {
  color: #A60000;
}

/* CALENDAR UPCOMING / ARCHIVE PAGE */
/*================================================================================
SECTIONS

- 

================================================================================*/
body.site.view-upcoming, .view-archive {
  /*================================================================================
  $ TABS
  ================================================================================*/
  /*================================================================================
  $ OVERALL CONTAINER
  ================================================================================*/
}
body.site.view-upcoming .main-container .container, .view-archive .main-container .container {
  max-width: 1440px;
}
body.site.view-upcoming .auctionBreadCrumb, .view-archive .auctionBreadCrumb {
  width: 100%;
  background: #FFFFFF;
}
body.site.view-upcoming .auctionBreadCrumb .container .calendar__home--link, .view-archive .auctionBreadCrumb .container .calendar__home--link {
  display: none;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .auctionBreadCrumb .container .calendar__home--link, .view-archive .auctionBreadCrumb .container .calendar__home--link {
    display: inline-block;
  }
  body.site.view-upcoming .auctionBreadCrumb .container .calendar__home--link img, .view-archive .auctionBreadCrumb .container .calendar__home--link img {
    margin-right: 1rem;
  }
  body.site.view-upcoming .auctionBreadCrumb .container .calendar__home--link a, .view-archive .auctionBreadCrumb .container .calendar__home--link a {
    color: #982065;
    font-family: "Arial", serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
  }
}
body.site.view-upcoming .auctionBreadCrumb h1, .view-archive .auctionBreadCrumb h1 {
  color: #0B0A1D;
  font-size: 50px;
  font-family: "Georgia", sans-serif;
  line-height: 100%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .auctionBreadCrumb h1, .view-archive .auctionBreadCrumb h1 {
    font-size: 40px;
    padding-left: 1rem;
    text-align: left;
  }
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul, .view-archive .auctionBreadCrumb .calendar__types ul {
  border-bottom: 1px solid #939393;
  display: flex;
  justify-content: center;
  padding-left: 0px;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .auctionBreadCrumb .calendar__types ul, .view-archive .auctionBreadCrumb .calendar__types ul {
    justify-content: space-around;
  }
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li, .view-archive .auctionBreadCrumb .calendar__types ul li {
  display: inline;
  margin-left: 1rem;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li:first-child, .view-archive .auctionBreadCrumb .calendar__types ul li:first-child {
  margin-left: 0;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li.active, .view-archive .auctionBreadCrumb .calendar__types ul li.active {
  padding: 0 15px 10px;
  border-bottom: 2px solid #982065;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li.active a, .view-archive .auctionBreadCrumb .calendar__types ul li.active a {
  color: #982065;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li a, .view-archive .auctionBreadCrumb .calendar__types ul li a {
  color: #939393;
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 700;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li a:hover, .view-archive .auctionBreadCrumb .calendar__types ul li a:hover {
  text-decoration: none;
}
body.site.view-upcoming .auctionBreadCrumb .calendar__types ul li a.active, .view-archive .auctionBreadCrumb .calendar__types ul li a.active {
  border-bottom: 3px solid #982065;
  color: #982065;
  padding-bottom: 14px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container, .view-archive .upcoming__auctions--info .calendar__filter--container {
  background-color: #FFFFFF;
  margin-top: 3rem;
  position: relative;
  z-index: 9;
  /*================================================================================
  $ CALENDAR WIDGET
  ================================================================================*/
}
@media screen and (max-width: 799px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container, .view-archive .upcoming__auctions--info .calendar__filter--container {
    margin-top: 1.5rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section {
  float: left;
  width: 100%;
}
@media screen and (max-width: 992px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section {
    width: 50%;
  }
}
@media screen and (max-width: 766px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section {
    width: 100%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item {
  float: left;
  border: 2px solid #FBF8F8;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item {
    height: auto;
    width: 100%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section {
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section {
    margin-bottom: 35px;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side {
  float: left;
  width: 33.333%;
}
@media screen and (max-width: 899px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side {
    width: 50%;
  }
}
@media screen and (max-width: 499px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side {
    width: 100%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side {
  padding-right: 10px;
}
@media screen and (max-width: 899px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side {
    padding-right: 7.5px;
  }
}
@media screen and (max-width: 499px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section.top-section .homepage-side.left-side {
    padding: 0;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item {
  position: relative;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item:not(.calendar-item), .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item:not(.calendar-item) {
  cursor: pointer;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number {
  width: 12px;
  height: 12px;
  display: block;
  background-color: transparent;
  border: 1px solid white;
  position: relative;
  z-index: 5;
  float: left;
  margin-left: 8px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number:hover, body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number.active, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number:hover, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number.active {
  background-color: white;
}
@media screen and (max-width: 499px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .page-controls span.number {
    width: 25px;
    height: 25px;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .close-button, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .close-button {
  z-index: 5;
  position: absolute;
  right: 12px;
  top: 6px;
  font-family: sans-serif;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .image-holder, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .image-holder {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 874px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .image-holder, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .image-holder {
    height: 50%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content {
  background-color: rgba(125, 38, 133, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 874px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content {
    height: 50%;
    top: inherit;
    bottom: 0;
    opacity: 1;
    pointer-events: all;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-inner, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 250px;
  min-width: 250px;
  height: auto;
  z-index: 2;
  -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%);
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-type, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-type {
  font-family: "Arial", serif;
  font-weight: bold;
  font-size: 18px;
  color: white;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 416px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-type, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .overlay-type {
    font-size: 16px;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title {
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 22px;
  color: white;
  margin: 0;
  padding: 0;
  padding: 25px 0;
}
@media screen and (max-width: 770px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 416px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .title {
    font-size: 16px;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime {
  font-family: "Arial", serif;
  font-weight: 100;
  font-style: italic;
  font-size: 19px;
  color: white;
  margin: 0;
  padding: 0;
  line-height: 22px;
}
@media screen and (max-width: 770px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime {
    font-size: 18px;
  }
}
@media screen and (max-width: 416px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .datetime {
    font-size: 16px;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .btn-view, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .btn-view {
  padding: 0px 15px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 15px;
  margin-top: 15px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .btn-view:hover, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item .overlay-content .btn-view:hover {
  background-color: white;
  color: rgba(125, 38, 133, 0.8);
  text-decoration: none;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item:hover .overlay-content, body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.selected-auction .overlay-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item:hover .overlay-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.selected-auction .overlay-content {
  opacity: 1;
  pointer-events: all;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.selected-auction .overlay-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.selected-auction .overlay-content {
  height: 100% !important;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item {
  border-radius: 5px;
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100%;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .calendar-inner, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .calendar-inner {
  position: relative;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .calendar-heading, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .calendar-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 16px;
  color: white;
  margin: 0;
  padding: 5px 0;
  padding: 0;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container {
  background-color: transparent !important;
  border: none !important;
  height: 100%;
  width: 100%;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-pane,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-pane, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-pane,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-pane {
  min-width: 0;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-header,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-header, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-header,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-header {
  padding: 8px 0;
  margin-top: 5px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-header .vc-title,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-header .vc-title, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-header .vc-title,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-header .vc-title {
  font-size: 0.75rem;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-day-content,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-day-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-day-content,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-day-content {
  cursor: pointer;
  font-size: 1rem;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-day-content > div,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-day-content > div, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-day-content > div,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-day-content > div {
  font-weight: 400;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-highlights + .vc-focusable,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-highlights + .vc-focusable, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-highlights + .vc-focusable,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-highlights + .vc-focusable {
  color: #FFFFFF !important;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-highlights .vc-highlight.hDayRoseberys,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-highlights .vc-highlight.hDayRoseberys, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-day .vc-highlights .vc-highlight.hDayRoseberys,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-day .vc-highlights .vc-highlight.hDayRoseberys {
  background-color: #982065 !important;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks {
  padding: 0;
  margin: 0;
  min-width: 0;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks {
  background-color: #FBF8F8;
  padding-top: 6px;
  padding-bottom: 6px;
  width: 100%;
  color: #000000;
}
@media (max-width: 575.98px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks,
  .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks {
    width: auto;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks .vc-weekday,
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks .vc-weekday, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-container .vc-weeks .vc-weekday,
.view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .vc-pane-container .vc-weeks .vc-weekday {
  font-weight: 400;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item svg path, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item svg path {
  color: #0B0A1D;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item *, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item * {
  font-family: "Arial", serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content {
  background-color: white !important;
  border-radius: 3px !important;
  border: 1px solid #982065;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content .c-day-popover-content .c-day-popover-indicator, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content .c-day-popover-content .c-day-popover-indicator {
  display: none;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content .c-day-popover-content .c-day-popover-content > span, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content .c-day-popover-content .c-day-popover-content > span {
  color: #982065;
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 15px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content *, .view-archive .upcoming__auctions--info .calendar__filter--container .homepage-section .block-item.calendar-item .popover-origin .popover-content-wrapper .popover-content * {
  color: #4d4d4d;
  font-family: "Arial", serif;
  font-weight: normal;
  font-size: 15px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion button.accordion-button, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion button.accordion-button {
  color: #000000;
  letter-spacing: 1px;
  box-shadow: none;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion button.accordion-button::after, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion button.accordion-button::after {
  content: "";
  width: 12px;
  height: 8px;
  background: url(../images/icons/arrow-accordion.svg) right top no-repeat transparent;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item {
  max-width: 230px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item {
    float: left;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .accordion .accordion-item {
    max-width: 100%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner h3, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months {
  background-color: #FFFFFF;
  float: left;
  position: relative;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 992px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months {
    margin-bottom: 1rem;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months {
    width: 96%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months .accordion-body, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months .accordion-body {
  padding: 15px 5px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months button, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months button {
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding-left: 1rem;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  padding: 0 17px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months button img, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months button img {
  float: right;
  margin-top: 10px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul {
  margin-top: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  list-style-type: none;
  text-transform: uppercase;
  margin-bottom: 12px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li a, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li a {
  color: #000000;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  width: 100%;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li a span, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__months ul li a span {
  color: #982065;
  float: right;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments {
  background-color: #FFFFFF;
  float: left;
  margin-top: 1rem;
  position: relative;
  width: 100%;
  z-index: 999;
  border: none;
}
@media screen and (max-width: 992px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments {
    float: right;
    margin-top: 0rem;
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments {
    float: left;
    width: 96%;
  }
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments h3, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments button, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments button {
  background-color: #FFFFFF;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  padding-left: 1rem;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
  padding: 0 17px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments button img, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments button img {
  float: right;
  margin-top: 10px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul {
  margin-top: 0.5rem;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul li, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul li {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  list-style-type: none;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul li a, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments ul li a {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}
body.site.view-upcoming .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments label, .view-archive .upcoming__auctions--info .calendar__filter--container .filter__inner .filter__departments label {
  margin-left: 7px;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list, .view-archive .upcoming__auctions--info #auction-list {
  position: relative;
  z-index: 0;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container, .view-archive .upcoming__auctions--info #auction-list .auction__container {
  border: 1px solid #D2D2D2;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 799px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container, .view-archive .upcoming__auctions--info #auction-list .auction__container {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container, .view-archive .upcoming__auctions--info #auction-list .auction__container {
    margin: 3rem 10px 1rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image, .view-archive .upcoming__auctions--info #auction-list .auction__container .image {
  padding: 1rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image, .view-archive .upcoming__auctions--info #auction-list .auction__container .image {
    padding: 0.75rem;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image, .view-archive .upcoming__auctions--info #auction-list .auction__container .image {
    text-align: center;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image img, .view-archive .upcoming__auctions--info #auction-list .auction__container .image img {
  position: relative;
  width: 100%;
  z-index: 0;
  height: 100%;
  max-height: 330px;
  min-height: 330px;
  object-fit: cover;
}
@media screen and (max-width: 1077px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image img, .view-archive .upcoming__auctions--info #auction-list .auction__container .image img {
    max-height: 230px;
    min-height: 230px;
  }
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image img, .view-archive .upcoming__auctions--info #auction-list .auction__container .image img {
    max-height: 240px;
    min-height: 240px;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image img, .view-archive .upcoming__auctions--info #auction-list .auction__container .image img {
    width: 100%;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image button, .view-archive .upcoming__auctions--info #auction-list .auction__container .image button {
  position: absolute;
  left: 17px;
  bottom: 16px;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time {
  display: none;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time {
    background-color: #FFFFFF;
    border: 1px solid #939393;
    display: block;
    left: 10px;
    padding: 10px;
    position: absolute;
    top: 10px;
    width: 40%;
    z-index: 50;
  }
}
@media screen and (max-width: 599px) and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time {
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time p, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time p {
    margin-bottom: 0;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__month, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__month {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__number, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__number {
  font-size: 3rem;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__number, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__number {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__day, .view-archive .upcoming__auctions--info #auction-list .auction__container .image .calendar__auction--time .calendar__day {
  font-family: "Arial", serif;
  font-size: 0.75rem;
  text-transform: uppercase;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner {
  padding: 1rem;
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner {
    padding: 0.75rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column {
  margin-top: 1rem;
}
@media screen and (max-width: 799px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column {
    margin-top: 0;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container {
  flex-direction: column;
  width: 100%;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container .viewing-times-container, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container .viewing-times-container {
  align-items: center;
  cursor: pointer;
  display: flex;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container p, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container p {
  margin-bottom: 0;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container[aria-expanded=true] i.fa.fa-chevron-down, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .calendar__view--container[aria-expanded=true] i.fa.fa-chevron-down {
  transform: rotate(-180deg);
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__sub--heading, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__sub--heading {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text h3, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text h3 {
  font-family: "Georgia", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1199px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text h3, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text h3 {
    font-size: 25px;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .auction-date, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .auction-date {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__view--times, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__view--times {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: underline;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn {
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn:hover, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn:hover {
  text-decoration: none;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn img, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .text .calendar__btn img {
  margin-right: 0.5rem;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls {
  padding-left: 0rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls a.btn, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls a.btn {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls a.btn, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls a.btn {
    width: 100%;
    padding: 13px 25px;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .bid__login--btn, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .bid__login--btn {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 10px;
  width: 50%;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .calendar__catalogue--btn, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .calendar__catalogue--btn {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 10px;
  width: 50%;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .view-catalogue-archive, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .view-catalogue-archive {
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  padding: 10px;
  width: 50%;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .btnRegisterToBidLive, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .btnRegisterToBidLive {
  padding: 10px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .green, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--left-column .controls .green {
  padding: 10px;
  width: 50%;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time {
  border: 1px solid #D2D2D2;
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time {
    display: none;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__month, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__month {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__month, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__month {
    font-size: 0.75rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__number, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__number {
  font-family: "Arial", serif;
  font-size: 80px;
  font-weight: 400;
  margin-bottom: 0rem;
}
@media screen and (max-width: 1199px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__number, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__number {
    font-size: 60px;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__day, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__day {
  font-family: "Arial", serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__day, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__auction--time .calendar__day {
    font-size: 0.75rem;
  }
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me {
  margin-top: 1rem;
}
body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me .remind__me, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me .remind__me {
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.site.view-upcoming .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me .remind__me, .view-archive .upcoming__auctions--info #auction-list .auction__container .calendar__content--inner .calendar__content--right-column .calendar__remind--me .remind__me {
    margin-left: 0;
    width: 100%;
  }
}

/* ====== ARTIST DIRECTORY ====== */
.author-directory-overview__wrapper .breadcrumbs a.back-home-arrow,
.author-directory__wrapper .breadcrumbs a.back-home-arrow {
  display: inline-flex;
  text-transform: uppercase;
  align-items: center;
  letter-spacing: 1px;
}
.author-directory-overview__wrapper .breadcrumbs a.back-home-arrow::before,
.author-directory__wrapper .breadcrumbs a.back-home-arrow::before {
  content: "";
  align-items: center;
  background: url(../images/icons/back-arrow-icon.svg) no-repeat;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.author-directory-overview__wrapper {
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper {
    margin-top: 60px;
  }
}
.author-directory-overview__wrapper .container {
  max-width: 1430px;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine {
  text-align: center;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine {
    margin-top: 50px;
  }
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range {
    flex-wrap: wrap;
  }
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range span {
    display: flex;
    flex-direction: column;
    flex: 100%;
  }
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a {
  font-size: 20px;
  margin: 0;
  padding: 7px;
  text-decoration: none;
  color: #0B0A1D;
  background-color: #FBF8F8;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a:nth-child(2) {
  margin-left: 0;
  border-radius: 4px 0 0 4px;
  padding-left: 10px;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a:last-child {
  border-radius: 0 4px 4px 0;
  padding-right: 10px;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a:hover {
  text-decoration: underline;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a.selected {
  color: #0B0A1D;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .artists-directory__refine__range > a {
    padding: 6px;
  }
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .searchdiv {
  display: inline-flex;
  padding-top: 10px;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .searchdiv input#search {
  height: 35px;
  padding-left: 10px;
  border-radius: 4px;
  border: 1px solid #D2D2D2;
  width: 300px;
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .searchdiv input#search {
    width: 220px;
  }
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__refine .searchdiv button {
  height: 35px;
  padding: 0 25px;
}
.author-directory-overview__wrapper .artists-directory-holder .artists-directory__team .btn {
  height: 45px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
}
@media screen and (max-width: 599px) {
  .author-directory-overview__wrapper .artists-directory-holder .artists-directory__team .btn {
    width: 100%;
  }
}

.artists-directory-holder *, .artists-directory-holder *:before, .artists-directory-holder *: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;
}

/*================================================================================
$ ARTIST LIST
================================================================================*/
.artists-directory__list__item .artists-inner_container .artist__image img {
  border-radius: 4px;
  max-height: 250px;
  min-height: 250px;
  object-fit: cover;
}

/*================================================================================
$ PAGINATION
================================================================================*/
@media (max-width: 767.98px) {
  .author-directory__wrapper .artist-page__right .artist__general img {
    max-width: 100%;
    height: auto;
  }
}

.bid-calculator-container {
  float: left;
  width: 100%;
  padding: 10px 20px;
  background-color: #F4F4F4;
  margin-bottom: 50px;
}
.bid-calculator-container .heading-container {
  float: left;
  width: 100%;
  padding-bottom: 10px;
}
.bid-calculator-container .heading-container > h2 {
  font-size: 38px;
  font-family: "Georgia", sans-serif;
}
.bid-calculator-container .bid-amount-slider-container {
  float: left;
  width: 100%;
  padding: 20px 0;
  margin-bottom: 10px;
}
.bid-calculator-container .bid-amount-slider-container .bid-amount-slider {
  float: left;
  width: 100%;
  height: 3px;
  background-color: #FBF8F8;
  position: relative;
}
.bid-calculator-container .bid-amount-slider-container .bid-amount-slider .slider-handle {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #FBF8F8;
  border-radius: 10px;
  position: absolute;
  top: -9px;
}
.bid-calculator-container .bid-amount-value {
  float: left;
  width: 100%;
  padding-bottom: 10px;
}
@media (max-width: 575.98px) {
  .bid-calculator-container .bid-amount-value.additional-vat {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 499px) {
  .bid-calculator-container .bid-amount-value.additional-vat span.label {
    width: calc(100% - 30px);
    line-height: 1.2;
    margin-bottom: 0;
  }
}
.bid-calculator-container .bid-amount-value.additional-vat label.live-bidding-checkbox {
  margin: 4px 0 0 10px;
}
@media (max-width: 575.98px) {
  .bid-calculator-container .bid-amount-value.additional-vat label.live-bidding-checkbox {
    margin: 4px 8px 0 0;
    float: right;
  }
}
.bid-calculator-container .bid-amount-value.additional-vat p.note {
  float: left;
  width: 100%;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  .bid-calculator-container .bid-amount-value.additional-vat p.note {
    width: 90%;
  }
}
.bid-calculator-container .bid-amount-value > p {
  font-size: 16px;
  position: relative;
}
@media (max-width: 575.98px) {
  .bid-calculator-container .bid-amount-value > p {
    margin: 10px 0 0 0;
  }
}
.bid-calculator-container .bid-amount-value > p span.label {
  float: left;
  min-width: 220px;
}
@media screen and (max-width: 359px) {
  .bid-calculator-container .bid-amount-value > p span.label {
    min-width: 200px;
  }
}
.bid-calculator-container .bid-amount-value > p span.value {
  font-weight: 600;
}
.bid-calculator-container .bid-amount-value > p span.currency-symbol {
  position: absolute;
  font-size: 16px;
  font-weight: 600;
}
.bid-calculator-container .bid-amount-value > p input.bid-amount-input {
  float: left;
  width: 100px;
  padding: 0;
  border: none;
  border-bottom: 2px solid #982065;
  font-weight: 600;
  padding-left: 10px;
}
.bid-calculator-container input[type=checkbox] {
  display: none;
}
.bid-calculator-container input[type=checkbox]:checked + label.live-bidding-checkbox .box-inner {
  background-color: #982065;
}
.bid-calculator-container label.live-bidding-checkbox {
  float: left;
  border: 1px solid #cccccc;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}
.bid-calculator-container label.live-bidding-checkbox .box-inner {
  background-color: #ffffff;
  height: 10px;
  width: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bid-calculator-container .live-bidding-method {
  float: left;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 1074px) {
  .bid-calculator-container .live-bidding-method {
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .bid-calculator-container .live-bidding-method {
    text-align: left;
  }
}
.bid-calculator-container .live-bidding-method p.select-bidding-method {
  float: left;
  width: 100%;
  font-size: 15px;
  margin-bottom: 5px;
  text-align: left;
}
.bid-calculator-container .live-bidding-method .live-bidding-option {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .bid-calculator-container .live-bidding-method .live-bidding-option {
    text-align: left;
    width: 100%;
    float: left;
    padding-left: 0;
  }
}
.bid-calculator-container .live-bidding-method .live-bidding-option:nth-child(2) {
  padding-left: 0;
}
.bid-calculator-container .live-bidding-method .live-bidding-option label.live-bidding-solution {
  float: left;
  font-weight: 300;
  font-size: 15px;
  color: #0B0A1D;
  margin-top: 0;
  line-height: 1;
  cursor: pointer;
}
.bid-calculator-container .total-amount-container {
  float: left;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-bottom: -10px;
  background-color: #982065;
  padding: 10px 20px;
}
.bid-calculator-container .total-amount-container > p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0;
}
.bid-calculator-container .total-amount-container > p span.label {
  float: left;
  min-width: 220px;
}
@media screen and (max-width: 359px) {
  .bid-calculator-container .total-amount-container > p span.label {
    min-width: 200px;
  }
}
.bid-calculator-container .total-amount-container > p span.value {
  font-weight: 600;
}

/* ---------------- */
/* Add-on  */
/* ====== BANNER IMAGE ADDON - CONTENT PAGES ====== */
/* ======
BANNER BACKGROUND IMAGE (ADDON)
====== */
/*================================================================================
$ BANNER BACKGROUND IMAGE (USED AS ADDON IN PAGEBUILDER)
================================================================================*/
body.com_content .top-banner-image {
  height: 700px;
  position: relative;
}
body.com_content .top-banner-image h1 {
  color: #FFFFFF;
  font-size: 32px;
  font-family: "Georgia", sans-serif;
  font-weight: 700;
  padding-top: 200px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 416px) {
  body.com_content .top-banner-image h1 {
    padding-top: 100px;
  }
}
body.com_content .top-banner-image p {
  color: #FFFFFF;
  font-family: "Georgia", sans-serif;
  font-size: 14px;
  padding-left: 30%;
  padding-right: 30%;
  text-align: center;
}
@media screen and (max-width: 770px) {
  body.com_content .top-banner-image p {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media screen and (max-width: 416px) {
  body.com_content .top-banner-image p {
    padding-left: 10%;
    padding-right: 10%;
  }
}
body.com_content .top-banner-image > * {
  position: relative;
  z-index: 2;
}
body.com_content .top-banner-image:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Upcoming Auctions addon for Department pages

/*================================================================================
SECTIONS

- INTRO
- CONTENT
- AUCTION DATE

================================================================================*/
body.site.department-template-old-masters .upcoming__auctions--department, .department-template-jewellery .upcoming__auctions--department, .department-template-antiquities .upcoming__auctions--department, .department-template-chinese .upcoming__auctions--department, .department-template-furniture .upcoming__auctions--department,
.department-template-design .upcoming__auctions--department, .department-template-prints .upcoming__auctions--department, .department-template-modern-home .upcoming__auctions--department, .department-template-sculpture .upcoming__auctions--department, .department-template-valuations .upcoming__auctions--department, .department-template-ceramics .upcoming__auctions--department,
.department-template-decorative .upcoming__auctions--department, .department-template-islamic .upcoming__auctions--department, .department-template-british .upcoming__auctions--department, .department-template-silver .upcoming__auctions--department, .department-template-watches .upcoming__auctions--department, .department-template-owner .upcoming__auctions--department, .department-template-wine .upcoming__auctions--department,
.department-template-studio-pottery .upcoming__auctions--department, .single-owner-collections .upcoming__auctions--department, .news-article .upcoming__auctions--department, .view-article .upcoming__auctions--department {
  margin: 0 auto;
  max-width: 900px;
  /*================================================================================
  $ INTRO
  ================================================================================*/
  /*================================================================================
  $ SLIDER
  ================================================================================*/
  /*================================================================================
  $ CONTENT
  ================================================================================*/
  /*================================================================================
  $ AUCTION DATE
     ================================================================================*/
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro, .news-article .upcoming__auctions--department .upcoming__auctions--intro, .view-article .upcoming__auctions--department .upcoming__auctions--intro {
  margin-bottom: 2rem;
  margin-top: 1rem;
  text-align: center;
  position: relative;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .news-article .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .view-article .upcoming__auctions--department .upcoming__auctions--intro .prev-btn {
  background: url("../images/icons/highlight-right.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  border: none;
  color: transparent;
  height: 47px;
  width: 47px;
  left: 10%;
  top: 0;
  position: absolute;
  transform: rotate(180deg);
  z-index: 19;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro .prev-btn,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .news-article .upcoming__auctions--department .upcoming__auctions--intro .prev-btn, .view-article .upcoming__auctions--department .upcoming__auctions--intro .prev-btn {
    left: 6%;
    height: 25px;
    width: 25px;
    background-size: contain;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .news-article .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .view-article .upcoming__auctions--department .upcoming__auctions--intro .next-btn {
  background: url("../images/icons/highlight-right.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  border: none;
  color: transparent;
  height: 47px;
  width: 47px;
  right: 10%;
  top: 0;
  position: absolute;
  z-index: 19;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro .next-btn,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .news-article .upcoming__auctions--department .upcoming__auctions--intro .next-btn, .view-article .upcoming__auctions--department .upcoming__auctions--intro .next-btn {
    right: 6%;
    height: 25px;
    width: 25px;
    background-size: contain;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h1,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h1,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h1,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h1, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h1, .news-article .upcoming__auctions--department .upcoming__auctions--intro h1, .view-article .upcoming__auctions--department .upcoming__auctions--intro h1 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h1, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h1, .news-article .upcoming__auctions--department .upcoming__auctions--intro h1, .view-article .upcoming__auctions--department .upcoming__auctions--intro h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h1, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h1,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h1, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h1, .news-article .upcoming__auctions--department .upcoming__auctions--intro h1, .view-article .upcoming__auctions--department .upcoming__auctions--intro h1 {
    font-size: 27px;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h2,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h2,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h2,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h2, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h2, .news-article .upcoming__auctions--department .upcoming__auctions--intro h2, .view-article .upcoming__auctions--department .upcoming__auctions--intro h2 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h2, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h2, .news-article .upcoming__auctions--department .upcoming__auctions--intro h2, .view-article .upcoming__auctions--department .upcoming__auctions--intro h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro h2, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro h2,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro h2, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro h2, .news-article .upcoming__auctions--department .upcoming__auctions--intro h2, .view-article .upcoming__auctions--department .upcoming__auctions--intro h2 {
    font-size: 27px;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro a,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro a,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro a, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro a,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro a, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro a, .news-article .upcoming__auctions--department .upcoming__auctions--intro a, .view-article .upcoming__auctions--department .upcoming__auctions--intro a {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--intro img,
.department-template-design .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-prints .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--intro img,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-british .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-silver .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-watches .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-owner .upcoming__auctions--department .upcoming__auctions--intro img, .department-template-wine .upcoming__auctions--department .upcoming__auctions--intro img,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--intro img, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--intro img, .news-article .upcoming__auctions--department .upcoming__auctions--intro img, .view-article .upcoming__auctions--department .upcoming__auctions--intro img {
  margin-left: 0.5rem;
}
body.site.department-template-old-masters .upcoming__auctions--department .slider-container, .department-template-jewellery .upcoming__auctions--department .slider-container, .department-template-antiquities .upcoming__auctions--department .slider-container, .department-template-chinese .upcoming__auctions--department .slider-container, .department-template-furniture .upcoming__auctions--department .slider-container,
.department-template-design .upcoming__auctions--department .slider-container, .department-template-prints .upcoming__auctions--department .slider-container, .department-template-modern-home .upcoming__auctions--department .slider-container, .department-template-sculpture .upcoming__auctions--department .slider-container, .department-template-valuations .upcoming__auctions--department .slider-container, .department-template-ceramics .upcoming__auctions--department .slider-container,
.department-template-decorative .upcoming__auctions--department .slider-container, .department-template-islamic .upcoming__auctions--department .slider-container, .department-template-british .upcoming__auctions--department .slider-container, .department-template-silver .upcoming__auctions--department .slider-container, .department-template-watches .upcoming__auctions--department .slider-container, .department-template-owner .upcoming__auctions--department .slider-container, .department-template-wine .upcoming__auctions--department .slider-container,
.department-template-studio-pottery .upcoming__auctions--department .slider-container, .single-owner-collections .upcoming__auctions--department .slider-container, .news-article .upcoming__auctions--department .slider-container, .view-article .upcoming__auctions--department .slider-container {
  height: 349px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  body.site.department-template-old-masters .upcoming__auctions--department .slider-container, .department-template-jewellery .upcoming__auctions--department .slider-container, .department-template-antiquities .upcoming__auctions--department .slider-container, .department-template-chinese .upcoming__auctions--department .slider-container, .department-template-furniture .upcoming__auctions--department .slider-container,
  .department-template-design .upcoming__auctions--department .slider-container, .department-template-prints .upcoming__auctions--department .slider-container, .department-template-modern-home .upcoming__auctions--department .slider-container, .department-template-sculpture .upcoming__auctions--department .slider-container, .department-template-valuations .upcoming__auctions--department .slider-container, .department-template-ceramics .upcoming__auctions--department .slider-container,
  .department-template-decorative .upcoming__auctions--department .slider-container, .department-template-islamic .upcoming__auctions--department .slider-container, .department-template-british .upcoming__auctions--department .slider-container, .department-template-silver .upcoming__auctions--department .slider-container, .department-template-watches .upcoming__auctions--department .slider-container, .department-template-owner .upcoming__auctions--department .slider-container, .department-template-wine .upcoming__auctions--department .slider-container,
  .department-template-studio-pottery .upcoming__auctions--department .slider-container, .single-owner-collections .upcoming__auctions--department .slider-container, .news-article .upcoming__auctions--department .slider-container, .view-article .upcoming__auctions--department .slider-container {
    height: auto;
  }
}
@media screen and (max-width: 504px) {
  body.site.department-template-old-masters .upcoming__auctions--department .slider-container, .department-template-jewellery .upcoming__auctions--department .slider-container, .department-template-antiquities .upcoming__auctions--department .slider-container, .department-template-chinese .upcoming__auctions--department .slider-container, .department-template-furniture .upcoming__auctions--department .slider-container,
  .department-template-design .upcoming__auctions--department .slider-container, .department-template-prints .upcoming__auctions--department .slider-container, .department-template-modern-home .upcoming__auctions--department .slider-container, .department-template-sculpture .upcoming__auctions--department .slider-container, .department-template-valuations .upcoming__auctions--department .slider-container, .department-template-ceramics .upcoming__auctions--department .slider-container,
  .department-template-decorative .upcoming__auctions--department .slider-container, .department-template-islamic .upcoming__auctions--department .slider-container, .department-template-british .upcoming__auctions--department .slider-container, .department-template-silver .upcoming__auctions--department .slider-container, .department-template-watches .upcoming__auctions--department .slider-container, .department-template-owner .upcoming__auctions--department .slider-container, .department-template-wine .upcoming__auctions--department .slider-container,
  .department-template-studio-pottery .upcoming__auctions--department .slider-container, .single-owner-collections .upcoming__auctions--department .slider-container, .news-article .upcoming__auctions--department .slider-container, .view-article .upcoming__auctions--department .slider-container {
    height: auto;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .slider-container .slide, .department-template-jewellery .upcoming__auctions--department .slider-container .slide, .department-template-antiquities .upcoming__auctions--department .slider-container .slide, .department-template-chinese .upcoming__auctions--department .slider-container .slide, .department-template-furniture .upcoming__auctions--department .slider-container .slide,
.department-template-design .upcoming__auctions--department .slider-container .slide, .department-template-prints .upcoming__auctions--department .slider-container .slide, .department-template-modern-home .upcoming__auctions--department .slider-container .slide, .department-template-sculpture .upcoming__auctions--department .slider-container .slide, .department-template-valuations .upcoming__auctions--department .slider-container .slide, .department-template-ceramics .upcoming__auctions--department .slider-container .slide,
.department-template-decorative .upcoming__auctions--department .slider-container .slide, .department-template-islamic .upcoming__auctions--department .slider-container .slide, .department-template-british .upcoming__auctions--department .slider-container .slide, .department-template-silver .upcoming__auctions--department .slider-container .slide, .department-template-watches .upcoming__auctions--department .slider-container .slide, .department-template-owner .upcoming__auctions--department .slider-container .slide, .department-template-wine .upcoming__auctions--department .slider-container .slide,
.department-template-studio-pottery .upcoming__auctions--department .slider-container .slide, .single-owner-collections .upcoming__auctions--department .slider-container .slide, .news-article .upcoming__auctions--department .slider-container .slide, .view-article .upcoming__auctions--department .slider-container .slide {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: 1s;
  margin-left: 0;
  border-radius: unset;
  box-shadow: unset;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .upcoming__auctions--department .slider-container .slide, .department-template-jewellery .upcoming__auctions--department .slider-container .slide, .department-template-antiquities .upcoming__auctions--department .slider-container .slide, .department-template-chinese .upcoming__auctions--department .slider-container .slide, .department-template-furniture .upcoming__auctions--department .slider-container .slide,
  .department-template-design .upcoming__auctions--department .slider-container .slide, .department-template-prints .upcoming__auctions--department .slider-container .slide, .department-template-modern-home .upcoming__auctions--department .slider-container .slide, .department-template-sculpture .upcoming__auctions--department .slider-container .slide, .department-template-valuations .upcoming__auctions--department .slider-container .slide, .department-template-ceramics .upcoming__auctions--department .slider-container .slide,
  .department-template-decorative .upcoming__auctions--department .slider-container .slide, .department-template-islamic .upcoming__auctions--department .slider-container .slide, .department-template-british .upcoming__auctions--department .slider-container .slide, .department-template-silver .upcoming__auctions--department .slider-container .slide, .department-template-watches .upcoming__auctions--department .slider-container .slide, .department-template-owner .upcoming__auctions--department .slider-container .slide, .department-template-wine .upcoming__auctions--department .slider-container .slide,
  .department-template-studio-pottery .upcoming__auctions--department .slider-container .slide, .single-owner-collections .upcoming__auctions--department .slider-container .slide, .news-article .upcoming__auctions--department .slider-container .slide, .view-article .upcoming__auctions--department .slider-container .slide {
    position: relative;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .slider-container .auctions__date p, .department-template-jewellery .upcoming__auctions--department .slider-container .auctions__date p, .department-template-antiquities .upcoming__auctions--department .slider-container .auctions__date p, .department-template-chinese .upcoming__auctions--department .slider-container .auctions__date p, .department-template-furniture .upcoming__auctions--department .slider-container .auctions__date p,
.department-template-design .upcoming__auctions--department .slider-container .auctions__date p, .department-template-prints .upcoming__auctions--department .slider-container .auctions__date p, .department-template-modern-home .upcoming__auctions--department .slider-container .auctions__date p, .department-template-sculpture .upcoming__auctions--department .slider-container .auctions__date p, .department-template-valuations .upcoming__auctions--department .slider-container .auctions__date p, .department-template-ceramics .upcoming__auctions--department .slider-container .auctions__date p,
.department-template-decorative .upcoming__auctions--department .slider-container .auctions__date p, .department-template-islamic .upcoming__auctions--department .slider-container .auctions__date p, .department-template-british .upcoming__auctions--department .slider-container .auctions__date p, .department-template-silver .upcoming__auctions--department .slider-container .auctions__date p, .department-template-watches .upcoming__auctions--department .slider-container .auctions__date p, .department-template-owner .upcoming__auctions--department .slider-container .auctions__date p, .department-template-wine .upcoming__auctions--department .slider-container .auctions__date p,
.department-template-studio-pottery .upcoming__auctions--department .slider-container .auctions__date p, .single-owner-collections .upcoming__auctions--department .slider-container .auctions__date p, .news-article .upcoming__auctions--department .slider-container .auctions__date p, .view-article .upcoming__auctions--department .slider-container .auctions__date p {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content, .department-template-british .upcoming__auctions--department .upcoming__auctions--content, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content, .news-article .upcoming__auctions--department .upcoming__auctions--content, .view-article .upcoming__auctions--department .upcoming__auctions--content {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 5px 5px 0 0;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__image img {
  border-radius: 5px;
  max-height: 285px;
  min-height: 285px;
  object-fit: cover;
  max-width: 285px;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__image img,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__image img, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__image img {
    width: 100%;
    max-width: 100%;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content {
  margin-top: 1.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content {
    padding-left: 4rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content {
    padding-left: 1rem;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .sub__heading {
  color: #982065;
  font-family: "Arial", serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3 {
  color: #0B0A1D;
  font-family: "Georgia", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  width: 70%;
}
@media screen and (max-width: 799px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content h3 {
    width: 100%;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .preview__link {
  color: #0B0A1D;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content img,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content img,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content img,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content img, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content img {
  margin-left: 0.5rem;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container {
  margin-top: 2rem;
  text-align: left;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn {
  padding: 0.7rem;
  max-width: 270px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .consign__btn {
    width: 100%;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn {
  color: #982065;
  display: block;
  font-family: "Arial", serif;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  max-width: 270px;
  letter-spacing: 1px;
}
@media screen and (max-width: 599px) {
  body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
  .department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
  .department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn,
  .department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn {
    padding-left: 0rem;
    text-align: center;
  }
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn:hover {
  text-decoration: none;
}
body.site.department-template-old-masters .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-jewellery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-antiquities .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-chinese .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-furniture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img,
.department-template-design .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-prints .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-modern-home .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-sculpture .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-valuations .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-ceramics .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img,
.department-template-decorative .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-islamic .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-british .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-silver .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-watches .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-owner .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .department-template-wine .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img,
.department-template-studio-pottery .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .single-owner-collections .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .news-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img, .view-article .upcoming__auctions--department .upcoming__auctions--content .auctions__content .button__container .calendar__btn img {
  margin-right: 0.5rem;
}
body.site.department-template-old-masters .upcoming__auctions--department .auctions__date, .department-template-jewellery .upcoming__auctions--department .auctions__date, .department-template-antiquities .upcoming__auctions--department .auctions__date, .department-template-chinese .upcoming__auctions--department .auctions__date, .department-template-furniture .upcoming__auctions--department .auctions__date,
.department-template-design .upcoming__auctions--department .auctions__date, .department-template-prints .upcoming__auctions--department .auctions__date, .department-template-modern-home .upcoming__auctions--department .auctions__date, .department-template-sculpture .upcoming__auctions--department .auctions__date, .department-template-valuations .upcoming__auctions--department .auctions__date, .department-template-ceramics .upcoming__auctions--department .auctions__date,
.department-template-decorative .upcoming__auctions--department .auctions__date, .department-template-islamic .upcoming__auctions--department .auctions__date, .department-template-british .upcoming__auctions--department .auctions__date, .department-template-silver .upcoming__auctions--department .auctions__date, .department-template-watches .upcoming__auctions--department .auctions__date, .department-template-owner .upcoming__auctions--department .auctions__date, .department-template-wine .upcoming__auctions--department .auctions__date,
.department-template-studio-pottery .upcoming__auctions--department .auctions__date, .single-owner-collections .upcoming__auctions--department .auctions__date, .news-article .upcoming__auctions--department .auctions__date, .view-article .upcoming__auctions--department .auctions__date {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #FBF8F8;
  font-family: "Arial", serif;
  padding-bottom: 0.8rem;
  padding-top: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0 0 5px 5px;
}
body.site.department-template-old-masters .upcoming__auctions--department .auctions__date p, .department-template-jewellery .upcoming__auctions--department .auctions__date p, .department-template-antiquities .upcoming__auctions--department .auctions__date p, .department-template-chinese .upcoming__auctions--department .auctions__date p, .department-template-furniture .upcoming__auctions--department .auctions__date p,
.department-template-design .upcoming__auctions--department .auctions__date p, .department-template-prints .upcoming__auctions--department .auctions__date p, .department-template-modern-home .upcoming__auctions--department .auctions__date p, .department-template-sculpture .upcoming__auctions--department .auctions__date p, .department-template-valuations .upcoming__auctions--department .auctions__date p, .department-template-ceramics .upcoming__auctions--department .auctions__date p,
.department-template-decorative .upcoming__auctions--department .auctions__date p, .department-template-islamic .upcoming__auctions--department .auctions__date p, .department-template-british .upcoming__auctions--department .auctions__date p, .department-template-silver .upcoming__auctions--department .auctions__date p, .department-template-watches .upcoming__auctions--department .auctions__date p, .department-template-owner .upcoming__auctions--department .auctions__date p, .department-template-wine .upcoming__auctions--department .auctions__date p,
.department-template-studio-pottery .upcoming__auctions--department .auctions__date p, .single-owner-collections .upcoming__auctions--department .auctions__date p, .news-article .upcoming__auctions--department .auctions__date p, .view-article .upcoming__auctions--department .auctions__date p {
  font-size: 0.75rem;
  margin-bottom: 0rem;
  letter-spacing: 1px;
}
@media (max-width: 1399.98px) {
  body.site.department-template-old-masters .upcoming-auctions-fluid, .department-template-jewellery .upcoming-auctions-fluid, .department-template-antiquities .upcoming-auctions-fluid, .department-template-chinese .upcoming-auctions-fluid, .department-template-furniture .upcoming-auctions-fluid,
  .department-template-design .upcoming-auctions-fluid, .department-template-prints .upcoming-auctions-fluid, .department-template-modern-home .upcoming-auctions-fluid, .department-template-sculpture .upcoming-auctions-fluid, .department-template-valuations .upcoming-auctions-fluid, .department-template-ceramics .upcoming-auctions-fluid,
  .department-template-decorative .upcoming-auctions-fluid, .department-template-islamic .upcoming-auctions-fluid, .department-template-british .upcoming-auctions-fluid, .department-template-silver .upcoming-auctions-fluid, .department-template-watches .upcoming-auctions-fluid, .department-template-owner .upcoming-auctions-fluid, .department-template-wine .upcoming-auctions-fluid,
  .department-template-studio-pottery .upcoming-auctions-fluid, .single-owner-collections .upcoming-auctions-fluid, .news-article .upcoming-auctions-fluid, .view-article .upcoming-auctions-fluid {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* ---------------- */
/* LIBRARIES (AUCTION CALENDAR PAGES) */
@-webkit-keyframes scaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes scaleLeave-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightScaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-bc55024c {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideRightTranslateEnter-data-v-bc55024c {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftScaleEnter-data-v-bc55024c {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-bc55024c {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes slideLeftTranslateEnter-data-v-bc55024c {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.c-pane-container[data-v-bc55024c] {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #393d46;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

.c-pane-container.is-expanded[data-v-bc55024c] {
  width: 100%;
}

.c-pane-container.is-vertical[data-v-bc55024c] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-pane-container[data-v-bc55024c] * {
  box-sizing: inherit;
}

.c-pane-container[data-v-bc55024c] :focus {
  outline: none;
}

.c-pane-divider[data-v-bc55024c] {
  width: 1px;
  border: 1px inset;
  border-color: #fafafa;
}

@-webkit-keyframes scaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes scaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleLeave-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes slideRightScaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightTranslateEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideLeftScaleEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftTranslateEnter-data-v-2083cb72 {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.c-pane[data-v-2083cb72] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.c-horizontal-divider[data-v-2083cb72] {
  -ms-flex-item-align: center;
  align-self: center;
}

.c-header[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px;
}

.c-header .c-arrow-layout[data-v-2083cb72] {
  min-width: 26px;
}

.c-header .c-arrow-layout .c-arrow[data-v-2083cb72], .c-header .c-arrow-layout[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.c-header .c-arrow-layout .c-arrow[data-v-2083cb72] {
  font-size: 1.6rem;
  transition: fill-opacity 0.3s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-header .c-arrow-layout .c-arrow[data-v-2083cb72]:hover {
  fill-opacity: 0.5;
}

.c-header .c-title-layout[data-v-2083cb72] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-header .c-title-layout .c-title-popover .c-title-anchor[data-v-2083cb72], .c-header .c-title-layout .c-title-popover[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
}

.c-header .c-title-layout .c-title-popover .c-title-anchor .c-title[data-v-2083cb72] {
  font-weight: 400;
  font-size: 1.15rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.c-header .c-title-layout.align-left[data-v-2083cb72] {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.c-header .c-title-layout.align-right[data-v-2083cb72] {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.c-header .c-arrow.c-disabled[data-v-2083cb72] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.2;
}

.c-weekdays[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5px;
  color: #9499a8;
  font-size: 0.9rem;
  font-weight: 500;
}

.c-weekday[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: default;
}

.c-weeks[data-v-2083cb72] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 5px 5px 7px;
}

.c-weeks-rows-wrapper[data-v-2083cb72] {
  position: relative;
}

.c-weeks-rows[data-v-2083cb72] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.title-fade-enter-active[data-v-2083cb72], .title-fade-leave-active[data-v-2083cb72], .title-slide-down-enter-active[data-v-2083cb72], .title-slide-down-leave-active[data-v-2083cb72], .title-slide-left-enter-active[data-v-2083cb72], .title-slide-left-leave-active[data-v-2083cb72], .title-slide-right-enter-active[data-v-2083cb72], .title-slide-right-leave-active[data-v-2083cb72], .title-slide-up-enter-active[data-v-2083cb72], .title-slide-up-leave-active[data-v-2083cb72] {
  transition: all 0.25s ease-in-out;
}

.title-fade-leave-active[data-v-2083cb72], .title-none-leave-active[data-v-2083cb72], .title-slide-down-leave-active[data-v-2083cb72], .title-slide-left-leave-active[data-v-2083cb72], .title-slide-right-leave-active[data-v-2083cb72], .title-slide-up-leave-active[data-v-2083cb72] {
  position: absolute;
}

.title-none-enter-active[data-v-2083cb72], .title-none-leave-active[data-v-2083cb72] {
  transition-duration: 0s;
}

.title-slide-left-enter[data-v-2083cb72], .title-slide-right-leave-to[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.title-slide-left-leave-to[data-v-2083cb72], .title-slide-right-enter[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
}

.title-slide-down-leave-to[data-v-2083cb72], .title-slide-up-enter[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.title-slide-down-enter[data-v-2083cb72], .title-slide-up-leave-to[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.weeks-fade-enter-active[data-v-2083cb72], .weeks-fade-leave-active[data-v-2083cb72], .weeks-slide-down-enter-active[data-v-2083cb72], .weeks-slide-down-leave-active[data-v-2083cb72], .weeks-slide-left-enter-active[data-v-2083cb72], .weeks-slide-left-leave-active[data-v-2083cb72], .weeks-slide-right-enter-active[data-v-2083cb72], .weeks-slide-right-leave-active[data-v-2083cb72], .weeks-slide-up-enter-active[data-v-2083cb72], .weeks-slide-up-leave-active[data-v-2083cb72] {
  transition: all 0.25s ease-in-out;
}

.weeks-fade-leave-active[data-v-2083cb72], .weeks-none-leave-active[data-v-2083cb72], .weeks-slide-down-leave-active[data-v-2083cb72], .weeks-slide-left-leave-active[data-v-2083cb72], .weeks-slide-right-leave-active[data-v-2083cb72], .weeks-slide-up-leave-active[data-v-2083cb72] {
  position: absolute;
}

.weeks-none-enter-active[data-v-2083cb72], .weeks-none-leave-active[data-v-2083cb72] {
  transition-duration: 0s;
}

.weeks-slide-left-enter[data-v-2083cb72], .weeks-slide-right-leave-to[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}

.weeks-slide-left-leave-to[data-v-2083cb72], .weeks-slide-right-enter[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.weeks-slide-down-leave-to[data-v-2083cb72], .weeks-slide-up-enter[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.weeks-slide-down-enter[data-v-2083cb72], .weeks-slide-up-leave-to[data-v-2083cb72] {
  opacity: 0;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.title-fade-enter[data-v-2083cb72], .title-fade-leave-to[data-v-2083cb72], .title-none-enter[data-v-2083cb72], .title-none-leave-to[data-v-2083cb72], .weeks-fade-enter[data-v-2083cb72], .weeks-fade-leave-to[data-v-2083cb72], .weeks-none-enter[data-v-2083cb72], .weeks-none-leave-to[data-v-2083cb72] {
  opacity: 0;
}

@-webkit-keyframes scaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes scaleLeave-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightScaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideRightTranslateEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftScaleEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes slideLeftTranslateEnter-data-v-1ad2436f {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.popover-container[data-v-1ad2436f] {
  position: relative;
  outline: none;
}

.popover-container.expanded[data-v-1ad2436f] {
  display: block;
}

.popover-origin[data-v-1ad2436f] {
  position: absolute;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  z-index: 10;
  pointer-events: none;
}

.popover-origin.direction-top[data-v-1ad2436f] {
  bottom: 100%;
}

.popover-origin.direction-bottom[data-v-1ad2436f] {
  top: 100%;
}

.popover-origin.direction-left[data-v-1ad2436f] {
  top: 0;
  right: 100%;
}

.popover-origin.direction-right[data-v-1ad2436f] {
  top: 0;
  left: 100%;
}

.popover-origin.direction-bottom.align-left[data-v-1ad2436f], .popover-origin.direction-top.align-left[data-v-1ad2436f] {
  left: 0;
}

.popover-origin.direction-bottom.align-center[data-v-1ad2436f], .popover-origin.direction-top.align-center[data-v-1ad2436f] {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.popover-origin.direction-bottom.align-right[data-v-1ad2436f], .popover-origin.direction-top.align-right[data-v-1ad2436f] {
  right: 0;
}

.popover-origin.direction-left.align-top[data-v-1ad2436f], .popover-origin.direction-right.align-top[data-v-1ad2436f] {
  top: 0;
}

.popover-origin.direction-left.align-middle[data-v-1ad2436f], .popover-origin.direction-right.align-middle[data-v-1ad2436f] {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.popover-origin.direction-left.align-bottom[data-v-1ad2436f], .popover-origin.direction-right.align-bottom[data-v-1ad2436f] {
  top: auto;
  bottom: 0;
}

.popover-origin .popover-content-wrapper[data-v-1ad2436f] {
  position: relative;
  outline: none;
}

.popover-origin .popover-content-wrapper.interactive[data-v-1ad2436f] {
  pointer-events: all;
}

.popover-origin .popover-content-wrapper .popover-content[data-v-1ad2436f] {
  position: relative;
  background-color: #fafafa;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  padding: 4px;
}

.popover-origin .popover-content-wrapper .popover-content[data-v-1ad2436f]:after {
  display: block;
  position: absolute;
  background: inherit;
  border: inherit;
  border-width: 1px 1px 0 0;
  width: 12px;
  height: 12px;
  content: "";
}

.popover-origin .popover-content-wrapper .popover-content.direction-bottom[data-v-1ad2436f]:after {
  top: 0;
  border-width: 1px 1px 0 0;
}

.popover-origin .popover-content-wrapper .popover-content.direction-top[data-v-1ad2436f]:after {
  top: 100%;
  border-width: 0 0 1px 1px;
}

.popover-origin .popover-content-wrapper .popover-content.direction-left[data-v-1ad2436f]:after {
  left: 100%;
  border-width: 0 1px 1px 0;
}

.popover-origin .popover-content-wrapper .popover-content.direction-right[data-v-1ad2436f]:after {
  left: 0;
  border-width: 1px 0 0 1px;
}

.popover-origin .popover-content-wrapper .popover-content.align-left[data-v-1ad2436f]:after {
  left: 20px;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}

.popover-origin .popover-content-wrapper .popover-content.align-right[data-v-1ad2436f]:after {
  right: 20px;
  -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
  transform: translateY(-50%) translateX(50%) rotate(-45deg);
}

.popover-origin .popover-content-wrapper .popover-content.align-center[data-v-1ad2436f]:after {
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}

.popover-origin .popover-content-wrapper .popover-content.align-top[data-v-1ad2436f]:after {
  top: 18px;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}

.popover-origin .popover-content-wrapper .popover-content.align-middle[data-v-1ad2436f]:after {
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}

.popover-origin .popover-content-wrapper .popover-content.align-bottom[data-v-1ad2436f]:after {
  bottom: 18px;
  -webkit-transform: translateY(50%) translateX(-50%) rotate(-45deg);
  transform: translateY(50%) translateX(-50%) rotate(-45deg);
}

.fade-enter-active[data-v-1ad2436f], .fade-leave-active[data-v-1ad2436f], .slide-fade-enter-active[data-v-1ad2436f], .slide-fade-leave-active[data-v-1ad2436f] {
  transition: all 0.14s ease-in-out;
}

.fade-enter[data-v-1ad2436f], .fade-leave-to[data-v-1ad2436f], .slide-fade-enter[data-v-1ad2436f], .slide-fade-leave-to[data-v-1ad2436f] {
  opacity: 0;
}

.slide-fade-enter.direction-bottom[data-v-1ad2436f], .slide-fade-leave-to.direction-bottom[data-v-1ad2436f] {
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}

.slide-fade-enter.direction-top[data-v-1ad2436f], .slide-fade-leave-to.direction-top[data-v-1ad2436f] {
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
}

.slide-fade-enter.direction-left[data-v-1ad2436f], .slide-fade-leave-to.direction-left[data-v-1ad2436f] {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

.slide-fade-enter.direction-right[data-v-1ad2436f], .slide-fade-leave-to.direction-right[data-v-1ad2436f] {
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}

.c-week[data-v-28896542] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes scaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes scaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleLeave-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes slideRightScaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightTranslateEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideLeftScaleEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftTranslateEnter-data-v-3db80f80 {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.c-day-popover[data-v-3db80f80] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-day[data-v-3db80f80] {
  position: relative;
  min-height: 28px;
  z-index: 1;
}

.c-day-layer[data-v-3db80f80] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

.c-day-box-center-center[data-v-3db80f80] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.c-day-box-center-center[data-v-3db80f80], .c-day-box-left-center[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.c-day-box-left-center[data-v-3db80f80] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.c-day-box-right-center[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.c-day-box-center-bottom[data-v-3db80f80] {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 0;
  padding: 0;
}

.c-day-box-center-bottom[data-v-3db80f80], .c-day-content-wrapper[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-day-content-wrapper[data-v-3db80f80] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

.c-day-content[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.18s ease-in-out;
  margin: 0.1rem 0.08rem;
}

.c-day-backgrounds[data-v-3db80f80] {
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-day-background[data-v-3db80f80] {
  transition: height 0.13s ease-in-out, background-color 0.13s ease-in-out;
}

.shift-left[data-v-3db80f80] {
  margin-left: -1px;
}

.shift-right[data-v-3db80f80] {
  margin-right: -1px;
}

.shift-left-right[data-v-3db80f80] {
  margin: 0 -1px;
}

.c-day-dots[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.c-day-dot[data-v-3db80f80] {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #66b3cc;
  transition: all 0.18s ease-in-out;
}

.c-day-dot[data-v-3db80f80]:not(:last-child) {
  margin-right: 3px;
}

.c-day-bars[data-v-3db80f80] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 75%;
}

.c-day-bar[data-v-3db80f80] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 3px;
  background-color: #66b3cc;
  transition: all 0.18s ease-in-out;
}

.c-day-popover-content[data-v-3db80f80] {
  font-size: 0.8rem;
  font-weight: 400;
}

.background-enter-active.c-day-fade-enter[data-v-3db80f80] {
  transition: opacity 0.2s ease-in-out;
}

.background-enter-active.c-day-slide-right-scale-enter[data-v-3db80f80] {
  -webkit-animation: slideRightScaleEnter-data-v-3db80f80 0.16s ease-in-out;
  animation: slideRightScaleEnter-data-v-3db80f80 0.16s ease-in-out;
}

.background-enter-active.c-day-slide-right-translate-enter[data-v-3db80f80] {
  -webkit-animation: slideRightTranslateEnter-data-v-3db80f80 0.16s ease-in-out;
  animation: slideRightTranslateEnter-data-v-3db80f80 0.16s ease-in-out;
}

.background-enter-active.c-day-slide-left-scale-enter[data-v-3db80f80] {
  -webkit-animation: slideLeftScaleEnter-data-v-3db80f80 0.16s ease-in-out;
  animation: slideLeftScaleEnter-data-v-3db80f80 0.16s ease-in-out;
}

.background-enter-active.c-day-slide-left-translate-enter[data-v-3db80f80] {
  -webkit-animation: slideLeftTranslateEnter-data-v-3db80f80 0.16s ease-in-out;
  animation: slideLeftTranslateEnter-data-v-3db80f80 0.16s ease-in-out;
}

.background-enter-active.c-day-scale-enter[data-v-3db80f80] {
  -webkit-animation: scaleEnter-data-v-3db80f80 0.16s ease-in-out;
  animation: scaleEnter-data-v-3db80f80 0.16s ease-in-out;
}

.background-leave-active.c-day-fade-leave[data-v-3db80f80] {
  transition: opacity 0.2s ease-in-out;
}

.background-leave-active.c-day-scale-leave[data-v-3db80f80] {
  -webkit-animation: scaleLeave-data-v-3db80f80 0.2s ease-in-out;
  animation: scaleLeave-data-v-3db80f80 0.2s ease-in-out;
}

.background-enter.c-day-fade-enter[data-v-3db80f80], .background-leave-to.c-day-fade-leave[data-v-3db80f80] {
  opacity: 0;
}

@-webkit-keyframes scaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes scaleLeave-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightScaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideRightTranslateEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftScaleEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes slideLeftTranslateEnter-data-v-54b1f93b {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.c-day-popover-row[data-v-54b1f93b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 5px;
  transition: all 0.18s ease-in-out;
}

.c-day-popover-row.selectable[data-v-54b1f93b] {
  cursor: pointer;
}

.c-day-popover-row.selectable[data-v-54b1f93b]:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.c-day-popover-row[data-v-54b1f93b]:not(:first-child) {
  margin-top: 3px;
}

.c-day-popover-row .c-day-popover-indicator[data-v-54b1f93b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 15px;
  margin-right: 3px;
}

.c-day-popover-row .c-day-popover-indicator span[data-v-54b1f93b] {
  transition: all 0.18s ease-in-out;
}

.c-day-popover-row .c-day-popover-content[data-v-54b1f93b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: none;
  flex-wrap: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  transition: all 0.18s ease-in-out;
}

@-webkit-keyframes scaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleLeave-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@-webkit-keyframes slideRightScaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideRightTranslateEnter-data-v-81948efe {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@-webkit-keyframes slideLeftScaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@-webkit-keyframes slideLeftTranslateEnter-data-v-81948efe {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
@keyframes scaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0.7) scaleY(0.7);
    transform: scaleX(0.7) scaleY(0.7);
    opacity: 0.3;
  }
  90% {
    -webkit-transform: scaleX(1.1) scaleY(1.1);
    transform: scaleX(1.1) scaleY(1.1);
  }
  95% {
    -webkit-transform: scaleX(0.95) scaleY(0.95);
    transform: scaleX(0.95) scaleY(0.95);
  }
  to {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
    opacity: 1;
  }
}
@keyframes scaleLeave-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(1) scaleY(1);
    transform: scaleX(1) scaleY(1);
  }
  60% {
    -webkit-transform: scaleX(1.18) scaleY(1.18);
    transform: scaleX(1.18) scaleY(1.18);
    opacity: 0.2;
  }
  to {
    -webkit-transform: scaleX(1.15) scaleY(1.18);
    transform: scaleX(1.15) scaleY(1.18);
    opacity: 0;
  }
}
@keyframes slideRightScaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideRightTranslateEnter-data-v-81948efe {
  0% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  60% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
}
@keyframes slideLeftScaleEnter-data-v-81948efe {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    -webkit-transform: scaleX(1.08);
    transform: scaleX(1.08);
  }
}
@keyframes slideLeftTranslateEnter-data-v-81948efe {
  0% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  60% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
}
.c-nav[data-v-81948efe] {
  transition: height 5s ease-in-out;
  color: #333;
}

.c-header[data-v-81948efe] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dadada;
  padding: 3px 0;
}

.c-arrow-layout[data-v-81948efe] {
  min-width: 26px;
}

.c-arrow-layout[data-v-81948efe], .c-arrow[data-v-81948efe] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.c-arrow[data-v-81948efe] {
  font-size: 1.6rem;
  transition: fill-opacity 0.3s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-arrow[data-v-81948efe]:hover {
  fill-opacity: 0.5;
}

.c-title[data-v-81948efe] {
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}

.c-table-cell[data-v-81948efe], .c-title[data-v-81948efe] {
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-table-cell[data-v-81948efe] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  font-weight: 400;
  background-color: #fff;
  transition: all 0.1s ease-in-out;
}

.c-table-cell[data-v-81948efe]:hover {
  background-color: #f0f0f0;
}

.c-disabled[data-v-81948efe] {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}

.c-disabled[data-v-81948efe]:hover {
  background-color: transparent;
}

.c-active[data-v-81948efe] {
  background-color: #f0f0f0;
  font-weight: 600;
}

.c-indicators[data-v-81948efe] {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 5px;
  width: 100%;
  transition: all 0.1s ease-in-out;
}

.c-indicators .c-indicator[data-v-81948efe] {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.c-indicators .c-indicator[data-v-81948efe]:not(:first-child) {
  margin-left: 3px;
}

.c-table[data-v-81948efe] {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.c-table tr td[data-v-81948efe] {
  border: 1px solid #dadada;
  width: 60px;
  height: 34px;
}

.c-table tr td[data-v-81948efe]:first-child {
  border-left: 0;
}

.c-table tr td[data-v-81948efe]:last-child {
  border-right: 0;
}

.c-table tr:first-child td[data-v-81948efe] {
  border-top: 0;
}

.c-table tr:last-child td[data-v-81948efe] {
  border-bottom: 0;
}

.indicators-enter-active[data-v-81948efe], .indicators-leave-active[data-v-81948efe] {
  transition: all 0.1s ease-in-out;
}

.indicators-enter[data-v-81948efe], .indicators-leave-to[data-v-81948efe] {
  opacity: 0;
}

.svg-icon[data-v-12e91ab4] {
  display: inline-block;
  stroke: currentColor;
  stroke-width: 0;
}

.svg-icon path[data-v-12e91ab4] {
  fill: currentColor;
}

.date-label[data-v-6c331e62] {
  text-align: center;
}

.days-nights[data-v-6c331e62] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3px;
}

.days-nights .days[data-v-6c331e62], .days-nights .nights[data-v-6c331e62], .days-nights[data-v-6c331e62] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.days-nights .days[data-v-6c331e62], .days-nights .nights[data-v-6c331e62] {
  font-weight: 700;
}

.days-nights .days[data-v-6c331e62]:not(:first-child), .days-nights .nights[data-v-6c331e62]:not(:first-child) {
  margin-left: 13px;
}

.days-nights .vc-moon-o[data-v-6c331e62], .days-nights .vc-sun-o[data-v-6c331e62] {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.days-nights .vc-sun-o[data-v-6c331e62] {
  color: #ffb366;
}

.days-nights .vc-moon-o[data-v-6c331e62] {
  color: #4d4d64;
}



/*# sourceMappingURL=core.css.map */
