@charset "UTF-8";
/**
 * Frontend Styles for Džungla Točke Zvestobe
 */
.dz-tz-my-points {
  max-width: 100%;
}

.dz-tz-balance-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.dz-tz-balance-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 14px 18px;
  flex: 1;
  min-width: 200px;
  transition: box-shadow 0.2s;
}
.dz-tz-balance-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}
.dz-tz-balance-card .dz-tz-balance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #f8f9fa;
}
.dz-tz-balance-card .dz-tz-balance-icon svg {
  width: 22px;
  height: 22px;
  color: #6c757d;
}
.dz-tz-balance-card .dz-tz-balance-content {
  flex: 1;
  min-width: 0;
}
.dz-tz-balance-card .dz-tz-balance-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
}
.dz-tz-balance-card .dz-tz-balance-label {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}
.dz-tz-balance-card .dz-tz-balance-eur {
  display: inline-block;
  font-size: 12px;
  color: #28a745;
  font-weight: 600;
  background: rgb(195.7028985507, 240.7971014493, 206);
  padding: 3px 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.dz-tz-balance-card .dz-tz-balance-info,
.dz-tz-balance-card .dz-tz-balance-warning {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}
.dz-tz-balance-card .dz-tz-balance-info {
  background: rgb(203.679245283, 233.8679245283, 180.1320754717);
  color: #2d5016;
}
.dz-tz-balance-card .dz-tz-balance-warning {
  background: rgb(255, 231.25, 160);
  color: rgb(109, 81.75, 0);
}
.dz-tz-balance-card.dz-tz-balance-active {
  border-color: #4a7c23;
  border-width: 2px;
}
.dz-tz-balance-card.dz-tz-balance-active .dz-tz-balance-icon {
  background: rgb(190.0471698113, 228.2547169811, 160.2452830189);
}
.dz-tz-balance-card.dz-tz-balance-active .dz-tz-balance-icon svg {
  color: #4a7c23;
}
.dz-tz-balance-card.dz-tz-balance-active .dz-tz-balance-value {
  color: #4a7c23;
}
.dz-tz-balance-card.dz-tz-balance-pending {
  background: #f8f9fa;
}
.dz-tz-balance-card.dz-tz-balance-pending .dz-tz-balance-icon {
  background: #fff;
}
.dz-tz-balance-card.dz-tz-balance-pending .dz-tz-balance-value {
  color: #6c757d;
}
.dz-tz-balance-card.dz-tz-balance-expiring {
  border-color: #ffc107;
  border-width: 2px;
  background: rgb(255, 246.55, 221.2);
}
.dz-tz-balance-card.dz-tz-balance-expiring .dz-tz-balance-icon {
  background: rgb(255, 237.625, 185.5);
}
.dz-tz-balance-card.dz-tz-balance-expiring .dz-tz-balance-icon svg {
  color: rgb(185.5, 139.125, 0);
}
.dz-tz-balance-card.dz-tz-balance-expiring .dz-tz-balance-value {
  color: rgb(185.5, 139.125, 0);
}

.dz-tz-expiring-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
  padding: 16px 20px;
  background: rgb(255, 241.45, 200.8);
  border-left: 4px solid #ffc107;
}
.dz-tz-expiring-notice svg {
  flex-shrink: 0;
  color: #a07800;
  margin-top: 2px;
}
.dz-tz-expiring-notice div {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: rgb(83.5, 62.625, 0);
}
.dz-tz-expiring-notice div strong {
  display: block;
  margin-bottom: 4px;
}

.dz-tz-qr-section {
  background: linear-gradient(135deg, #4a7c23 0%, #2d5016 100%);
  color: #fff;
  padding: 32px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dz-tz-qr-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.dz-tz-qr-section h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  position: relative;
}
.dz-tz-qr-section > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 14px;
  position: relative;
}

.dz-tz-qr-container {
  background: #fff;
  display: inline-block;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}
.dz-tz-qr-container #dz-tz-qr-code {
  width: 180px;
  height: 180px;
}

.dz-tz-qr-actions {
  margin: 0;
  position: relative;
}
.dz-tz-qr-actions .button, .dz-tz-qr-actions a.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.2s;
}
.dz-tz-qr-actions .button svg, .dz-tz-qr-actions a.button svg {
  flex-shrink: 0;
}
.dz-tz-qr-actions .button:hover, .dz-tz-qr-actions a.button:hover {
  text-decoration: none;
  background: #fff !important;
  color: #2d5016 !important;
  border-color: #fff !important;
}

.dz-tz-lots-section {
  margin-bottom: 30px;
}
.dz-tz-lots-section h3 {
  color: #2d5016;
  margin-bottom: 15px;
}

.dz-tz-lots-table .dz-tz-expiring-row {
  background: rgb(255, 241.45, 200.8) !important;
}
.dz-tz-lots-table .dz-tz-badge-warning {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  background: #ffc107;
  color: #000;
  margin-left: 5px;
}

.dz-tz-transactions-section {
  margin-bottom: 30px;
}
.dz-tz-transactions-section h3 {
  color: #2d5016;
  margin-bottom: 15px;
}

.dz-tz-transactions-table .dz-tz-tx-type {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  margin-right: 8px;
  font-weight: 600;
}
.dz-tz-transactions-table .dz-tz-tx-type.dz-tz-tx-earn {
  background: rgb(154.5579710145, 230.9420289855, 172);
  color: rgb(25.2173913043, 105.2826086957, 43.5);
}
.dz-tz-transactions-table .dz-tz-tx-type.dz-tz-tx-spend {
  background: rgb(190.0471698113, 228.2547169811, 160.2452830189);
  color: #2d5016;
}
.dz-tz-transactions-table .dz-tz-tx-type.dz-tz-tx-expire {
  background: #f8f9fa;
  color: #6c757d;
}
.dz-tz-transactions-table .dz-tz-tx-type.dz-tz-tx-reversal {
  background: rgb(255, 231.25, 160);
  color: rgb(109, 81.75, 0);
}

.dz-tz-positive {
  color: #28a745 !important;
  font-weight: 600;
}

.dz-tz-negative {
  color: #dc3545 !important;
  font-weight: 600;
}

.dz-tz-status {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dz-tz-status.dz-tz-status-pending {
  background: rgb(255, 237.625, 185.5);
  color: rgb(134.5, 100.875, 0);
}
.dz-tz-status.dz-tz-status-active {
  background: rgb(175.1304347826, 235.8695652174, 189);
  color: rgb(25.2173913043, 105.2826086957, 43.5);
}
.dz-tz-status.dz-tz-status-expired {
  background: #f8f9fa;
  color: #6c757d;
}
.dz-tz-status.dz-tz-status-spent {
  background: rgb(190.0471698113, 228.2547169811, 160.2452830189);
  color: #2d5016;
}
.dz-tz-status.dz-tz-status-reversed {
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266);
}
.dz-tz-status.dz-tz-status-adjusted {
  background: rgb(202.1566523605, 205.9613733906, 209.3433476395);
  color: rgb(60.7210300429, 65.7811158798, 70.2789699571);
}

.dz-tz-how-to-earn {
  background: #f8f9fa;
  padding: 28px;
  margin-bottom: 28px;
}
.dz-tz-how-to-earn h3 {
  color: #2d5016;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.dz-tz-earn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.dz-tz-earn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
}
.dz-tz-earn-item .dz-tz-earn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgb(198.2264150943, 231.6226415094, 172.1773584906);
}
.dz-tz-earn-item .dz-tz-earn-icon svg {
  color: #4a7c23;
}
.dz-tz-earn-item .dz-tz-earn-content {
  flex: 1;
  min-width: 0;
}
.dz-tz-earn-item .dz-tz-earn-content strong {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 4px;
}
.dz-tz-earn-item .dz-tz-earn-content span {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.5;
}

.dz-tz-rules-link {
  margin-top: 20px;
  margin-bottom: 0;
}
.dz-tz-rules-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a7c23;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.dz-tz-rules-link a:hover {
  text-decoration: underline;
}
.dz-tz-rules-link a svg {
  transition: transform 0.2s;
}
.dz-tz-rules-link a:hover svg {
  transform: translateX(3px);
}

.dz-tz-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dz-tz-accordion {
  background: #fff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.dz-tz-accordion:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.dz-tz-accordion.is-open .dz-tz-accordion-icon {
  transform: rotate(180deg);
}
.dz-tz-accordion.is-open .dz-tz-accordion-content {
  display: block;
}

.dz-tz-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s;
}
.dz-tz-accordion-header:hover {
  background: #f8f9fa;
}
.dz-tz-accordion-header:focus {
  outline: none;
  background: #f8f9fa;
}

.dz-tz-accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.dz-tz-accordion-title svg {
  color: #4a7c23;
  flex-shrink: 0;
}

.dz-tz-accordion-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4a7c23;
  background: rgb(198.2264150943, 231.6226415094, 172.1773584906);
}

.dz-tz-accordion-icon {
  color: #6c757d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dz-tz-accordion-content {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid #e0e0e0;
}
.dz-tz-accordion-content .shop_table {
  margin-top: 16px;
  margin-bottom: 0;
}

.dz-tz-no-transactions {
  padding: 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
}

.dz-tz-no-account {
  text-align: center;
  padding: 40px;
}
.dz-tz-no-account .dz-tz-how-to-earn {
  max-width: 500px;
  margin: 30px auto 0;
  text-align: left;
}

.dz-tz-checkout-earning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: rgb(203.679245283, 233.8679245283, 180.1320754717);
  border-left: 3px solid #4a7c23;
  font-size: 13px;
  color: #2d5016;
  line-height: 1.4;
}
.dz-tz-checkout-earning > svg {
  flex-shrink: 0;
  color: #4a7c23;
}
.dz-tz-checkout-earning strong {
  color: #4a7c23;
}
.dz-tz-checkout-earning .dz-tz-earning-rules-link {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  color: #4a7c23;
  text-decoration: underline;
  white-space: nowrap;
}

.dz-tz-points-redemption {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dz-tz-redeem-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dz-tz-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.dz-tz-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.dz-tz-toggle-switch input:checked + .dz-tz-toggle-slider {
  background: #4a7c23;
}
.dz-tz-toggle-switch input:checked + .dz-tz-toggle-slider:before {
  transform: translateX(20px);
}
.dz-tz-toggle-switch input:focus + .dz-tz-toggle-slider {
  box-shadow: 0 0 0 2px rgba(74, 124, 35, 0.2);
}
.dz-tz-toggle-switch .dz-tz-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.2s;
}
.dz-tz-toggle-switch .dz-tz-toggle-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dz-tz-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.dz-tz-toggle-label .dz-tz-toggle-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
.dz-tz-toggle-label .dz-tz-toggle-balance {
  font-size: 12px;
  color: #4a7c23;
  font-weight: 500;
}

.dz-tz-points-controls {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.dz-tz-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dz-tz-slider-row input[type=range] {
  flex: 1;
  height: 18px;
  background: transparent;
  outline: none;
  border-color: transparent !important;
  -webkit-appearance: none;
  cursor: pointer;
  margin: 0;
}
.dz-tz-slider-row input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  cursor: pointer;
}
.dz-tz-slider-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4a7c23;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  margin-top: -6px;
  transition: transform 0.1s;
}
.dz-tz-slider-row input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.dz-tz-slider-row input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  background: #e0e0e0;
  cursor: pointer;
}
.dz-tz-slider-row input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4a7c23;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.dz-tz-points-input-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dz-tz-points-input-wrap input[type=number] {
  width: 55px;
  padding: 6px 4px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}
.dz-tz-points-input-wrap input[type=number]:focus {
  border-color: #4a7c23;
  outline: none;
}
.dz-tz-points-input-wrap input[type=number] {
  -moz-appearance: textfield;
}
.dz-tz-points-input-wrap input[type=number]::-webkit-outer-spin-button, .dz-tz-points-input-wrap input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dz-tz-points-input-wrap .dz-tz-points-max {
  font-size: 12px;
  color: #6c757d;
  white-space: nowrap;
}

.dz-tz-discount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  background: rgb(203.679245283, 233.8679245283, 180.1320754717);
  border-left: 3px solid #4a7c23;
}
.dz-tz-discount-row .dz-tz-discount-label {
  font-size: 12px;
  color: #2d5016;
}
.dz-tz-discount-row .dz-tz-discount-value {
  font-size: 15px;
  font-weight: 700;
  color: #4a7c23;
}
.dz-tz-discount-row .dz-tz-rules-link {
  margin-left: auto;
  font-size: 11px;
  color: #6c757d;
  text-decoration: underline;
}
.dz-tz-discount-row .dz-tz-rules-link:hover {
  color: #4a7c23;
}

.dz-tz-guest-points-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgb(203.679245283, 233.8679245283, 180.1320754717) 0%, rgb(192.7735849057, 229.3773584906, 164.2226415094) 100%);
  border: 1px solid rgb(170.9622641509, 220.3962264151, 132.4037735849);
  border-left: 4px solid #4a7c23;
}
.dz-tz-guest-points-banner > svg {
  flex-shrink: 0;
  color: #4a7c23;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-text {
  flex: 1;
  min-width: 0;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-text strong {
  display: block;
  font-size: 14px;
  color: #2d5016;
  line-height: 1.4;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-text span {
  display: block;
  font-size: 12px;
  color: #6c757d;
  margin-top: 2px;
  line-height: 1.4;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-value {
  color: #4a7c23;
  font-weight: 700;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #4a7c23;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.dz-tz-guest-points-banner .dz-tz-guest-points-cta:hover {
  background: #2d5016;
  color: #fff;
}
.dz-tz-guest-points-banner .dz-tz-guest-rules-link {
  color: #4a7c23;
  text-decoration: underline;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dz-tz-guest-points-banner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .dz-tz-guest-points-banner > svg {
    display: none;
  }
  .dz-tz-guest-points-banner .dz-tz-guest-points-cta {
    width: 100%;
    text-align: center;
  }
}
.dz-tz-no-points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6c757d;
}
.dz-tz-no-points .dz-tz-no-points-value {
  font-weight: 500;
}

.dz-tz-points-notice {
  margin-bottom: 15px;
  font-size: 13px;
}

.dz-tz-order-points {
  margin-top: 30px;
  padding: 20px;
  background: rgb(203.679245283, 233.8679245283, 180.1320754717);
}
.dz-tz-order-points h2 {
  margin-top: 0;
  font-size: 18px;
  color: #2d5016;
}
.dz-tz-order-points p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .dz-tz-balance-cards {
    flex-direction: column;
    gap: 10px;
  }
  .dz-tz-balance-card {
    padding: 12px 14px;
    gap: 12px;
    min-width: unset;
  }
  .dz-tz-balance-card .dz-tz-balance-icon {
    width: 38px;
    height: 38px;
  }
  .dz-tz-balance-card .dz-tz-balance-icon svg {
    width: 18px;
    height: 18px;
  }
  .dz-tz-balance-card .dz-tz-balance-value {
    font-size: 22px;
  }
  .dz-tz-balance-card .dz-tz-balance-label {
    font-size: 11px;
  }
  .dz-tz-balance-card .dz-tz-balance-eur,
  .dz-tz-balance-card .dz-tz-balance-info,
  .dz-tz-balance-card .dz-tz-balance-warning {
    font-size: 9px;
    padding: 2px 8px;
  }
  .dz-tz-qr-section {
    padding: 24px 20px;
  }
  .dz-tz-qr-section h3 {
    font-size: 18px;
  }
  .dz-tz-qr-container {
    padding: 12px;
  }
  .dz-tz-qr-container #dz-tz-qr-code {
    width: 150px;
    height: 150px;
  }
  .dz-tz-how-to-earn {
    padding: 20px;
  }
  .dz-tz-earn-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dz-tz-earn-item {
    padding: 16px;
  }
  .dz-tz-earn-item .dz-tz-earn-icon {
    width: 44px;
    height: 44px;
  }
  .dz-tz-earn-item .dz-tz-earn-icon svg {
    width: 22px;
    height: 22px;
  }
  .dz-tz-accordion-header {
    padding: 14px 16px;
  }
  .dz-tz-accordion-title {
    font-size: 14px;
    gap: 10px;
  }
  .dz-tz-accordion-title svg {
    width: 18px;
    height: 18px;
  }
  .dz-tz-accordion-content {
    padding: 0 16px 16px;
  }
  .dz-tz-accordion-content .shop_table {
    font-size: 13px;
  }
  .dz-tz-accordion-content .shop_table th, .dz-tz-accordion-content .shop_table td {
    padding: 10px 8px;
  }
  .dz-tz-slider-values {
    flex-wrap: wrap;
  }
  .dz-tz-expiring-notice {
    padding: 14px 16px;
    gap: 10px;
  }
  .dz-tz-expiring-notice svg {
    width: 18px;
    height: 18px;
  }
  .dz-tz-expiring-notice div {
    font-size: 13px;
  }
}

/*# sourceMappingURL=frontend.css.map */
