.sani-easy-rental-status,
.sani-rental-panel {
  display: block;
}

.sani-rental-panel {
  border: 1px solid #d8ded2;
  border-radius: 8px;
  padding: 18px;
  margin: 18px 0;
  background: #fbfdf8;
  color: #1d2618;
}

.sani-rental-panel__header h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.sani-rental-panel__header p,
.sani-rental-panel__quote p {
  margin: 0 0 14px;
}

.sani-rental-panel__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.sani-rental-panel label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.sani-rental-panel__check {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  grid-column: 1 / -1;
}

.sani-rental-panel input {
  min-height: 42px;
  border: 1px solid #b7c1ad;
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
}

.sani-rental-panel__check input {
  min-height: auto;
}

.sani-rental-panel__result {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 12px;
  border-radius: 6px;
  background: #eef6e7;
}

.sani-rental-panel__total {
  font-size: 1.4rem;
  font-weight: 800;
}

.sani-rental-panel__breakdown {
  display: grid;
  gap: 4px;
  margin: 6px 0;
}

.sani-rental-panel__breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sani-rental-panel__breakdown dt,
.sani-rental-panel__breakdown dd {
  margin: 0;
}

.sani-rental-panel__breakdown dt {
  color: #4b5b43;
}

.sani-rental-panel__breakdown dd {
  font-weight: 800;
}

.sani-rental-panel__message {
  color: #35521d;
}

.sani-rental-panel__cart-message {
  color: #24490f;
  font-weight: 700;
}

.sani-rental-panel__cart-message a {
  color: #24490f;
  text-decoration: underline;
}

.sani-rental-panel__errors {
  color: #8a1f11;
  font-weight: 700;
}

.sani-rental-panel__notes {
  margin: 12px 0;
  padding-left: 20px;
}

.sani-rental-panel__button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  background: #5e7f2c;
  color: #fff;
  font-weight: 800;
}

.sani-rental-panel__button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.sani-rental-panel__quote {
  padding: 12px;
  border-radius: 6px;
  background: #eef6e7;
}

.sani-rental-disabled {
  pointer-events: none;
  opacity: 0.65;
}

.sani-rental-cart-page,
.sani-rental-checkout-page {
  padding: 40px 0 64px;
  background: #f4f7f9;
  color: #12213f;
}

.sani-rental-cart-page *,
.sani-rental-checkout-page * {
  box-sizing: border-box;
}

.sani-rental-cart-page__container,
.sani-rental-checkout-page__container {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin: 0 auto;
}

.sani-rental-flow-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.sani-rental-flow-header__eyebrow,
.sani-rental-cart__summary-label,
.sani-rental-cart__section-head span {
  display: block;
  margin-bottom: 5px;
  color: #315c85;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.sani-rental-flow-header h1 {
  margin: 0 0 8px;
  color: #12213f;
  font-size: 2.5rem;
  line-height: 1.08;
}

.sani-rental-cart-page__lead,
.sani-rental-checkout-page__lead {
  max-width: 650px;
  margin: 0;
  color: #5b6b80;
  font-size: 1.02rem;
  line-height: 1.55;
}

.sani-rental-steps {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sani-rental-steps li {
  position: relative;
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding-right: 42px;
  color: #738196;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.sani-rental-steps li:last-child {
  padding-right: 0;
}

.sani-rental-steps li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: 10px;
  width: 22px;
  height: 2px;
  background: #cdd7e1;
  content: "";
}

.sani-rental-steps li > span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5d0dc;
  border-radius: 50%;
  background: #fff;
  color: #617087;
}

.sani-rental-steps li.is-active {
  color: #173b70;
}

.sani-rental-steps li.is-active > span {
  border-color: #294388;
  background: #294388;
  color: #fff;
}

.sani-rental-steps li.is-complete {
  color: #167253;
}

.sani-rental-steps li.is-complete > span {
  border-color: #188a63;
  background: #e9f7f1;
  color: #167253;
}

.sani-rental-cart-page .woocommerce,
.sani-rental-checkout-page .woocommerce {
  overflow: visible;
}

.sani-rental-cart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 24px;
}

.sani-rental-cart > .woocommerce-notices-wrapper,
.sani-rental-cart > .woocommerce-error,
.sani-rental-cart > .woocommerce-message,
.sani-rental-cart > .woocommerce-info {
  grid-column: 1 / -1;
}

.sani-rental-cart__form,
.sani-rental-cart__collaterals {
  overflow: hidden;
  border: 1px solid #d5dee7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 48, 78, 0.06);
}

.sani-rental-cart__section-head {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-top: 4px solid #294388;
  border-bottom: 1px solid #dbe3ea;
}

.sani-rental-cart__section-head h2,
.sani-rental-cart__collaterals h2 {
  margin: 0;
  color: #12213f;
  font-size: 1.35rem;
  line-height: 1.25;
}

.sani-rental-cart__section-head > strong {
  color: #64758b;
  font-size: 0.9rem;
  white-space: nowrap;
}

.sani-rental-cart__table,
.sani-rental-cart__collaterals .shop_table {
  width: 100%;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
  background: transparent;
}

.sani-rental-cart__table thead th {
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid #dbe3ea;
  background: #eef3f7;
  color: #4e6076;
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.sani-rental-cart__table thead th:first-child,
.sani-rental-cart__table tbody td:first-child {
  padding-left: 22px;
}

.sani-rental-cart__table thead th:last-child,
.sani-rental-cart__table tbody td:last-child {
  padding-right: 22px;
  text-align: right;
}

.sani-rental-cart__table tbody td {
  padding: 20px 16px;
  border: 0;
  border-bottom: 1px solid #e0e6ec;
  color: #24354c;
  font-size: 0.92rem;
  vertical-align: top;
}

.sani-rental-cart__table tbody tr:last-child td {
  border-bottom: 0;
}

.sani-rental-cart__table .product-name {
  width: 58%;
}

.sani-rental-cart__table .product-price,
.sani-rental-cart__table .product-quantity,
.sani-rental-cart__table .product-subtotal {
  width: 14%;
  font-weight: 800;
  white-space: nowrap;
}

.sani-rental-cart__product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.sani-rental-cart__product figure {
  width: 88px;
  height: 88px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce5e9;
  border-radius: 6px;
  background: #eef6f4;
}

.sani-rental-cart__product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sani-rental-cart__product-name {
  display: block;
  color: #12213f;
  font-size: 1.03rem;
  line-height: 1.35;
}

.sani-rental-cart__meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 3px 9px;
  margin: 9px 0 0;
  color: #617087;
  font-size: 0.8rem;
  line-height: 1.45;
}

.sani-rental-cart__meta dt,
.sani-rental-cart__meta dd {
  margin: 0;
}

.sani-rental-cart__meta dt {
  color: #42536a;
  font-weight: 800;
}

.sani-rental-cart__collaterals {
  position: sticky;
  top: 24px;
  border-top: 4px solid #d0a10b;
}

.sani-rental-cart__collaterals .cart_totals {
  width: 100% !important;
  padding: 22px;
}

.sani-rental-cart__collaterals .shop_table {
  margin-top: 17px !important;
}

.sani-rental-cart__collaterals .shop_table th,
.sani-rental-cart__collaterals .shop_table td {
  padding: 15px 0;
  border: 0;
  border-top: 1px solid #dbe3ea;
  color: #12213f;
}

.sani-rental-cart__collaterals .shop_table td {
  text-align: right;
}

.sani-rental-cart__collaterals .order-total strong {
  font-size: 1.25rem;
}

.sani-rental-cart__next {
  display: grid;
  gap: 9px;
  margin: 2px 0 20px;
  padding: 0;
  color: #56677d;
  font-size: 0.84rem;
  line-height: 1.45;
  list-style: none;
}

.sani-rental-cart__next li {
  position: relative;
  padding-left: 22px;
}

.sani-rental-cart__next li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: #188a63;
  content: "\2713";
  font-weight: 900;
}

.sani-rental-cart__collaterals .wc-proceed-to-checkout {
  padding: 0 !important;
}

.sani-rental-cart__collaterals .checkout-button,
.sani-rental-checkout-page #place_order {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 12px 18px !important;
  border: 1px solid #294388 !important;
  border-radius: 6px !important;
  background: #294388 !important;
  box-shadow: 0 7px 16px rgba(41, 67, 136, 0.18);
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;
  text-align: center;
  text-decoration: none !important;
}

.sani-rental-cart__collaterals .checkout-button:hover,
.sani-rental-cart__collaterals .checkout-button:focus,
.sani-rental-checkout-page #place_order:hover,
.sani-rental-checkout-page #place_order:focus {
  border-color: #173b70 !important;
  background: #173b70 !important;
  color: #fff !important;
}

.sani-rental-cart__continue {
  display: block;
  margin-top: 13px;
  padding: 7px;
  color: #294388;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.sani-rental-cart__continue:hover,
.sani-rental-cart__continue:focus {
  color: #173b70;
  text-decoration: underline;
}

.sani-rental-cart__blocked {
  margin: 12px 0 0;
  padding: 11px 12px;
  border-radius: 6px;
  background: #fff3cd;
  color: #5f4100;
  font-weight: 700;
}

.sani-rental-cart-page .woocommerce-notices-wrapper,
.sani-rental-checkout-page .woocommerce-notices-wrapper,
.sani-rental-cart-page .woocommerce-error,
.sani-rental-cart-page .woocommerce-message,
.sani-rental-cart-page .woocommerce-info,
.sani-rental-checkout-page .woocommerce-error,
.sani-rental-checkout-page .woocommerce-message,
.sani-rental-checkout-page .woocommerce-info {
  margin: 0 0 18px !important;
}

.sani-rental-cart-page .woocommerce-error,
.sani-rental-cart-page .woocommerce-message,
.sani-rental-cart-page .woocommerce-info,
.sani-rental-checkout-page .woocommerce-error,
.sani-rental-checkout-page .woocommerce-message,
.sani-rental-checkout-page .woocommerce-info {
  padding: 15px 18px 15px 48px !important;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: #24354c;
  line-height: 1.5;
}

.sani-rental-checkout-page .woocommerce-form-coupon-toggle,
.sani-rental-checkout-page form.checkout_coupon {
  display: none !important;
}

.sani-rental-checkout-page form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: start;
  gap: 0 24px;
}

.sani-rental-checkout-page #customer_details {
  grid-row: 1 / span 2;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d5dee7;
  border-top: 4px solid #294388;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 48, 78, 0.06);
}

.sani-rental-checkout-page #customer_details::before {
  display: block;
  padding: 17px 22px 5px;
  color: #315c85;
  content: "Uw gegevens";
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.sani-rental-checkout-page #customer_details .col-1,
.sani-rental-checkout-page #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
  padding: 0 22px 22px;
}

.sani-rental-checkout-page #customer_details .col-2 {
  padding-top: 4px;
  border-top: 1px solid #e0e6ec;
}

.sani-rental-checkout-page #customer_details h3,
.sani-rental-checkout-page #order_review_heading,
.sani-rental-checkout-fields > h3 {
  margin: 0 0 18px;
  color: #12213f;
  font-size: 1.28rem;
  line-height: 1.3;
}

.sani-rental-checkout-page #order_review_heading {
  grid-column: 2;
  margin: 0 !important;
  padding: 22px 22px 14px;
  border: 1px solid #d5dee7;
  border-top: 4px solid #d0a10b;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 48, 78, 0.06);
}

.sani-rental-checkout-page #order_review_heading::before {
  display: block;
  margin-bottom: 5px;
  color: #315c85;
  content: "Besteloverzicht";
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.sani-rental-checkout-page #order_review {
  grid-column: 2;
  min-width: 0;
  padding: 0 22px 22px;
  border: 1px solid #d5dee7;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 48, 78, 0.06);
}

.sani-rental-checkout-page .form-row {
  margin: 0 0 16px !important;
  padding: 0 !important;
}

.sani-rental-checkout-page .form-row label {
  display: block;
  margin: 0 0 6px;
  color: #31445c;
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.35;
}

.sani-rental-checkout-page .form-row .required {
  color: #b53636;
}

.sani-rental-checkout-page .input-text,
.sani-rental-checkout-page input[type="text"],
.sani-rental-checkout-page input[type="email"],
.sani-rental-checkout-page input[type="tel"],
.sani-rental-checkout-page input[type="date"],
.sani-rental-checkout-page input[type="number"],
.sani-rental-checkout-page select,
.sani-rental-checkout-page textarea,
.sani-rental-checkout-page .select2-selection {
  width: 100%;
  min-height: 48px;
  border: 1px solid #aebcca !important;
  border-radius: 5px !important;
  background: #fff;
  color: #12213f;
  font: inherit;
}

.sani-rental-checkout-page .input-text,
.sani-rental-checkout-page input[type="text"],
.sani-rental-checkout-page input[type="email"],
.sani-rental-checkout-page input[type="tel"],
.sani-rental-checkout-page input[type="date"],
.sani-rental-checkout-page input[type="number"],
.sani-rental-checkout-page select,
.sani-rental-checkout-page textarea {
  padding: 11px 12px;
}

.sani-rental-checkout-page textarea {
  min-height: 96px;
  resize: vertical;
}

.sani-rental-checkout-page .input-text:focus,
.sani-rental-checkout-page input:focus,
.sani-rental-checkout-page select:focus,
.sani-rental-checkout-page textarea:focus,
.sani-rental-checkout-page .select2-container--open .select2-selection {
  border-color: #294388 !important;
  box-shadow: 0 0 0 3px rgba(41, 67, 136, 0.12);
  outline: 0;
}

.sani-rental-checkout-page .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 34px 9px 12px;
  color: #12213f;
  line-height: 28px;
}

.sani-rental-checkout-page .select2-container .select2-selection--single .select2-selection__arrow {
  top: 11px;
  right: 7px;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table {
  width: 100%;
  margin: 0 0 18px !important;
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table th,
.sani-rental-checkout-page .woocommerce-checkout-review-order-table td {
  padding: 12px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #dfe6ed !important;
  color: #31445c;
  font-size: 0.88rem;
  line-height: 1.4;
  vertical-align: top;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table th:last-child,
.sani-rental-checkout-page .woocommerce-checkout-review-order-table td:last-child {
  padding-left: 14px !important;
  text-align: right;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table thead th {
  color: #5a6c82;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table .product-name {
  color: #12213f;
  font-weight: 750;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table .order-total th,
.sani-rental-checkout-page .woocommerce-checkout-review-order-table .order-total td {
  padding-top: 16px !important;
  border-bottom: 0 !important;
  color: #12213f;
  font-size: 1rem;
}

.sani-rental-checkout-page .woocommerce-checkout-review-order-table .order-total strong {
  font-size: 1.18rem;
}

.sani-rental-checkout-page #payment {
  border-radius: 6px !important;
  background: #eef3f7 !important;
}

.sani-rental-checkout-page #payment ul.payment_methods {
  margin: 0 !important;
  padding: 5px 16px !important;
  border-bottom: 1px solid #d4dee7 !important;
}

.sani-rental-checkout-page #payment ul.payment_methods li {
  margin: 0 !important;
  padding: 13px 0;
  border-bottom: 1px solid #d4dee7;
}

.sani-rental-checkout-page #payment ul.payment_methods li:last-child {
  border-bottom: 0;
}

.sani-rental-checkout-page #payment ul.payment_methods input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 2px 8px 0 0;
  accent-color: #294388;
  vertical-align: top;
}

.sani-rental-checkout-page #payment ul.payment_methods label {
  color: #12213f;
  font-weight: 800;
}

.sani-rental-checkout-page #payment .payment_box {
  margin: 10px 0 0 !important;
  padding: 12px !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #4e6076 !important;
  font-size: 0.82rem;
  line-height: 1.5;
}

.sani-rental-checkout-page #payment .payment_box::before {
  display: none !important;
}

.sani-rental-checkout-page .payment_method_sani_easy_cash .payment_box {
  border-left: 3px solid #cba01c;
}

.sani-easy-cash-captcha {
  position: relative;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #ccd8e3;
  border-radius: 6px;
  background: #f7fafc;
}

.sani-easy-cash-captcha > strong {
  display: block;
  margin-bottom: 4px;
  color: #14213d;
  font-size: 0.92rem;
}

.sani-easy-cash-captcha > p {
  margin: 0 0 12px !important;
  color: #5a6c82;
  font-size: 0.8rem;
}

.sani-easy-cash-captcha label {
  display: block;
  margin-bottom: 6px;
  color: #14213d;
  font-weight: 800;
}

.sani-easy-cash-captcha input[name="sani_easy_cash_captcha_answer"] {
  width: 112px;
  min-height: 44px;
  margin: 0;
  border: 1px solid #9fb0c2;
  border-radius: 5px;
  background: #fff;
  color: #14213d;
  font-size: 1rem;
  font-weight: 750;
  text-align: center;
}

.sani-easy-cash-captcha input[name="sani_easy_cash_captcha_answer"]:focus {
  outline: 3px solid rgba(41, 67, 136, 0.16);
  border-color: #294388;
}

.sani-easy-cash-captcha__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.sani-easy-cash-captcha__error {
  color: #9c2f2f !important;
  font-weight: 700;
}

.sani-rental-checkout-page #payment .place-order {
  margin: 0 !important;
  padding: 18px 16px 16px !important;
}

.sani-rental-checkout-page #payment .woocommerce-privacy-policy-text,
.sani-rental-checkout-page #payment .woocommerce-terms-and-conditions-wrapper {
  color: #5a6c82;
  font-size: 0.78rem;
  line-height: 1.5;
}

.sani-rental-checkout-page #payment .woocommerce-terms-and-conditions-wrapper a {
  color: #294388;
  font-weight: 750;
}

.sani-rental-checkout-photo {
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid #cbd6e2;
  border-left: 4px solid #d0a10b;
  border-radius: 6px;
  background: #fff;
  color: #12213f;
}

.sani-rental-checkout-photo__heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.sani-rental-checkout-photo__heading h3 {
  margin: 0 0 3px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.sani-rental-checkout-photo__heading h3 small {
  color: #617087;
  font-size: 0.86em;
  font-weight: 600;
}

.sani-rental-checkout-photo__heading p {
  margin: 0;
  color: #526178;
  font-size: 0.93rem;
  line-height: 1.45;
}

.sani-rental-checkout-photo__icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #c7d3e0;
  border-radius: 5px;
  background: #eef4fa;
  color: #1f4d83;
}

.sani-rental-checkout-photo__icon svg,
.sani-rental-checkout-photo__choose svg,
.sani-rental-checkout-photo__preview button svg {
  width: 20px;
  height: 20px;
}

.sani-rental-checkout-photo__input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.sani-rental-checkout-photo__choose {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 10px 0 0;
  padding: 9px 15px;
  border: 1px solid #244b82;
  border-radius: 5px;
  background: #fff;
  color: #173b70;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 750;
  vertical-align: middle;
}

.sani-rental-checkout-photo__choose:hover,
.sani-rental-checkout-photo__input:focus + .sani-rental-checkout-photo__choose {
  background: #edf4fb;
  box-shadow: 0 0 0 3px rgba(37, 101, 174, 0.14);
}

.sani-rental-checkout-photo__choose.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.sani-rental-checkout-photo__hint {
  display: inline-block;
  color: #617087;
  font-size: 0.82rem;
  line-height: 1.35;
  vertical-align: middle;
}

.sani-rental-checkout-photo__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.sani-rental-checkout-photo__previews:empty {
  display: none;
}

.sani-rental-checkout-photo__preview {
  position: relative;
  width: 92px;
  height: 76px;
  margin: 0;
  overflow: visible;
  border: 1px solid #c8d2dd;
  border-radius: 5px;
  background: #edf2f7;
}

.sani-rental-checkout-photo__preview img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.sani-rental-checkout-photo__preview button {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #a12b2b;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(18, 33, 63, 0.22);
}

.sani-rental-checkout-photo__preview button svg {
  width: 15px;
  height: 15px;
}

.sani-rental-checkout-photo__status {
  min-height: 1.25em;
  margin: 9px 0 0;
  color: #28613a;
  font-size: 0.84rem;
  font-weight: 700;
}

.sani-rental-checkout-photo__status.is-error {
  color: #9b2929;
}

.sani-rental-checkout-photo__status:empty {
  display: none;
}

#place_order.is-uploading-photos {
  cursor: wait;
  opacity: 0.58;
}

.sani-order-confirmation {
  min-height: 70vh;
  padding: 56px 0 72px;
  background: #f4f7f9;
  color: #12213f;
}

.sani-order-confirmation__container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.sani-order-confirmation__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.sani-order-confirmation__header h1,
.sani-order-confirmation__header p,
.sani-order-confirmation__section-head h2,
.sani-order-confirmation__section-head p,
.sani-order-confirmation__item h3,
.sani-order-confirmation__item p,
.sani-order-confirmation__details h2,
.sani-order-confirmation__details p,
.sani-order-confirmation__footer p {
  margin: 0;
}

.sani-order-confirmation__header h1 {
  max-width: 820px;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.sani-order-confirmation__header > div > p:last-child {
  max-width: 760px;
  color: #526178;
  font-size: 1.05rem;
  line-height: 1.55;
}

.sani-order-confirmation__eyebrow {
  margin-bottom: 5px !important;
  color: #147348;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sani-order-confirmation__check {
  display: grid;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #178b58;
  color: #fff;
  box-shadow: 0 8px 22px rgba(23, 139, 88, 0.22);
}

.sani-order-confirmation__check svg {
  width: 30px;
  height: 30px;
}

.sani-order-confirmation__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid #ccd7e2;
  border-top: 4px solid #d0a10b;
  border-radius: 6px;
  background: #fff;
}

.sani-order-confirmation__facts > div {
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid #dde4eb;
}

.sani-order-confirmation__facts > div:last-child {
  border-right: 0;
}

.sani-order-confirmation__facts dt,
.sani-order-confirmation__facts dd,
.sani-order-confirmation__totals dt,
.sani-order-confirmation__totals dd,
.sani-order-confirmation__details dt,
.sani-order-confirmation__details dd {
  margin: 0;
}

.sani-order-confirmation__facts dt {
  margin-bottom: 4px;
  color: #617087;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.sani-order-confirmation__facts dd {
  overflow-wrap: anywhere;
  font-size: 1.08rem;
  font-weight: 850;
}

.sani-order-confirmation__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.sani-order-confirmation__order,
.sani-order-confirmation__details,
.sani-order-confirmation__missing {
  border: 1px solid #ccd7e2;
  border-radius: 6px;
  background: #fff;
}

.sani-order-confirmation__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #dce4eb;
}

.sani-order-confirmation__section-head p {
  margin-bottom: 2px;
  color: #617087;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sani-order-confirmation__section-head h2,
.sani-order-confirmation__details h2 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.sani-order-confirmation__section-head > span {
  color: #617087;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.sani-order-confirmation__item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #e0e6ec;
}

.sani-order-confirmation__image {
  width: 82px;
  height: 82px;
  overflow: hidden;
  border: 1px solid #d7e0e8;
  border-radius: 5px;
  background: #f0f5f6;
}

.sani-order-confirmation__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sani-order-confirmation__item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.35;
}

.sani-order-confirmation__item p {
  color: #617087;
  font-size: 0.9rem;
}

.sani-order-confirmation__item > strong {
  white-space: nowrap;
}

.sani-order-confirmation__totals {
  margin: 0;
  padding: 16px 24px 20px;
}

.sani-order-confirmation__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
}

.sani-order-confirmation__totals > div:last-child {
  margin-top: 7px;
  padding-top: 12px;
  border-top: 1px solid #ccd7e2;
  font-size: 1.12rem;
  font-weight: 850;
}

.sani-order-confirmation__details {
  overflow: hidden;
  background: #eef3f8;
}

.sani-order-confirmation__details section {
  padding: 21px 22px;
  border-bottom: 1px solid #cbd6e1;
}

.sani-order-confirmation__details section:last-child {
  border-bottom: 0;
}

.sani-order-confirmation__details h2 {
  margin-bottom: 13px;
}

.sani-order-confirmation__details dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.sani-order-confirmation__details dl > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.sani-order-confirmation__details dt {
  color: #617087;
}

.sani-order-confirmation__details dd {
  text-align: right;
  font-weight: 800;
}

.sani-order-confirmation__details p {
  color: #42516a;
  line-height: 1.55;
}

.sani-order-confirmation__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #ccd7e2;
}

.sani-order-confirmation__footer > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sani-order-confirmation__footer p {
  color: #526178;
}

.sani-order-confirmation__button,
.sani-order-confirmation__link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
}

.sani-order-confirmation__button {
  border: 1px solid #173b70;
  background: #173b70;
  color: #fff;
}

.sani-order-confirmation__button:hover {
  background: #0e2b55;
  color: #fff;
}

.sani-order-confirmation__link {
  color: #173b70;
}

.sani-order-confirmation__missing {
  max-width: 700px;
  padding: 32px;
}

.sani-order-confirmation__missing h1 {
  margin: 0 0 10px;
}

.sani-order-confirmation__missing p {
  margin: 0 0 22px;
  color: #526178;
}

@media (max-width: 720px) {
  .sani-rental-panel__fields {
    grid-template-columns: 1fr;
  }

  .sani-rental-checkout-photo {
    padding: 15px;
  }

  .sani-rental-checkout-photo__choose {
    display: flex;
    width: 100%;
    margin: 0 0 9px;
  }

  .sani-rental-checkout-photo__hint {
    display: block;
  }

  .sani-order-confirmation {
    padding: 34px 0 48px;
  }

  .sani-order-confirmation__container {
    width: min(100% - 24px, 1160px);
  }

  .sani-order-confirmation__header {
    gap: 13px;
  }

  .sani-order-confirmation__check {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .sani-order-confirmation__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sani-order-confirmation__facts > div {
    padding: 14px;
    border-bottom: 1px solid #dde4eb;
  }

  .sani-order-confirmation__facts > div:nth-child(2) {
    border-right: 0;
  }

  .sani-order-confirmation__facts > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .sani-order-confirmation__layout {
    grid-template-columns: 1fr;
  }

  .sani-order-confirmation__section-head,
  .sani-order-confirmation__item,
  .sani-order-confirmation__totals {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sani-order-confirmation__item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
  }

  .sani-order-confirmation__image {
    width: 68px;
    height: 68px;
  }

  .sani-order-confirmation__item > strong {
    grid-column: 2;
  }

  .sani-order-confirmation__footer,
  .sani-order-confirmation__footer > div {
    align-items: stretch;
    flex-direction: column;
  }

  .sani-order-confirmation__button,
  .sani-order-confirmation__link {
    width: 100%;
  }
}

@media (max-width: 940px) {
  .sani-rental-flow-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .sani-rental-cart,
  .sani-rental-checkout-page form.checkout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sani-rental-cart__collaterals {
    position: static;
  }

  .sani-rental-checkout-page #customer_details,
  .sani-rental-checkout-page #order_review_heading,
  .sani-rental-checkout-page #order_review {
    grid-column: 1;
  }

  .sani-rental-checkout-page #customer_details {
    grid-row: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 700px) {
  .sani-rental-cart-page,
  .sani-rental-checkout-page {
    padding: 28px 0 46px;
  }

  .sani-rental-cart-page__container,
  .sani-rental-checkout-page__container {
    width: min(100% - 28px, 1180px);
  }

  .sani-rental-flow-header {
    margin-bottom: 22px;
  }

  .sani-rental-flow-header h1 {
    font-size: 2rem;
  }

  .sani-rental-steps {
    width: 100%;
  }

  .sani-rental-steps li {
    min-width: 0;
    flex: 1 1 50%;
    align-items: flex-start;
    padding-right: 28px;
    white-space: normal;
  }

  .sani-rental-steps li:not(:last-child)::after {
    right: 4px;
    width: 18px;
  }

  .sani-rental-cart__section-head {
    min-height: 76px;
    padding: 15px 16px;
  }

  .sani-rental-cart__table,
  .sani-rental-cart__table thead,
  .sani-rental-cart__table tbody,
  .sani-rental-cart__table tr,
  .sani-rental-cart__table td {
    display: block;
    width: 100% !important;
  }

  .sani-rental-cart__table thead {
    display: none;
  }

  .sani-rental-cart__table tbody tr {
    padding: 17px 16px;
    border-bottom: 1px solid #dbe3ea;
  }

  .sani-rental-cart__table tbody tr:last-child {
    border-bottom: 0;
  }

  .sani-rental-cart__table tbody td,
  .sani-rental-cart__table tbody td:first-child,
  .sani-rental-cart__table tbody td:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 5px 0;
    border: 0;
    text-align: right;
  }

  .sani-rental-cart__table tbody td::before {
    float: none !important;
    color: #5a6c82;
    content: attr(data-title);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .sani-rental-cart__table tbody td.product-name {
    display: block;
    padding-bottom: 13px;
    text-align: left;
  }

  .sani-rental-cart__table tbody td.product-name::before {
    display: none;
  }

  .sani-rental-cart__product {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
  }

  .sani-rental-cart__product figure {
    width: 78px;
    height: 78px;
  }

  .sani-rental-cart__meta {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .sani-rental-cart__meta dd {
    margin-bottom: 4px;
  }

  .sani-rental-cart__collaterals .cart_totals,
  .sani-rental-checkout-page #customer_details .col-1,
  .sani-rental-checkout-page #customer_details .col-2,
  .sani-rental-checkout-page #order_review {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sani-rental-checkout-page #customer_details::before,
  .sani-rental-checkout-page #order_review_heading {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sani-rental-checkout-page .form-row-first,
  .sani-rental-checkout-page .form-row-last {
    float: none !important;
    width: 100% !important;
  }

  .sani-rental-checkout-page #payment ul.payment_methods {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .sani-rental-checkout-page #payment .place-order {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
