/* VEGAWATCH ENTITY UTILITIES V1 */

#vwu-entity-utilities {
  width:
    min(
      1120px,
      calc(
        100% - 32px
      )
    );

  margin:
    35px auto 90px;

  color:
    #f3f6fb;
}

.vwu-shell {
  display: grid;
  gap: 20px;
}

.vwu-loading,
.vwu-error {
  padding: 30px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.10
    );

  border-radius: 18px;

  color: #9cabbe;

  background:
    rgba(
      17,
      27,
      45,
      0.82
    );
}

.vwu-action-bar {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 15px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.10
    );

  border-radius: 18px;

  background:
    rgba(
      17,
      27,
      45,
      0.86
    );

  backdrop-filter:
    blur(14px);
}

.vwu-actions,
.vwu-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vwu-action,
.vwu-share-actions button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  min-height: 42px;

  padding: 0 15px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  border-radius: 11px;

  color: #d9e1ec;

  background:
    rgba(
      255,
      255,
      255,
      0.045
    );

  font: inherit;
  font-size: 13px;
  font-weight: 750;

  cursor: pointer;
}

.vwu-action.is-active {
  color: #fff;

  border-color:
    rgba(
      106,
      148,
      255,
      0.46
    );

  background:
    linear-gradient(
      135deg,
      rgba(
        74,
        132,
        255,
        0.35
      ),
      rgba(
        139,
        98,
        255,
        0.28
      )
    );
}

.vwu-stats {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    );

  gap: 12px;
}

.vwu-stats > div {
  display: grid;
  gap: 4px;

  padding: 18px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 15px;

  background:
    rgba(
      16,
      27,
      45,
      0.78
    );
}

.vwu-stats strong {
  font-size: 24px;
}

.vwu-stats span {
  color: #8797ad;
  font-size: 12px;
}

.vwu-tabs {
  display: flex;

  gap: 6px;

  overflow-x: auto;

  padding: 7px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 15px;

  background:
    rgba(
      12,
      20,
      34,
      0.85
    );
}

.vwu-tabs button {
  flex: 0 0 auto;

  min-height: 42px;

  padding: 0 16px;

  border: 0;
  border-radius: 10px;

  color: #8fa0b5;

  background: transparent;

  font: inherit;
  font-size: 13px;
  font-weight: 750;

  cursor: pointer;
}

.vwu-tabs button.is-active {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      rgba(
        81,
        137,
        255,
        0.32
      ),
      rgba(
        139,
        100,
        255,
        0.25
      )
    );
}

.vwu-panel {
  display: none;

  padding: 27px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 20px;

  background:
    rgba(
      13,
      22,
      38,
      0.88
    );
}

.vwu-panel.is-active {
  display: block;
}

.vwu-section-heading span {
  color: #7fa9f8;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.vwu-section-heading h3 {
  margin: 6px 0 24px;
  font-size: 27px;
}

.vwu-credit-group + .vwu-credit-group {
  margin-top: 30px;
}

.vwu-credit-group h4 {
  margin: 0 0 12px;
  color: #9faec2;
}

.vwu-people {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(
        175px,
        1fr
      )
    );

  gap: 9px;
}

.vwu-person {
  display: grid;

  gap: 4px;

  padding: 13px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  border-radius: 12px;

  color: #eef3fb;

  background:
    rgba(
      255,
      255,
      255,
      0.035
    );

  text-align: left;
  text-decoration: none;

  font: inherit;

  cursor: pointer;
}

.vwu-person span {
  color: #8292a8;
  font-size: 12px;
}

.vwu-two-columns {
  display: grid;

  grid-template-columns:
    minmax(
      0,
      1.4fr
    )
    minmax(
      280px,
      0.6fr
    );

  gap: 30px;
}

#vwu-review-form,
#vwu-room-form,
#vwu-meetup-form {
  display: grid;
  gap: 13px;

  align-content: start;

  padding: 20px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 16px;

  background:
    rgba(
      255,
      255,
      255,
      0.032
    );
}

#vwu-review-form h3,
#vwu-room-form h3,
#vwu-meetup-form h3 {
  margin: 0 0 4px;
}

#vwu-review-form label,
#vwu-room-form label,
#vwu-meetup-form label {
  display: grid;
  gap: 6px;

  color: #9daabd;

  font-size: 12px;
  font-weight: 700;
}

#vwu-review-form input,
#vwu-review-form select,
#vwu-review-form textarea,
#vwu-room-form input,
#vwu-room-form select,
#vwu-meetup-form input,
#vwu-meetup-form select {
  width: 100%;

  min-height: 44px;

  padding: 10px 12px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  border-radius: 10px;

  outline: 0;

  color: #eef3fa;

  background:
    #101a2b;

  font: inherit;
}

#vwu-review-form textarea {
  min-height: 135px;
  resize: vertical;
}

#vwu-review-form button,
#vwu-room-form button,
#vwu-meetup-form button {
  min-height: 45px;

  border: 0;
  border-radius: 11px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #5c90ff,
      #8d70ff
    );

  font: inherit;
  font-weight: 800;

  cursor: pointer;
}

.vwu-checkbox {
  display: flex !important;

  grid-template-columns:
    auto 1fr;

  align-items: center;
}

.vwu-checkbox input {
  width: auto !important;
  min-height: auto !important;
}

.vwu-form-status {
  min-height: 18px;
  margin: 0;

  color: #8fa2bd;
  font-size: 12px;
}

.vwu-review {
  padding: 18px 0;

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );
}

.vwu-review:first-child {
  padding-top: 0;
}

.vwu-review header {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 15px;
}

.vwu-review header > div {
  display: grid;
  gap: 5px;
}

.vwu-review time {
  color: #718096;
  font-size: 11px;
}

.vwu-review h4 {
  margin: 14px 0 8px;
}

.vwu-review p {
  color: #abb7c8;
  line-height: 1.65;
}

.vwu-stars {
  color: #f1c65b;
  letter-spacing: 1px;
}

.vwu-spoiler:not(.is-revealed) p {
  filter: blur(8px);
  user-select: none;
}

.vwu-spoiler.is-revealed
.vwu-reveal-spoiler {
  display: none;
}

.vwu-reveal-spoiler {
  padding: 7px 10px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  border-radius: 8px;

  color: #d6deea;

  background:
    rgba(
      255,
      255,
      255,
      0.05
    );

  cursor: pointer;
}

.vwu-event {
  display: grid;
  gap: 8px;

  padding: 16px;

  margin-bottom: 10px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  border-radius: 13px;

  background:
    rgba(
      255,
      255,
      255,
      0.035
    );
}

.vwu-event p,
.vwu-event span {
  margin: 0;
  color: #8999ae;
  font-size: 13px;
}

.vwu-event a {
  color: #91b6ff;
  font-weight: 750;
}

.vwu-live-dot {
  display: inline-block;

  width: 9px;
  height: 9px;

  margin-right: 7px;

  border-radius: 50%;

  background: #ff5474;

  box-shadow:
    0 0 0 5px
    rgba(
      255,
      84,
      116,
      0.12
    );
}

.vwu-watch-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fill,
      minmax(
        190px,
        1fr
      )
    );

  gap: 10px;
}

.vwu-watch-source {
  display: grid;
  gap: 5px;

  padding: 16px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.09
    );

  border-radius: 13px;

  color: #eef3fb;

  background:
    rgba(
      255,
      255,
      255,
      0.035
    );

  text-decoration: none;
}

.vwu-watch-source span {
  color: #8999ae;
  font-size: 12px;
}

.vwu-empty {
  padding: 19px;

  border:
    1px dashed
    rgba(
      255,
      255,
      255,
      0.12
    );

  border-radius: 12px;

  color: #8291a5;

  text-align: center;
}

@media (
  max-width: 820px
) {
  .vwu-action-bar {
    display: grid;
  }

  .vwu-stats {
    grid-template-columns:
      repeat(
        2,
        minmax(
          0,
          1fr
        )
      );
  }

  .vwu-two-columns {
    grid-template-columns: 1fr;
  }
}

@media (
  max-width: 520px
) {
  #vwu-entity-utilities {
    width:
      min(
        100% - 20px,
        1120px
      );

    margin-bottom: 50px;
  }

  .vwu-panel {
    padding: 18px;
  }

  .vwu-actions {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        1fr
      );

    width: 100%;
  }

  .vwu-action {
    width: 100%;
  }

  .vwu-share-actions {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }

  .vwu-stats {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }
}
