.video-element {
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.video-element__video {
  background: center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-element__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-element__video .icon {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 75px;
  position: absolute;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.6));
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.6));
}
.video-element__video:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.8) 100%);
}
.video-element__headline {
  margin: auto 25px 10px;
  color: white;
  z-index: 1;
  text-shadow: 4px 4px 4px black;
}
.video-element__headline .headline {
  margin: 0;
  font-size: 19px;
}
.bouncing-preloader-container {
  display: flex;
  height: 500px;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: white;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.bouncing-preloader-container.hide {
  opacity: 0;
  display: none;
}
.bouncing-preloader-container .bouncing-preloader .dot {
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation: bounce 1s infinite ease-in-out both;
  animation: bounce 1s infinite ease-in-out both;
}
.bouncing-preloader-container .bouncing-preloader .dot.dot-1 {
  -webkit-animation-delay: -0.54s;
  animation-delay: -0.54s;
}
.bouncing-preloader-container .bouncing-preloader .dot.dot-2 {
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.48s;
}
.bouncing-preloader-container .bouncing-preloader .dot.dot-3 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.bouncing-preloader-container .bouncing-preloader .dot.dot-4 {
  -webkit-animation-delay: -0.26s;
  animation-delay: -0.26s;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
  }
  40% {
    transform: scale(1);
  }
}
.lot-detail .current-bid-placeholder {
  display: block;
  height: 61px;
}
.lot-detail .time-remaining-placeholder {
  display: block;
  height: 252px;
}
.lot-detail .grey-background {
  margin: 15px 0;
  display: inline-block;
  background: #e5e5e5;
  padding: 15px;
}
.lot-detail .icon-big {
  font-size: 20px;
}
.lot-detail .lot-gallery-with-preloader {
  position: relative;
  height: 500px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .lot-gallery-with-preloader.thumbnails-hidden-mobile {
    height: 300px;
  }
}
.lot-detail .view-360-container {
  position: relative;
  z-index: 0;
}
.lot-detail .lot-gallery-container {
  height: 500px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .lot-gallery-container {
    height: 300px;
    display: flex;
    justify-content: center;
  }
}
.lot-detail .lot-gallery {
  position: relative;
  height: 500px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .lot-gallery {
    height: 300px;
    max-width: 90%;
    width: 90%;
  }
}
.lot-detail .lot-gallery .view-360-container {
  height: 100%;
}
.lot-detail .lot-gallery__controls {
  position: absolute;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  bottom: 5px;
  gap: 12px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .lot-gallery__controls {
    display: none;
  }
}
.lot-detail .lot-gallery__controls .control-wrapper {
  background-color: black;
  opacity: 78%;
  margin: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 25px;
}
.lot-detail .lot-gallery__controls .control-wrapper:hover {
  cursor: pointer;
}
.lot-detail .lot-gallery__controls .control-wrapper > img {
  height: 24px;
  width: 24px;
}
.lot-detail .lot-gallery__controls .control-wrapper .control-plus,
.lot-detail .lot-gallery__controls .control-wrapper .control-minus {
  position: relative;
  top: 4px;
  left: 1.5px;
}
.lot-detail .lot-gallery__controls .control-wrapper .control-arrow-counter-clockwise {
  position: relative;
  top: 2px;
}
.lot-detail .lot-gallery__stage {
  height: 500px;
  position: relative;
}
.lot-detail .lot-gallery__stage img {
  max-width: none;
  max-height: none;
}
@media only screen and (max-width: 980px) {
  .lot-detail .lot-gallery__stage {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .lot-detail .lot-gallery__stage img {
    max-height: 280px;
    max-width: 100%;
  }
  .lot-detail .lot-gallery__stage .hi-hres-image-link--mobile {
    color: #b72841;
  }
}
.lot-detail .lot-gallery__thumbnail-gallery {
  display: flex;
  flex-direction: column;
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 10px;
  padding-right: 10px;
  gap: 10px;
}
@media (max-width: 980px) {
  .lot-detail .lot-gallery__thumbnail-gallery {
    height: auto;
    flex-direction: row;
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    gap: 5px;
  }
  .lot-detail .lot-gallery__thumbnail-gallery .img {
    max-width: none;
    max-height: 150px;
  }
}
.lot-detail .lot-gallery__thumbnail-gallery > div:hover {
  cursor: pointer;
}
.lot-detail .lot-gallery__thumbnail-gallery .thumbnail-wrapper {
  line-height: 0;
}
.lot-detail .lot-gallery__thumbnail-gallery .thumbnail-wrapper.selected {
  position: relative;
  width: fit-content;
}
.lot-detail .lot-gallery__thumbnail-gallery .thumbnail-wrapper.selected::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  box-shadow: inset 0px 0px 0px 1px #515369;
}
.lot-detail .lot-gallery__thumbnail-gallery .icon-view-360 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  line-height: 100%;
  font-size: 50px;
  align-content: center;
}
.lot-detail .lot-gallery .mini-map,
.lot-detail .lot-gallery .hi-res-img-link {
  display: none;
}
.lot-detail .lot-gallery-fullscreen-link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
}
.lot-detail .lot-gallery__fullscreen-header {
  display: block;
  padding-bottom: 2em;
  height: 150px;
  background-color: #f7f7f7;
}
.lot-detail .lot-gallery__fullscreen-header__logo {
  padding: 5%;
}
.lot-detail .lot-gallery__fullscreen-header__link {
  text-align: center;
  padding: 5%;
}
.lot-detail .lot-gallery--fullscreen {
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
}
.lot-detail .lot-gallery--fullscreen .row {
  height: 100%;
}
.lot-detail .lot-gallery--fullscreen .lot-gallery__stage {
  height: 100vh;
}
.lot-detail .lot-gallery--fullscreen .lot-gallery__thumbnail-gallery {
  height: calc(100vh - 150px);
  max-height: none;
  background-color: #f7f7f7;
  align-items: center;
}
.lot-detail .lot-gallery--fullscreen .mini-map {
  display: block;
}
.lot-detail .lot-gallery--fullscreen .mini-map .rzpp-preview {
  border-color: white !important;
  border-width: 2px !important;
  filter: drop-shadow(0 0 4px black);
}
.lot-detail .lot-gallery--fullscreen .hi-res-img-link {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ebebeb;
}
.lot-detail #preis-rechner {
  margin: 10px 0;
}
.lot-detail #umrechnen-label {
  color: #b72841;
  text-align: right;
}
@media only screen and (max-width: 980px) {
  .lot-detail #umrechnen-label {
    text-align: left;
  }
}
.lot-detail .print-headline {
  display: none;
}
.lot-detail .other-lot {
  padding: 15px 0;
}
.lot-detail .lot-navigation {
  cursor: pointer;
  display: none;
  color: #595959;
  width: 28px;
  z-index: 1;
}
.lot-detail .lot-navigation::before {
  font-size: 20px;
}
.lot-detail .lot-navigation#previous-lot {
  margin-right: 20px;
}
.lot-detail .lot-navigation#next-lot {
  margin-left: 20px;
}
.lot-detail .lot-navigation__link:focus-visible {
  outline: none;
}
.lot-detail .lot-navigation__link:focus-visible .icon {
  outline: 4px solid #b72841;
}
.lot-detail .lot-nav-link--positioning {
  width: 30px;
  position: relative;
}
.lot-detail .lot-navigation-mobile {
  cursor: pointer;
  display: none;
  color: #595959;
}
.lot-detail .lot-navigation-mobile::before {
  font-size: 15px;
}
.lot-detail .lot-navigation-mobile#previous-lot-mobile {
  margin-right: 20px;
}
.lot-detail .lot-navigation-mobile#next-lot-mobile {
  margin-left: 20px;
}
.lot-detail .lot-tooltip {
  cursor: help;
}
.lot-detail .no-break {
  white-space: nowrap;
}
.lot-detail .no-break h2 {
  display: inline-flex;
}
.lot-detail .image-list {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 10px;
}
.lot-detail .image-list__image-selector {
  display: block;
  margin: 0 auto 15px;
  max-height: 125px;
  cursor: pointer;
  position: relative;
}
.lot-detail .image-list .overlay-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  font-size: 50px;
  padding-top: 15px;
  text-shadow: 2px 1px 5px black;
}
.lot-detail .image-list .overlay-360-image {
  max-height: 125px;
  display: block;
  margin: 0 auto 15px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .image-list {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
  }
  .lot-detail .image-list__image-selector {
    display: inline-block;
    margin-right: 5px;
  }
}
.lot-detail .hotline-box {
  padding: 15px 40px 15px 30px;
}
.lot-detail .hotline-box .icon-hotline {
  font-size: 35px;
}
.lot-detail .hotline-box__table {
  display: flex;
  align-items: center;
}
.lot-detail .hotline-container .info-box-content {
  width: 300px;
}
@media only screen and (max-width: 980px) {
  .lot-detail .hotline-container .info-box-content {
    top: 45%;
  }
}
.lot-detail #observe_lot {
  cursor: pointer;
  color: #006480;
}
.lot-detail #observe_lot:not(.not-observed) .observe_start {
  display: none;
}
.lot-detail #observe_lot.not-observed {
  color: #4c4c4c;
}
.lot-detail #observe_lot.not-observed .icon-check,
.lot-detail #observe_lot.not-observed .observe_end {
  display: none;
}
.lot-detail .bid-information {
  display: inline-block;
  padding: 10px 15px;
  margin: 15px 0 0 0;
  color: white;
}
.lot-detail .bid-information.connection-lost {
  background-color: #e5e5e5;
  color: #b72841;
}
.lot-detail .bid-input--disabled {
  background-color: lightgrey;
  pointer-events: none;
}
.lot-detail .bid-input--disabled::placeholder {
  color: dimgrey;
}
.lot-detail .bid-button--disabled {
  pointer-events: none;
}
.lot-detail .less-than-one-minute {
  color: red;
}
.lot-detail .outbid {
  background: #b72841;
}
.lot-detail .outbidLimitNotReached {
  background: #b72841;
}
.lot-detail .highest-bidder {
  background: #7bca5f;
}
.lot-detail #maxBid {
  color: #b72841;
}
.lot-detail #maxBid.green {
  color: #7bca5f;
}
.lot-detail .limit-not-reached {
  color: #b72841;
  margin: 15px 0;
}
.lot-detail .lot-detail-teasers {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 981px) {
  .lot-detail .lot-detail-teasers {
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
  }
}
@media only screen and (max-width: 980px) {
  .lot-detail dl,
  .lot-detail dd {
    margin-bottom: 0;
  }
  .lot-detail #umrechnen-label {
    margin-top: 0;
  }
}
.lot-detail .copyright-licence {
  font-size: 12px;
}
.subheadline {
  font-size: 20px;
}
.no-list-style li::before {
  display: none;
}
th,
td {
  padding: 4px 10px 4px 0;
  vertical-align: top;
}
dd {
  margin-left: 0;
  margin-bottom: 20px;
}
#auction-details-expanded td p {
  margin: 0;
}
@media only screen and (max-width: 980px) {
  #auction-details-expanded {
    font-size: 15px;
  }
  #auction-details-expanded .icon-svg-saleroom,
  #auction-details-expanded .icon-svg-online {
    height: 17px;
  }
  #auction-details-expanded .icon-svg-saleroomWithLiveBidding,
  #auction-details-expanded .icon-svg-onlineWithLiveBidding {
    height: 18px;
    width: 33px;
  }
}
@media only screen and (max-width: 375px) {
  #auction-details-expanded tbody > tr > td {
    padding: 4px 5px 4px 0;
  }
}
#auktion-details {
  position: relative;
}
#auktion-details .bouncing-preloader-container {
  height: 100%;
  width: 100%;
  padding-top: 248px;
  align-items: start;
}
#auktion-details .saleroom-notice p {
  margin-top: 0 !important;
}
@media only screen and (max-width: 980px) {
  #auktion-details .saleroom-notice {
    margin-top: 10px;
  }
}
#auktion-details .bieten-form {
  margin: 25px 0;
}
#auktion-details .social-media-toolbar {
  border-top: 1px solid #e6e6e6;
  margin-top: 15px;
  padding-top: 8px;
  width: 100%;
  margin-left: 0;
}
#auktion-details .social-media-toolbar .icon::before {
  vertical-align: middle;
}
#auktion-details .social-media-toolbar .right {
  text-align: right;
  display: table-cell;
  vertical-align: bottom;
}
#auktion-details .social-media-toolbar .col.col-6 {
  padding: 0;
}
@media only screen and (max-width: 340px) {
  #auktion-details .social-media-toolbar .col.col-6 {
    display: block;
    width: 100%;
  }
  #auktion-details .social-media-toolbar .right {
    text-align: left;
  }
}
#auktion-details .button-toolbar {
  margin-top: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
#auktion-details .button-toolbar > .flex-col {
  width: auto;
  flex-grow: 1;
}
@media only screen and (max-width: 980px) {
  #auktion-details .button-toolbar.flex-row > .flex-col {
    padding: 0 15px;
  }
}
#auktion-details .icon-hotline::before {
  padding-right: 10px;
}
#auktion-details #bid-history {
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid #e6e6e6;
  width: 100%;
  min-width: 380px;
  max-width: 500px;
}
#auktion-details #bid-history > .row {
  background-color: #f7f7f7;
  padding: 5px 0;
}
#auktion-details #bid-history .row {
  display: flex;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 980px) {
  #auktion-details #bid-history .row:not(.not-collapsing) > .col:not(.col-no-padding) {
    padding: 0;
  }
}
#auktion-details #bid-history-table .row {
  border-bottom: 1px solid #f7f7f7;
  padding: 2px 0;
}
#auktion-details [data-target="bid-info"].error {
  color: #b72841;
}
#auktion-details .buy-now {
  border: 2px solid #4c4c4c;
  padding: 5px;
  display: inline-block;
  border-radius: 5px;
  margin-top: 1em;
}
.separator-interlinking-details {
  max-width: calc(1200px - 60px);
  width: calc(100% - 60px);
  margin-top: 50px;
}
.video-element {
  height: 200px;
}
.video-element .video-element-video {
  max-width: 400px;
  max-height: 200px;
  cursor: pointer;
}
.auction-details-table th {
  text-align: left;
}
#email-share-form .page-overlay-container {
  z-index: 3000;
}
#email-share-form .page-overlay-container .page-overlay {
  top: 10%;
  margin-top: 0;
}
#email-share-form .page-overlay-container .page-overlay .page-overlay-content {
  height: auto;
  max-height: calc(80vh - 60px);
  overflow-y: auto;
  padding: 0 15px;
}
#email-share-form .page-overlay-container .page-overlay .page-overlay-content textarea {
  display: block;
  width: 100%;
  resize: vertical;
  min-height: 100px;
}
@media print {
  #auktion-details .col.col-6 {
    display: block;
    width: 100%;
  }
  #auktion-details .right {
    text-align: left;
  }
  #ToolbarDisplay,
  .lot-gallery__thumbnail-gallery {
    display: none !important;
  }
}
@media print and print {
  #bid-history .row:not(.not-collapsing) > .col:not(.col-no-padding) {
    padding: 0;
  }
}
.tooltip {
  position: absolute;
  background-color: #fff;
  color: #000000;
  padding: 10px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}
.tooltip .tooltip-text {
  white-space: pre-line;
}
.question-icon {
  color: black;
  background-color: white;
  font-size: 5px;
}



@page {
  margin-left: 2cm !important;
}
@media print {
  html {
    font-size: 28px;
  }
  .logo-container .img.logo {
    margin-top: 0;
    margin-bottom: 1em;
    width: 10cm;
    height: auto;
  }
  .three-columns {
    display: none;
  }
  span.bigger {
    font-size: 1em;
  }
  #bild-box {
    display: block;
    float: none;
  }
  .desktop-hidden:not(.print-hidden) {
    display: block;
  }
  .no-break {
    white-space: nowrap;
  }
  .no-break h2 {
    display: block;
  }
  h1,
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }
  .row.not-collapsing {
    width: 100% !important;
    margin-left: -15px !important;
    margin-right: 0 !important;
  }
  .mobile-hidden {
    display: none;
  }
  .img:not(.logo) {
    max-height: 450px !important;
  }
  .zoomify-list {
    width: 100%;
    padding: 0;
    display: block;
    text-align: center;
    outline: inherit;
    box-sizing: inherit;
  }
  .image-list {
    padding: 0 10px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .image-list__image-selector {
    margin: 5px !important;
    max-height: 5cm;
    max-width: 4cm;
    overflow: hidden;
  }
  @-moz-document url-prefix() {
    .image-list {
      display: table-row;
    }
    .image-list__image-selector {
      display: table-cell !important;
    }
  }
  .printed-show {
    display: block !important;
  }
  .tx-dor-auktion {
    display: block;
  }
  .tx-dor-auktion .row {
    width: 110%;
    margin-left: 20px;
  }
  .tx-dor-auktion .col-4,
  .tx-dor-auktion .col-8 {
    display: block;
    width: 100%;
  }
  .auktion-detail {
    line-height: 1.5em;
  }
  .lot-detail .print-headline {
    display: block;
    width: 200%;
  }
  .row:not(.not-collapsing) {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .row:not(.not-collapsing) > .col {
    display: block;
    width: 100%;
  }
  .row:not(.not-collapsing) > .col:not(.col-no-padding) {
    padding: 15px 0;
  }
  .row:not(.not-collapsing) > .col.col-1 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-2 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-3 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-4 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-5 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-6 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-7 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-8 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-9 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-10 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-11 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-12 {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-20-percent {
    width: 100%;
  }
  .row:not(.not-collapsing) > .col.col-center {
    text-align: center;
  }
}



.expand-text-false,
.expand-text .html-text {
  display: none;
}
.overflowing-text-container {
  height: 200px;
  overflow-y: auto;
  border: 1px solid #515369;
  margin-bottom: 15px;
  padding: 0.5em 1em 1em 1em;
}
.headline--auction-small {
  margin-bottom: 5px;
  font-size: 18px;
}



.video-element {
  height: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.video-element__video {
  background: center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
}
.video-element__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-element__video .icon {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 75px;
  position: absolute;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.6));
  -webkit-filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.6));
}
.video-element__video:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(0, 0, 0, 0.8) 100%);
}
.video-element__headline {
  margin: auto 25px 10px;
  color: white;
  z-index: 1;
  text-shadow: 4px 4px 4px black;
}
.video-element__headline .headline {
  margin: 0;
  font-size: 19px;
}



.auction-auctioneer{position:relative}.auction-auctioneer__wrapper{padding-top:16px}.auction-auctioneer__wrapper--hide{display:none}.auction-auctioneer__wrapper--show{display:block}.auction-auctioneer__button{margin-top:15px;position:relative;z-index:1}.auction-auctioneer__button--width{max-width:300px}.auction-auctioneer__button:focus-visible{outline-color:#006480}.auction-auctioneer__blob{background:#b72841;border-radius:50%;margin:5px 10px 5px 5px;height:13px;width:13px;box-shadow:0 0 0 0 #000;transform:scale(1);animation:pulse 1.5s infinite}.auction-auctioneer__blob-wrapper{position:absolute;height:21px;top:18px}.auction-auctioneer__text-wrapper{margin-left:30px}.auction-auctioneer__text--live-status,.auction-auctioneer__text--lot-number{display:inline-block;vertical-align:middle}.auction-auctioneer__text--login,.auction-auctioneer__text--activation{font-style:italic;margin:5px 0}@keyframes pulse{0%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(183,40,65,.7)}70%{transform:scale(1);box-shadow:0 0 0 5px rgba(183,40,65,0)}100%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(183,40,65,0)}}


