.dt-review-list {
  list-style:none;
  
  margin:0;
  
  padding:0;
  
  display:grid;
  
  gap:14px;
}

.dt-review-item {
  border:1px solid var(--dt-border);
  
  border-radius:8px;
  
  padding:16px;
}

.dt-review-header {
  display:flex;
  
  justify-content:space-between;
  
  gap:16px;
}

.dt-review-author {
  display:flex;
  
  align-items:center;
  
  gap:10px;
}

.dt-review-content {
  margin-top:12px;
}

.comment-form input,.comment-form textarea,.comment-form select {
  width:100%;
  
  border:1px solid var(--dt-border);
  
  border-radius:8px;
  
  padding:12px;
  
  font:inherit;
}

.comment-form input[type="submit"] {
  width:auto;
  
  background:var(--dt-blue);
  
  color:#fff;
  
  border-color:var(--dt-blue);
  
  font-weight:800;
  
  cursor:pointer;
}

.dt-review-reactions {
  display:flex;
  
  flex-wrap:wrap;
  
  gap:8px;
  
  margin-top:14px;
}

.dt-review-reaction-form {
  margin:0;
}

.dt-review-reaction-button {
  appearance:none;
  
  border:1px solid var(--dt-border);
  
  background:#fff;
  
  border-radius:999px;
  
  padding:8px 12px;
  
  font:inherit;
  
  font-weight:800;
  
  color:var(--dt-muted);
  
  cursor:pointer;
  
  display:inline-flex;
  
  align-items:center;
  
  gap:6px;
  
  line-height:1.2;
  
  transition:border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}

.dt-review-reaction-button:hover {
  border-color:var(--dt-blue);
  
  color:var(--dt-blue);
  
  background:#f8fbff;
  
  box-shadow:0 4px 14px rgba(37,91,177,.08);
}

.dt-review-reaction-button.is-active {
  border-color:var(--dt-blue);
  
  background:#edf4ff;
  
  color:var(--dt-blue);
}

.dt-review-reaction-button .dt-reaction-icon {
  width:17px;
  
  height:17px;
  
  display:inline-block;
  
  flex:0 0 17px;
  
  stroke:currentColor;
  
  fill:none;
  
  stroke-width:2;
  
  stroke-linecap:round;
  
  stroke-linejoin:round;
}

.dt-review-reaction-button .dt-review-reaction-label {
  white-space:nowrap;
}

.dt-review-reaction-button .dt-review-reaction-count {
  display:inline-flex;
  
  align-items:center;
  
  justify-content:center;
  
  min-width:22px;
  
  height:22px;
  
  border-radius:999px;
  
  background:#eef2f7;
  
  color:var(--dt-text);
  
  font-size:12px;
  
  font-weight:900;
  
  margin-left:2px;
}

.dt-review-reaction-button.is-active .dt-review-reaction-count {
  background:var(--dt-blue);
  
  color:#fff;
}

.dt-review-reaction-helpful {
  color:#64748b;
}

.dt-review-reaction-like {
  color:#64748b;
}

.dt-review-reaction-funny {
  color:#64748b;
}

.dt-rating-input {
  border:0;
  
  padding:0;
  
  margin:18px 0;
  
  display:inline-flex;
  
  flex-direction:row-reverse;
  
  gap:4px;
  
  align-items:center;
}

.dt-rating-input legend {
  float:left;
  
  width:100%;
  
  margin-bottom:8px;
  
  font-weight:800;
}

.dt-rating-input input {
  position:absolute;
  
  opacity:0;
  
  width:1px !important;
  
  height:1px;
}

.dt-rating-input label {
  cursor:pointer;
  
  font-size:28px;
  
  line-height:1;
  
  color:#cbd3df;
  
  transition:color .15s ease;
}

.dt-rating-input label:hover,.dt-rating-input label:hover ~ label,.dt-rating-input input:checked ~ label {
  color:#f6b01e;
}

.dt-review-pending-notice {
  margin:0 0 18px;
  
  padding:12px 14px;
  
  border:1px solid #f0d99b;
  
  background:#fff8e5;
  
  border-radius:10px;
  
  font-weight:700;
  
  color:#6f4e00;
}

.dt-review-summary-box {
  display:flex;
  
  align-items:center;
  
  gap:20px;
  
  padding:18px 20px;
  
  margin:0 0 22px;
  
  border:1px solid #e2e8f0;
  
  border-radius:16px;
  
  background:#f8fafc;
}

.dt-review-summary-score {
  display:flex;
  
  align-items:baseline;
  
  gap:6px;
  
  flex:0 0 auto;
  
  color:#0f172a;
}

.dt-review-summary-score strong {
  font-size:38px;
  
  line-height:1;
  
  letter-spacing:-.04em;
}

.dt-review-summary-score span {
  font-weight:800;
  
  color:#64748b;
}

.dt-review-summary-detail {
  display:grid;
  
  gap:4px;
}

.dt-review-summary-detail p,.dt-review-summary-empty p {
  margin:0;
  
  color:#64748b;
  
  font-weight:700;
}

.dt-review-summary-stars {
  font-size:18px;
  
  color:#64748b;
}

.dt-review-summary-empty {
  display:grid;
  
  gap:4px;
}

.dt-review-summary-empty strong {
  font-size:18px;
  
  color:#0f172a;
}

.dt-review-write-jump {
  display:inline-flex;
  
  align-items:center;
  
  justify-content:center;
  
  border:1px solid var(--dt-border);
  
  border-radius:999px;
  
  padding:8px 14px;
  
  font-weight:800;
  
  background:#fff;
  
  color:var(--dt-blue);
  
  text-decoration:none;
}

.dt-review-write-jump:hover {
  border-color:var(--dt-blue);
  
  background:#f8fbff;
}

.comment-form.dt-review-form {
  display:grid;
  
  gap:18px;
  
  margin-top:18px;
}

.comment-form.dt-review-form p {
  margin:0;
}

.comment-form.dt-review-form .comment-notes {
  margin:0;
  
  color:var(--dt-muted);
  
  font-weight:700;
}

.comment-form.dt-review-form .dt-rating-input {
  display:flex;
  
  align-items:center;
  
  gap:8px;
  
  margin:0;
  
  padding:0;
  
  border:0;
  
  flex-direction:row-reverse;
  
  justify-content:flex-end;
}

.comment-form.dt-review-form .dt-rating-input legend {
  float:none;
  
  width:auto;
  
  margin:0 0 0 8px;
  
  font-weight:800;
  
  order:-1;
}

.comment-form.dt-review-form .dt-rating-input input {
  position:absolute;
  
  opacity:0;
  
  width:1px !important;
  
  height:1px !important;
  
  pointer-events:none;
}

.comment-form.dt-review-form .dt-rating-input label {
  cursor:pointer;
  
  font-size:32px;
  
  line-height:1;
  
  color:#cbd3df;
  
  transition:color .15s ease;
}

.comment-form.dt-review-form .dt-rating-input label:hover,.comment-form.dt-review-form .dt-rating-input label:hover ~ label,.comment-form.dt-review-form .dt-rating-input input:checked ~ label {
  color:#f6b01e;
}

.comment-form.dt-review-form .dt-review-consent label {
  display:flex;
  
  align-items:flex-start;
  
  gap:10px;
  
  font-weight:700;
  
  color:var(--dt-muted);
}

.comment-form.dt-review-form .dt-review-consent input[type="checkbox"] {
  width:auto;
  
  min-width:18px;
  
  height:18px;
  
  margin-top:2px;
}

.comment-form.dt-review-form .dt-review-consent a {
  font-weight:800;
  
  color:var(--dt-blue);
}

.comment-form.dt-review-form .dt-review-honeypot {
  position:absolute !important;
  
  left:-9999px !important;
  
  width:1px !important;
  
  height:1px !important;
  
  overflow:hidden !important;
  
  opacity:0 !important;
  
  pointer-events:none !important;
}

.comment-form.dt-review-form .form-submit {
  margin-top:4px;
}

.comment-form.dt-review-form input[type="submit"] {
  min-height:48px;
  
  padding:12px 20px;
}

.dt-review-submit-notice {
  margin:0 0 18px;
  
  padding:14px 16px;
  
  border:1px solid #b7d7ff;
  
  background:#eff6ff;
  
  color:#1e4f99;
  
  border-radius:10px;
  
  font-weight:800;
}

.dt-review-submit-notice-error {
  border-color:#fecaca;
  
  background:#fef2f2;
  
  color:#991b1b;
}

.dt-review-owner-notice {
  margin:0;
  
  padding:14px 16px;
  
  border:1px solid #e2e8f0;
  
  background:#f8fafc;
  
  color:#64748b;
  
  border-radius:10px;
  
  font-weight:700;
}

.dt-review-thanks-toast {
  position:fixed !important;
  
  left:50% !important;
  
  right:auto !important;
  
  top:62% !important;
  
  bottom:auto !important;
  
  transform:translate(-50%, 12px) !important;
  
  z-index:99999 !important;
  
  width:min(420px, calc(100vw - 32px)) !important;
  
  max-width:calc(100vw - 32px) !important;
  
  border-radius:12px !important;
  
  box-shadow:0 18px 46px rgba(15,23,42,.24) !important;
}

.dt-review-thanks-toast.is-visible {
  opacity:1 !important;
  
  transform:translate(-50%, 0) !important;
}

.dt-review-thanks-toast {
  position:fixed;
  
  left:50%;
  
  bottom:28px;
  
  transform:translate(-50%, 18px);
  
  z-index:99999;
  
  max-width:min(520px, calc(100vw - 32px));
  
  padding:16px 18px !important;
  
  border-radius:12px;
  
  background:#0f172a;
  
  color:#fff;
  
  font-weight:800;
  
  box-shadow:0 18px 46px rgba(15,23,42,.28);
  
  opacity:0;
  
  pointer-events:none;
  
  transition:opacity .2s ease, transform .2s ease;
  
  text-align:center !important;
}

.dt-review-list.dt-review-list-is-collapsed .dt-review-item:nth-child(n+4) {
  display:none;
}

.dt-review-more-button {
  appearance:none;
  
  border:1px solid var(--dt-border);
  
  background:#fff;
  
  color:var(--dt-blue);
  
  border-radius:999px;
  
  padding:10px 18px;
  
  font:inherit;
  
  font-weight:800;
  
  cursor:pointer;
  
  margin:16px auto 22px;
  
  display:flex;
  
  align-items:center;
  
  justify-content:center;
  
  box-shadow:0 8px 20px rgba(15,23,42,.06);
}

.dt-review-more-button:hover {
  border-color:var(--dt-blue);
  
  background:#f8fbff;
}

.dt-review-more-button[hidden] {
  display:none !important;
}

.dt-review-summary-stars,.dt-review-summary-stars .dt-stars {
  font-size:32px;
  
  line-height:1;
}

@media (max-width: 980px) {
  .dt-listing-layout-refined .dt-review-panel {
    order:60;
  }
}

@media(max-width:560px) {
  .dt-review-header {
    display:block;
  }
  .dt-review-reaction-button {
    padding:8px 11px;
  }
  .dt-review-reaction-button .dt-reaction-icon {
    width:16px;
    
    height:16px;
  }
  .dt-review-reaction-button .dt-review-reaction-count {
    min-width:20px;
    
    height:20px;
  }
  .dt-review-write-jump {
    justify-self:start;
  }
  .comment-form.dt-review-form .dt-rating-input label {
    font-size:30px;
  }
  .comment-form.dt-review-form .dt-rating-input legend {
    margin-left:6px;
  }
  .dt-review-thanks-toast {
    bottom:18px;
    
    text-align:center;
  }
  .dt-review-more-button {
    width:100%;
    
    border-radius:12px;
  }
}

@media (max-width:640px) {
  .dt-review-summary-box {
    align-items:flex-start;
    
    gap:14px;
    
    padding:16px;
  }
  .dt-review-summary-score strong {
    font-size:32px;
  }
}

@media (max-width:760px) {
  .dt-review-thanks-toast {
    top:58% !important;
    
    width:min(380px, calc(100vw - 28px)) !important;
    
    max-width:calc(100vw - 28px) !important;
  }
}
