

/* Start:/local/components/artofall/yandexreviewsslider/templates/.default/style.css?17790288503210*/
.arv-widget {
  --arv-accent: #4ea3ff;
  --arv-btn-bg: #ffffff;
  --arv-btn-color: #212121;
  display: grid;
  gap: 14px;
  color: #f4f7ff;
}

.arv-summary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 18px 16px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.arv-summary__head {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.arv-summary__name {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #f4f7ff;
}

.arv-summary__logo {
  width: 132px;
  max-width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 8px;
  box-sizing: border-box;
}

.arv-summary__rating-row {
  display: grid;
  gap: 8px;
}

.arv-summary__rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.arv-summary__rating-value span {
  font-size: 0.88rem;
  color: #b8c4dd;
  font-weight: 500;
}

.arv-stars {
  display: flex;
  gap: 2px;
}

.arv-stars--small {
  gap: 1px;
}

.arv-star {
  font-size: 42px;
  line-height: 1;
}

.arv-stars--small .arv-star {
  font-size: 42px;
}

.arv-star--full {
  color: #ffcc46;
}

.arv-star--empty {
  color: rgba(255, 255, 255, 0.24);
}

.arv-summary__meta {
  color: #b8c4dd;
  font-size: 0.9rem;
}

.arv-summary__actions {
  display: grid;
  gap: 8px;
}

.arv-summary__map-link {
  color: #b8c4dd;
  text-decoration: none;
  font-size: 0.88rem;
}

.arv-summary__map-link:hover {
  color: #ffffff;
}

.arv-summary__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--arv-btn-bg);
  color: var(--arv-btn-color) !important;
}

.arv-summary__cta:hover {
  filter: brightness(0.97);
}

.arv-reviews {
  min-width: 0;
}

.arv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.arv-review-item {
  display: flex;
  flex-flow: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px;
  min-height: 244px;
}

.arv-review__author-container {
  display: flex;
  align-items: center;
}

.arv-review__author-image {
  margin-right: 10px;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.arv-review__author-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: 50% / cover no-repeat;
  color: #fff;
  font-weight: 700;
}

.arv-review__author-info {
  font-size: 0.95rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 600;
}

.arv-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.arv-review__date {
  font-size: 0.82rem;
  color: #b8c4dd;
}

.arv-review__body {
  margin-top: 2px;
  min-height: 0;
}

.arv-review__text {
  color: #dce9ff;
  font-size: 0.95rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .arv-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* End */


/* Start:/local/components/artofall/review.add/templates/.default/style.css?17796175301488*/
.arv-review-add-shell {
    background: linear-gradient(180deg, var(--surface-soft), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: clamp(18px, 2.2vw, 28px);
    margin-top: 22px;
}

.arv-review-add-card {
    max-width: 760px;
}

.arv-review-add-form {
    gap: 12px;
}

.arv-review-add-select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    height: 44px;
    background: rgba(13, 25, 48, 0.68);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.arv-review-add-select:focus {
    border-color: rgba(78, 163, 255, 0.8);
    background: rgba(13, 25, 48, 0.84);
    box-shadow: 0 0 0 3px rgba(78, 163, 255, 0.2);
}

.arv-review-add-form .btn {
    width: fit-content;
    min-height: 44px;
}

.arv-review-add-alert {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font-size: 0.95rem;
    line-height: 1.45;
}

.arv-review-add-alert--success {
    background: rgba(58, 183, 118, 0.14);
    border-color: rgba(58, 183, 118, 0.35);
    color: #9ff0c6;
}

.arv-review-add-alert--error {
    background: rgba(227, 73, 73, 0.14);
    border-color: rgba(227, 73, 73, 0.35);
    color: #ffb4b4;
}

@media (max-width: 768px) {
    .arv-review-add-form .btn {
        width: 100%;
    }
}

/* End */
/* /local/components/artofall/yandexreviewsslider/templates/.default/style.css?17790288503210 */
/* /local/components/artofall/review.add/templates/.default/style.css?17796175301488 */
