/* VIEWER */
.rlab-satc-viewer {
  padding: 20px;
}

.rlab-satc-viewer-inner {
  position: relative;
  min-height: 420px;
  background: #ffffff;
}

.rlab-satc-viewer-content {
  padding: 20px;
  display: flex;
  flex-flow: column;
  gap: 20px;
  background-color: #dee1d8;
}

.rlab-satc-viewer-block {
  height: 120px;
  background: #434b41;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #666;
}

/* STICKY BAR */
.rlab-satc-main {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #b6bcac;
}

.rlab-satc-inner {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* INFO */
.rlab-satc-info {
  display: flex;
  flex-flow: column;
  gap: 4px;
  flex: 1 1 auto;
}

.rlab-satc-title {
  font-size: 14px;
  color: #111111;
}

.rlab-satc-price {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

/* ACTIONS */
.rlab-satc-actions {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.rlab-satc-actions label {
  font-size: 11px;
  color: #000;
  margin-bottom: 4px;
  display: block;
}

.rlab-satc-variant select,
.rlab-satc-qty input {
  height: 36px;
  padding: 0 10px;
  border: unset;
  font-size: 13px;
  background-color: #9ca291;
}

/* QTY */
.rlab-satc-qty input {
  width: 60px;
}

/* BUTTON */
.rlab-satc-btn-wrap {
  display: flex;
  align-items: flex-end;
}

.rlab-satc-btn {
  height: 36px;
  padding: 0 16px;
  border: 1px solid #111111;
  background: #242923;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
}

/* =========================
   TABLET
========================= */
@media only screen and (max-width: 1024px) {
  .rlab-satc-inner {
    flex-flow: column;
    align-items: stretch;
    gap: 12px;
  }

  .rlab-satc-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* =========================
   MOBILE
========================= */
@media only screen and (max-width: 767px) {
  .rlab-satc-inner {
    padding: 10px 12px;
  }

  .rlab-satc-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .rlab-satc-variant,
  .rlab-satc-qty {
    width: calc(50% - 4px);
  }

  .rlab-satc-btn-wrap {
    width: 100%;
  }

  .rlab-satc-btn {
    width: 100%;
  }
}
