model-viewer {
    --ar-button-scale: 1.2;
}
.highlight_marker .marker_embed_selection {
  animation: highlight_blink 1.0s linear infinite;
}

@keyframes highlight_blink {
    0% {
        -webkit-box-shadow: 0 0 20px white;
        -moz-box-shadow: 0 0 20px white;
        box-shadow: 0 0 20px white;
    }
    50% {
        -webkit-box-shadow: 0 0 0;
        -moz-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
    }
    100% {
        -webkit-box-shadow: 0 0 20px white;
        -moz-box-shadow: 0 0 20px white;
        box-shadow: 0 0 20px white;
    }
}
@-webkit-keyframes highlight_blink {
    0% {
        -webkit-box-shadow: 0 0 20px white;
        -moz-box-shadow: 0 0 20px white;
        box-shadow: 0 0 20px white;
    }
    50% {
        -webkit-box-shadow: 0 0 0;
        -moz-box-shadow: 0 0 0;
        box-shadow: 0 0 0;
    }
    100% {
        -webkit-box-shadow: 0 0 20px white;
        -moz-box-shadow: 0 0 20px white;
        box-shadow: 0 0 20px white;
    }
}
.has_shadow {
    box-shadow: 1px 0px 15px 17px rgba(0,0,0,0.5);
}
.large_marker_img img {
    width: 200px !important;
}
.image_border {
    border: 5px solid black;   
}






/* === PUBLIC NOTES STYLE === */

.review-section {
  background: #f7f9fb;
  border: 1px solid #d9dee5;
  border-radius: 4px;
  padding: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Hide rating visuals */
.average-rating .rating,
.start-part,
.loder-ratimg,
#new_rating {
  display: none !important;
}

/* Head number */
.average-rating h2 {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 5px;
}

/* Rename tone */
.average-rating p.total_reviews {
  color: #6c7a89;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Button */
.btn_review {
  background: #2f3b4a;
  color: #fff;
  border-radius: 3px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  border: none;
}

.btn_review:hover {
  background: #1f2a36;
}

/* Inputs */
#modal_new_review input,
#modal_new_review textarea {
  border: 1px solid #ccd3db;
  border-radius: 3px;
  padding: 10px;
  font-size: 14px;
}

#modal_new_review textarea {
  min-height: 120px;
}


/* Modal */
#modal_new_review {
  background: rgba(0,0,0,0.4);
}




.comments_vt {
  background: transparent;
  color: #5f6b7a;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* Remove star icon */
.comments_vt .fa-star {
  display: none !important;
}

/* Make icon neutral */
#comments_control {
  color: #6c7a89;
  margin-right: 6px;
}

/* Hide rating number */
.comments_vt .disqus-comment-count {
  font-weight: 500;
}

.comments_vt .disqus-comment-count strong {
  font-weight: 600;
}


/* BACKDROP */
.modal {
  background: rgba(20, 25, 30, 0.65) !important;
  backdrop-filter: blur(3px);
}

/* MODAL BOX */
#modal_new_review {
  background: #f5f7fa !important;
  border-radius: 4px !important;
  border: 1px solid #cfd6df !important;
  max-width: 520px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  font-family: "Segoe UI", Arial, sans-serif;
}

#new_rating {
  display: none !important;
}

#modal_new_review input,
#modal_new_review textarea {
  background: #ffffff;
  border: 1px solid #cfd6df;
  border-radius: 3px;
  padding: 11px 12px;
  font-size: 14px;
  box-shadow: none;
  transition: border .15s ease;
}

#modal_new_review input:focus,
#modal_new_review textarea:focus {
  border-color: #4c6ef5;
  outline: none;
}

#review_submit {
  width: 100%;
  background: #2f3b4a;
  border: none;
  border-radius: 3px;
  padding: 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

#review_submit.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


#review_submit:hover {
  background: #1f2a36;
}

.close-modal {
  background: transparent !important;
  color: #6c7a89 !important;
  border: none !important;
  top: 8px !important;
  right: 10px !important;
  font-size: 12px !important;
  text-transform: uppercase;
}

#captcha_canvas {
  display: block;
  margin-bottom: 8px;
}

#captcha_code {
  width: 100%;
}

#review_submit:not(.disabled) {
  background: #2f3b4a;
  opacity: 1;
}

.comment-part .fa-star {
  display: none !important;
}

.comment-part {
  background: #f9fafc;
  border: 1px solid #cfd6df;
  border-radius: 3px;
  padding: 10px 14px;
  margin-top: 10px;
}

.user-img-part {
  margin-bottom: 8px;
}

.user-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-text p {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  color: #2f3b4a;
}

.user-text h4 {
  margin: 0;
  font-size: 11px;
  color: #9aa6b2;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.user-text h4::before {
  content: "|";
  margin: 0 6px;
  color: #c3c9d1;
}

.comment {
  border-top: 1px solid #dde3ea;
  margin-top: 6px;
  padding-top: 8px;
}

.comment p {
  margin: 0;
  font-size: 14px;
  color: #3a4653;
  line-height: 1.4;
}

.comment-part::before {
  content: "PUBLIC NOTE";
  display: block;
  font-size: 10px;
  letter-spacing: .7px;
  color: #8f9aa7;
  margin-bottom: 6px;
}

.comment-part:hover {
  background: #f3f6fa;
  border-color: #bcc6d2;
}

#div_comments {
  margin-top: 8px;
}

.review-section {
  box-shadow: none;
}


/* =========================
   MOBILE PUBLIC NOTES FIX
   ========================= */
@media (max-width: 640px) {

  /* Card container */
  .review-section {
    padding: 14px !important;
    border-radius: 6px;
  }

  /* Top title + button spacing */
  .average-rating h2 {
    font-size: 22px;
  }

  .btn_review {
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
    padding: 11px;
  }

  /* NOTE CARD */
  .comment-part {
    padding: 10px !important;
  }

  /* PUBLIC NOTE label */
  .comment-part::before {
    font-size: 9px;
    margin-bottom: 4px;
  }

  /* HEADER LINE */
  .user-text {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }

  .user-text p {
    font-size: 13px;
  }

  .user-text h4 {
    font-size: 10px;
    letter-spacing: .3px;
  }

  /* Remove vertical bar on small screens */
  .user-text h4::before {
    display: none;
  }

  /* COMMENT TEXT */
  .comment p {
    font-size: 13px;
    line-height: 1.35;
  }

  /* Divider line thinner */
  .comment {
    border-top: 1px solid #e6ebf1;
    margin-top: 6px;
    padding-top: 6px;
  }

  /* Modal width */
  #modal_new_review {
    max-width: 92% !important;
    padding: 16px !important;
  }

  #modal_new_review textarea {
    min-height: 90px;
  }

  /* Save button */
  #review_submit {
    padding: 11px;
    font-size: 12px;
  }
}


.comment .reply {
  margin-top: 6px;
  padding: 6px 8px;
  background: #eef2f7;
  border-left: 3px solid #b8c2cf;
  font-size: 13px;
  color: #2f3b4a;
  border-radius: 3px;
}

.comment .reply b {
  font-weight: 600;
  color: #4b5a6a;
}