@charset "UTF-8";
.cart-table {
  border-bottom: 1px solid #e6e6e6;
}
.cart-table .cart-table-head {
  padding-bottom: 16px;
}
@media (max-width: 59.99em) {
  .cart-table .cart-table-head {
    border-bottom: 2px solid #e6e6e6;
    border-bottom-color: var(--keyline-color);
    margin-left: -3vw;
    margin-right: -3vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .cart-table .cart-table-head + .cart-product-line {
    border-top: 0 none;
  }
}
.cart-table .cart-bundled-line,
.cart-table .cart-suggestion-line {
  margin-bottom: 16px;
}
.cart-table-head {
  align-items: flex-end;
  display: flex;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 59.99em) {
  .cart-table-head__title {
    display: none;
  }
  .cart-table-head__price {
    order: -1;
  }
}
@media (max-width: 74.99em) {
  .cart-table-head__action {
    display: none;
  }
  :root .cart-table-head__action--reserve {
    display: block;
    margin-left: auto;
    text-align: right;
  }
}
.cart-action-picker {
  display: flex;
}
.cart-action-picker__item {
  align-items: flex-start;
  flex: 1 1 50px;
  position: relative;
  transition: background-color 0.1s ease-out, opacity 0.15s ease-out;
  width: 1px;
}
.cart-action-picker__item input {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
}
label.cart-action-picker__item {
  cursor: pointer;
}
a.cart-action-picker__item {
  border-radius: 4px;
  color: inherit;
  outline: 0 none !important;
  transition: box-shadow 0.1s ease-out;
}
a.cart-action-picker__item:focus-visible {
  box-shadow: rgba(22, 178, 114, 0.5) 0 0 0 4px;
}
.cart-action-picker__item.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.cart-action-picker__item.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.cart-action-picker__item.is-hidden a {
  display: none;
}
.cart-action-picker__item.is-unavailable {
  height: 100%;
  width: 100%;
  background-color: #fcf3eb;
  border-radius: 4px;
}
.cart-action-picker__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  min-height: 22px;
  line-height: 1.1666666667;
  transition: color 0.1s ease-out;
}
input:checked ~ .cart-action-picker__title {
  color: #16b272;
}
.cart-action-picker__item.is-unavailable input:checked ~ .cart-action-picker__title {
  color: #f69223;
}
.cart-action-picker__body {
  color: #1e2429;
  font-size: 14px;
  line-height: 1.3125;
}
.cart-action-picker__body[data-status=available] {
  font-size: 15px;
}
.cart-action-picker__body[data-status=limited_stock] {
  color: #000;
}
.cart-action-picker__body:not([data-status]) {
  color: #616669;
  font-style: italic;
}
.cart-action-picker__outline {
  display: none;
}
.cart-action-picker__select-a-store {
  color: #0066cc;
  font-weight: 500 !important;
  text-decoration: underline;
}
@media (max-width: 24.99em) {
  :root .cart-action-picker__item.is-unavailable {
    padding: 2vw 3vw;
  }
  .cart-action-picker__title {
    font-size: 4.5vw;
  }
  .cart-action-picker__body {
    font-size: 3.5vw;
  }
  .cart-action-picker__body[data-status=available] {
    font-size: 3.75vw;
  }
}
@media (max-width: 59.99em) {
  .cart-action-picker__item + .cart-action-picker__item {
    margin-left: 24px;
  }
  .cart-action-picker__item + .cart-action-picker__item::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -12px;
    border-left: 1px solid #e6e6e6;
    content: "";
  }
  .cart-action-picker__item.is-unavailable {
    padding: 8px 12px;
  }
  .cart-action-picker__body {
    display: block;
    position: relative;
  }
  .cart-action-picker__body[data-status=no_premises] br {
    display: none;
  }
  .cart-action-picker__title + .cart-action-picker__body, .cart-action-picker__icon + .cart-action-picker__body {
    margin-top: 4px;
  }
  .cart-action-picker__body::before {
    position: absolute;
    top: -1px;
    right: -3px;
    bottom: -1px;
    left: -3px;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
  }
  input:focus-visible ~ .cart-action-picker__body::before {
    box-shadow: rgba(22, 178, 114, 0.5) 0 0 0 4px;
  }
}
.cart-quantity-cell {
  display: none;
}
.cart-product-line {
  border-top: 1px solid #e6e6e6;
  padding-bottom: 24px;
  padding-top: 24px;
}
a.cart-product-line__image {
  outline: 0 none !important;
}
a.cart-product-line__image::before {
  position: absolute;
  top: -2px;
  right: -3px;
  bottom: -2px;
  left: -3px;
  border-radius: 2.5px;
  content: "";
  pointer-events: none;
  transition: box-shadow 0.1s ease-out;
}
a.cart-product-line__image:focus-visible::before {
  box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
}
@media (max-width: 59.99em) {
  .cart-product-line {
    padding-left: 86px;
    position: relative;
  }
  .cart-product-line__info {
    padding-right: 38px;
    position: relative;
  }
  .cart-product-line__info .mini-defs {
    font-size: 16px;
  }
  .cart-product-line__image {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cart-product-line__image img, .cart-product-line__image svg {
    height: 70px;
    width: 70px;
    margin-top: 24px;
  }
  .cart-product-line__edit {
    position: absolute;
    top: -24px;
    right: -3vw;
    bottom: 0;
    background: none;
    color: #0066cc;
    padding: 0;
    transition: color 0.1s ease-out;
    width: calc(38px + 3vw);
  }
  .cart-product-line__edit.is-important {
    color: #f69223;
  }
  .cart-product-line__edit.is-important::before {
    position: absolute;
    top: 24px;
    left: 50%;
    height: 32px;
    width: 32px;
    background: #fcf3eb;
    border-radius: 4px;
    content: "";
    margin-left: -16px;
  }
  .cart-product-line__edit {
    outline: 0 none !important;
  }
  .cart-product-line__edit::after {
    position: absolute;
    border-radius: 2.5px;
    content: "";
    pointer-events: none;
    transition: box-shadow 0.1s ease-out;
    height: 38px;
    left: 12px;
    right: 12px;
    top: 21px;
  }
  .cart-product-line__edit:focus-visible::after {
    box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
  }
  .cart-product-line__edit:not(:disabled):active, .cart-product-line__edit:not(:disabled):hover {
    color: #39a9e0;
  }
  .cart-product-line__edit .icon {
    position: absolute;
    top: 24px;
    left: 0;
    height: 32px;
    width: 100%;
  }
  :root .cart-product-line__option, .cart-product-line__price {
    display: none;
  }
  .cart-product-line__action {
    margin-top: 20px;
    max-width: 320px;
  }
  .cart-product-line .review-stars {
    display: none;
  }
}
.cart-bundled-line, .cart-bundled-line__container {
  transition: background-color 0.1s ease-out;
}
@media (max-width: 59.99em) {
  .cart-bundled-line {
    background: #fff;
    border: 3px solid #cfefe2;
    padding: 9px 9px 9px 83px;
    position: relative;
  }
  .cart-bundled-line.is-flagged {
    background: #e7f7f0;
    border: 3px solid #e7f7f0;
  }
  .cart-bundled-line__image {
    position: absolute;
    top: 9px;
    left: 9px;
  }
  .cart-bundled-line__image img, .cart-bundled-line__image svg {
    height: 58px;
    width: 58px;
  }
  .cart-bundled-line__remove {
    position: absolute;
    top: 8px;
    right: 12px;
  }
  .cart-bundled-line__option {
    margin-top: 12px;
    max-width: 100%;
    width: 200px;
  }
  .cart-bundled-line__action {
    margin-top: 12px;
  }
  .cart-bundled-line__price {
    display: none;
  }
}
.cart-suggestion-line {
  background: #e7f0f7;
}
@media (max-width: 59.99em) {
  .cart-suggestion-line {
    padding: 12px 12px 12px 86px;
    position: relative;
  }
  .cart-suggestion-line__image {
    position: absolute;
    top: 12px;
    left: 12px;
  }
  .cart-suggestion-line__image img, .cart-suggestion-line__image svg {
    height: 58px;
    width: 58px;
  }
  .cart-suggestion-line__info {
    position: relative;
  }
  .cart-suggestion-line__info .money {
    position: absolute;
    top: 0;
    right: 0;
  }
  .cart-suggestion-line__prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    max-width: 240px;
  }
  .cart-suggestion-line__prompt .link {
    padding: 4px 8px;
  }
}
.cart-page__voucher .summary-grid__group {
  padding-bottom: 8px;
  padding-top: 8px;
}
.cart-page__part-despatch .compound-input {
  width: 100%;
}
@media (max-width: 59.99em) {
  .cart-page__cart .cart-notice {
    margin-bottom: 12px;
  }
  .cart-page__summary-title {
    display: none;
  }
  .cart-page__payment {
    margin-top: 28px;
  }
  .cart-page__reserve {
    display: block;
    margin: 12px 8px 0;
  }
  .cart-page__reserve-notice {
    margin: 0 -8px 16px;
  }
  .cart-page__aside {
    border: 1.5px solid #e6e6e6;
    margin: 28px auto 0;
    padding: 16px;
  }
  .cart-page__international {
    border-bottom: 1px solid #e6e6e6;
    padding: 22px 0 20px 8px;
    width: 100%;
  }
}
.cart-empty {
  text-align: center;
}
.cart-empty__svg {
  width: 110px;
  height: 95px;
  margin-left: auto;
  margin-right: auto;
}
.cart-empty__svg svg {
  width: 100%;
  height: 100%;
  color: #16b272;
}
.cart-empty__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-top: 24px;
  vertical-align: -9px;
}
.cart-empty__sub-title {
  font-size: 20px;
  line-height: 26px;
  margin-top: 24px;
}
@media (max-width: 35.99em) {
  .cart-empty__svg {
    width: 90px;
    height: 77px;
    margin-top: 16px;
  }
  .cart-empty__title {
    font-size: 22px;
    line-height: 26px;
  }
  .cart-empty__sub-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 59.99em) {
  .cart-empty__sub-title {
    margin-bottom: 20px;
  }
}
.delivery-notice {
  background: #fcf3eb;
  border-radius: 8px;
  color: #1e2429;
  font-size: 16px;
  line-height: 1.3125;
  padding: 16px 20px;
  position: relative;
}
.delivery-picker__summary, .delivery-picker .scroll-picker-grid {
  transition: opacity 0.2s ease;
}
.delivery-picker.is-loading .delivery-picker__summary, .delivery-picker.is-loading .scroll-picker-grid {
  opacity: 0.5;
  pointer-events: none;
}
.delivery-picker__strikes {
  background: #fcf3eb;
  border-radius: 8px;
  padding: 16px;
}
@media (max-width: 59.99em) {
  .delivery-picker {
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    padding-bottom: 8px;
  }
  .delivery-picker__title {
    display: none;
  }
  .delivery-picker__country {
    align-items: center;
    display: flex;
    order: 1;
    padding: 12px 8px;
  }
  .delivery-picker__country-label {
    flex: 0 0 auto;
    font-size: 16px;
    padding-right: 12px;
  }
  .delivery-picker__country-label::after {
    content: ":";
  }
  .delivery-picker__country-input {
    flex: 1 1 auto;
  }
  .delivery-picker__offer {
    display: none;
    line-height: 1.1666666667;
    margin-top: 16px;
    text-align: center;
    min-height: 38px;
  }
  .delivery-picker__offer strong {
    display: block;
  }
  .delivery-picker__summary {
    margin: 8px 8px 0;
    order: 2;
  }
  .delivery-picker__toggle {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 8px;
    order: 4;
  }
  .delivery-picker__notice {
    margin: 16px 0;
  }
  .delivery-picker__picker {
    margin-left: -3vw;
    margin-right: -3vw;
    order: 3;
  }
  .delivery-picker__strikes {
    order: 5;
  }
}
@media (max-width: 35.99em) {
  .delivery-picker__country-label {
    font-size: 13px;
  }
}
@media (min-width: 36em) and (max-width: 59.99em) {
  .delivery-picker__summary {
    margin-left: 140px;
  }
}
.delivery-quick-option__button {
  background: transparent;
  border-radius: 4px;
  border: 2px dotted #e6e6e6;
  color: #1e2429;
  font-size: 13px;
  min-height: 46px;
  margin-top: 8px;
  outline: 0 none !important;
  overflow: visible;
  padding: 2px;
  position: relative;
  text-align: left;
  transition: box-shadow 0.1s ease-out;
}
.delivery-quick-option__button:focus-visible {
  box-shadow: rgba(22, 178, 114, 0.5) 0 0 0 4px;
}
.delivery-quick-option__button:first-child {
  margin-left: auto;
}
.delivery-quick-option__button:not(.is-active):hover {
  border: 2px solid #16b272;
}
.delivery-quick-option__icon {
  height: 20px;
  width: 20px;
}
.delivery-quick-option__name {
  display: block;
  text-align: center;
}
.delivery-quick-option__icon ~ .delivery-quick-option__name, .delivery-quick-option__icon ~ .delivery-quick-option__price {
  margin-left: 40px;
  text-align: left;
}
.delivery-quick-option__price {
  display: block;
}
.delivery-quick-option__toggle {
  display: flex;
  flex-direction: row;
}
.delivery-quick-option__toggle .is-active {
  border: 2px solid #e6e6e6;
}
.delivery-quick-option__toggle-expand .is-active:before {
  position: absolute;
  top: -15px;
  left: 50%;
  border-bottom: 15px solid #e6e6e6;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  content: "";
  display: block;
  height: 0;
  transform: translateX(-50%);
  width: 0;
}
.delivery-quick-option__toggle-expand .is-active:after {
  position: absolute;
  top: -12px;
  left: 50%;
  border-bottom: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  content: "";
  display: block;
  height: 0;
  transform: translateX(-50%);
  width: 0;
}
@media (max-width: 22.99em) {
  .delivery-quick-option__button {
    min-height: 76px;
    padding: 2px;
    text-align: center;
  }
  .delivery-quick-option__icon ~ .delivery-quick-option__name, .delivery-quick-option__icon ~ .delivery-quick-option__price {
    margin-left: 0;
    text-align: center;
  }
  .delivery-quick-option__icon {
    display: inline-block;
    text-align: center;
  }
}
@media (min-width: 23em) {
  .delivery-quick-option__icon {
    position: absolute;
    top: 50%;
    left: 10px;
    margin: 0;
    transform: translateY(-50%);
  }
}
@media (max-width: 59.99em) {
  .delivery-quick-option__button {
    width: 33.33%;
  }
  .delivery-quick-option__toggle {
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px;
    order: 4;
  }
}
@media (min-width: 36em) and (max-width: 59.99em) {
  .delivery-quick-option__toggle {
    margin-left: 140px;
  }
}
.cart-notice {
  background: #fcf3eb;
  border-radius: 8px;
  color: #1e2429;
  font-size: 16px;
  line-height: 1.3125;
  padding: 16px;
  position: relative;
}
.cart-notice__icon {
  height: 36px;
  width: 36px;
}
.cart-notice__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1666666667;
}
.cart-notice__body > li {
  display: list-item;
  line-height: 1.3125;
  list-style: disc;
  margin-left: 1em;
}
.cart-notice__body > li + li {
  margin-top: 4px;
}
.cart-notice::after {
  position: absolute;
  top: 100%;
  left: 26px;
  border: 14px solid transparent;
  border-top-color: #fcf3eb;
  border-bottom: 0 none;
  content: "";
  display: block;
}
@media (max-width: 59.99em) {
  .cart-notice {
    padding-left: 64px;
  }
  .cart-notice__icon {
    position: absolute;
    top: 16px;
    left: 16px;
  }
  .cart-notice__body {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
.cart-promotion {
  background: #dff3eb;
}
.cart-promotion__image {
  background: #fff;
  border-radius: 50%;
}
.cart-promotion__image .icon {
  height: 74%;
  width: 74%;
  margin: 13% 0 0 13%;
}
.cart-promotion__image .icon--product__intercom {
  margin-left: 11%;
  margin-top: 10%;
}
@media (max-width: 59.99em) {
  .cart-promotion {
    padding: 16px 16px 16px 86px;
    position: relative;
  }
  .cart-promotion__image {
    position: absolute;
    top: 16px;
    left: 16px;
    height: 54px;
    width: 54px;
    transform: scale(1.15);
  }
  .cart-promotion__info {
    position: relative;
  }
  .cart-promotion__prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    max-width: 220px;
  }
  .cart-promotion__prompt .link {
    padding: 4px 8px;
  }
  .cart-table + .cart-promotion {
    margin-bottom: 21px;
    margin-top: 20px;
  }
  .cart-table + .cart-promotion::after {
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    border-bottom: 1px solid #e6e6e6;
    content: "";
    display: block;
    width: 100%;
  }
}
.cart-voucher-form {
  align-items: center;
  display: flex;
}
.cart-voucher-form > .compound-input .label {
  padding-left: 8px;
}
.cart-voucher-form > .compound-input .input:first-child {
  padding-left: 6px !important;
}
.cart-voucher-form > .compound-input {
  flex: 1 1 100%;
}
.cart-voucher-form > .compound-input .input {
  font-family: Consolas, monospace;
}
.cart-voucher-form > .compound-input .button {
  background: transparent;
  border-color: false;
  color: #1e2429;
}
.cart-voucher-form > .compound-input .button:focus-visible {
  box-shadow: rgba(66, 153, 225, 0.5) 0 0 0 4px;
}
.cart-voucher-form > .compound-input .button:not(:disabled):not([aria-disabled]):active, .cart-voucher-form > .compound-input .button:not(:disabled):not([aria-disabled]):hover {
  background-color: transparent;
}
.cart-voucher-form > .compound-input .button {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.cart-voucher-form > .compound-input .button .icon {
  position: absolute;
  top: 25%;
  left: 25%;
  height: 50%;
  width: 50%;
}
.cart-voucher-form > .compound-input .button {
  margin-right: 8px;
}
.cart-voucher-form > .button {
  flex: 0 0 auto;
  margin-left: 8px;
}
.flyup-menu {
  font-size: 18px;
  background-color: #f3f3f3;
  color: #1e2429;
  height: 320px;
  padding: 0 10px 0 10px;
}
.flyup-menu__row {
  background-color: #fff;
  text-align: center;
  margin: 0 -10px 0 -10px;
  min-height: 20px;
  padding: 8px 10px 8px 10px;
  position: relative;
  overflow: hidden;
}
.flyup-menu__row:not(:first-child) {
  border-top: 1px solid #e6e6e6;
}
.flyup-menu__row:has(.flyup-menu__label--ios) {
  align-items: center;
  display: flex;
  min-height: 44px;
}
.flyup-menu__max-quantity button {
  color: #f45574;
}
.flyup-menu__select--ios {
  inset: 0;
  position: absolute;
  z-index: 2;
}
.flyup-menu__ios {
  -webkit-appearance: none;
  height: 100%;
  opacity: 0.01;
  width: 100%;
}
.flyup-menu__android {
  background-color: #ffffff;
  color: #ffffff;
  width: 100%;
  text-align-last: center;
  text-align: center;
}
.flyup-menu__label--android {
  position: absolute;
  top: 8px;
  left: 0px;
  width: 100%;
  pointer-events: none;
}
.flyup-menu__label--ios {
  line-height: 1.2;
  pointer-events: none;
  position: relative;
  width: 100%;
  z-index: 1;
}
.flyup-menu__select--ios {
  inset: 0;
  position: absolute;
  z-index: 2;
}
.flyup-menu__standard {
  width: 100%;
  text-align-last: center;
  text-align: center;
  -webkit-appearance: none;
}
.flyup-menu__label--standard {
  position: absolute;
  top: 8px;
  left: 0px;
  width: 100%;
  pointer-events: none;
}
.flyup-menu__label--standard button {
  color: #1e2429;
}
.flyup-menu__inactive {
  color: #fff;
  background-color: #fff;
  -webkit-appearance: none;
}
.flyup-menu__active {
  color: #000;
}
.flyup-menu__hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
}
.flyup-menu__row button {
  margin: 0;
  padding: 0;
  background: none;
  width: 100%;
}
.flyup-menu .remove {
  color: #ef0c38;
}
.reservation-modal {
  padding: 40px;
  max-width: 780px;
}
.reservation-modal__title {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  color: #020A0A;
  padding-bottom: 24px;
  color: #1E2429;
}
.reservation-modal__text {
  font-size: 24px;
  line-height: 28px;
}
.reservation-modal__premises {
  font-weight: 700;
}
.reservation-modal__block {
  margin-top: 28px;
  background-color: #e1e7ed;
  padding: 28px;
}
.reservation-modal__number {
  color: #000;
  font-size: 28px;
  line-height: 33.6px;
}
.reservation-modal__toob {
  font-weight: 700;
}
.reservation-modal__lookup {
  font-weight: 700;
  font-size: 32px;
  color: #0066cc;
}
.reservation-modal__confirmation {
  padding-top: 20px;
  font-size: 22px;
  color: #000;
  line-height: 26.4px;
}
.reservation-modal__email {
  color: #0066cc;
}
.reservation-modal__button {
  text-align: right;
  padding-top: 16px;
}
.reservation-modal__button button {
  font-size: 18px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 47.99em) {
  .reservation-modal {
    padding: 16px;
  }
  .reservation-modal__title {
    font-size: 28px;
    padding-bottom: 20px;
  }
  .reservation-modal__text {
    font-size: 20px;
  }
  .reservation-modal__block {
    margin-top: 20px;
    padding: 16px;
  }
  .reservation-modal__number {
    font-size: 22px;
    line-height: 26.4px;
  }
  .reservation-modal__lookup {
    display: block;
    font-size: 30px;
    line-height: 36px;
  }
  .reservation-modal__confirmation {
    padding-top: 4px;
    font-size: 20px;
  }
  .reservation-modal__email {
    display: block;
  }
  .reservation-modal__button {
    padding-top: 8px;
  }
  .reservation-modal__button button {
    width: 100%;
  }
}
@media (max-width: 22.99em) {
  .reservation-modal {
    padding: 8px;
  }
  .reservation-modal__block {
    padding: 8px;
  }
  .reservation-modal__title {
    padding-bottom: 12px;
  }
}
.cart-page__payment #paypal-button-container {
  transition: filter 0.1s ease-out, opacity 0.1s ease-out;
}
.cart-page__payment #paypal-button-container.is-loading {
  cursor: default;
  filter: grayscale(50%);
  opacity: 0.5;
  pointer-events: none;
}