:root {
  --base-color: hsl(0, 100%, 43%);
  --base-border-color: hsl(0, 100%, 43%);
  --heart-color: hsl(0, 100%, 50%);
  --hover-button-color: hsl(0, 80%, 40%);
  --hover-button-color-border: hsl(0, 89%, 38%);
}

/* Animation mixins */
@keyframes dropdownAnimation {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
    transform: translate3d(0, 0px, 0);
  }
}
.dropdownAnimation {
  animation-name: dropdownAnimation;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOUt;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

.infinite-spin {
  animation-name: spin;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulse {
  animation-name: pulse;
  animation-duration: 0.9s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
@keyframes pulse {
  0% {
    opacity: 1;
    width: 7px;
    height: 7px;
    left: 0;
    top: 0;
  }
  95% {
    opacity: 0.1;
    left: -10.5px;
    top: -10.5px;
    width: 28px;
    height: 28px;
  }
  100% {
    opacity: 0;
    width: 7px;
    height: 7px;
    left: 0;
    top: 0;
  }
}

.gradient-move {
  background-size: 400% 400%;
  animation: gradient 9s ease-in infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.button--cart {
  width: 52px;
  max-width: 52px;
  height: 52px;
  max-height: 52px;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  pointer-events: all;
}
.button--cart-add {
  border: 2px solid white !important;
  border-radius: 50%;
  padding: 0.5rem;
}
.button--cart-added {
  border: 2px solid white !important;
  border-radius: 50%;
  padding: 0.5rem;
}
.button--cart img {
  width: 32px;
  height: 32px;
}
.button--cart-right {
  top: -16px;
  right: -6px;
}

.button--reaction {
  width: 30px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  transition: filter 0.5s ease;
  pointer-events: all;
  font-size: 30px;
  text-align: center;
  color: gray;
  filter: grayscale(100%);
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-style: normal;
}
.button--reaction-first {
  top: -8px;
  right: -6px;
}
.button--reaction-second {
  bottom: 10px;
  right: 10px;
}
.button--reaction.active {
  color: initial;
  filter: none;
}

.button--heart {
  width: 20px;
  height: 24px;
  position: absolute;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  transition: background 0.5s ease;
  pointer-events: all;
}
.button--heart-first {
  top: -8px;
  right: -6px;
}
.button--heart-second {
  bottom: 10px;
  right: 10px;
}

.active.button--heart:before,
.active.button--heart:after {
  background: var(--heart-color) !important;
}

.button--heart:before,
.button--heart:after {
  transition: background 0.5s ease;
  position: absolute;
  content: "";
  width: 18px;
  height: 30px;
  background: dimgrey;
  border-radius: 50px 50px 0 0;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
  right: -9px;
}

.button--heart:after {
  right: 9px;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

.btn.btn-front-primary {
  background-color: var(--base-color);
  border-color: var(--base-border-color);
  color: white;
}
.btn.btn-front-primary:hover {
  background-color: var(--hover-button-color);
  border-color: var(--hover-button-color-border);
}
.btn.btn-front-primary:focus {
  background-color: var(--hover-button-color);
  border-color: var(--base-color);
  box-shadow: 0 0 0 0.25rem var(--primary_shadow-color);
}

.btn.btn-front-info {
  background-color: hsl(128, 100%, 24%);
  border-color: hsl(90, 100%, 50%);
  color: white;
}
.btn.btn-front-info:hover {
  background-color: hsl(128, 100%, 20%);
  border-color: hsl(90, 100%, 30%);
}
.btn.btn-front-info:focus {
  background-color: hsl(128, 100%, 20%);
  border-color: hsl(90, 100%, 30%);
  box-shadow: 0 0 0 0.25rem hsla(90, 100%, 30%, 0.5);
}

.btn.btn-front-default {
  background-color: hsl(0, 0%, 41%);
  border-color: hsl(0, 0%, 59%);
  color: white;
}
.btn.btn-front-default:hover {
  background-color: hsl(0, 0%, 31%);
  border-color: hsl(0, 0%, 49%);
}
.btn.btn-front-default:focus {
  background-color: hsl(0, 0%, 31%);
  border-color: hsl(0, 0%, 49%);
  box-shadow: 0 0 0 0.25rem hsla(0, 0%, 49%, 0.5);
}

.btn.btn-front-transparent {
  background-color: hsla(0, 0%, 41%, 0.5);
  border-color: hsla(0, 0%, 59%, 0.5);
  color: white;
}
.btn.btn-front-transparent:hover {
  background-color: hsla(0, 0%, 31%, 0.5);
  border-color: hsla(0, 0%, 49%, 0.5);
}
.btn.btn-front-transparent:focus {
  background-color: hsla(0, 0%, 31%, 0.5);
  border-color: hsla(0, 0%, 49%, 0.5);
  box-shadow: 0 0 0 0.25rem hsla(0, 0%, 49%, 0.5);
}

.chat-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.chat-wrapper.collapsed .chat-content,
.chat-wrapper.collapsed .chat-input,
.chat-wrapper.collapsed .chat-join,
.chat-wrapper.collapsed .chat-nickname {
  display: none !important;
}
.chat-wrapper.collapsed .chat-expand {
  display: block;
}
.chat-wrapper.blocked .chat-input,
.chat-wrapper.blocked .chat-join,
.chat-wrapper.blocked .chat-nickname,
.chat-wrapper.blocked .chat-expand {
  display: none !important;
}
.chat-wrapper:not(.moderator), .chat-wrapper:not(.initialized) {
  visibility: hidden;
}
.chat-wrapper .btn-state-enable {
  display: inline-block;
}
.chat-wrapper .btn-state-disable {
  display: none;
}
.chat-wrapper.enabled.initialized {
  visibility: visible;
}
.chat-wrapper.enabled .btn-state-enable {
  display: none;
}
.chat-wrapper.enabled .btn-state-disable {
  display: inline-block;
}
.chat-wrapper input.error {
  border-color: red;
  border-width: 2px;
}
.chat-wrapper input::-moz-placeholder {
  color: rgba(18, 18, 18, 0.6);
}
.chat-wrapper input::placeholder {
  color: rgba(18, 18, 18, 0.6);
}
.chat-wrapper.moderator .chat-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.chat-wrapper.moderator .chat-content .chat-body {
  height: 100%;
  max-height: unset;
  display: flex;
  justify-content: flex-end;
}
.chat-wrapper.moderator .chat-content .chat-body .messages {
  max-height: unset;
}
.chat-wrapper.moderator .chat-nickname {
  order: 1;
}
.chat-wrapper.moderator .chat-input {
  width: 100%;
}
.chat-wrapper.moderator .chat-state {
  order: 2;
}
.chat-wrapper.moderator .chat-users,
.chat-wrapper.moderator .featured-product,
.chat-wrapper.moderator .polls,
.chat-wrapper.moderator .moderator-chat {
  border-radius: 0.1875rem;
  background-color: white;
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.chat-wrapper.moderator .chat-users.show,
.chat-wrapper.moderator .featured-product.show,
.chat-wrapper.moderator .polls.show,
.chat-wrapper.moderator .moderator-chat.show {
  display: flex;
  flex-direction: column;
}
.chat-wrapper.moderator .chat-users .btn--close,
.chat-wrapper.moderator .featured-product .btn--close,
.chat-wrapper.moderator .polls .btn--close,
.chat-wrapper.moderator .moderator-chat .btn--close {
  position: absolute;
  right: 0;
}
.chat-wrapper.moderator .chat-users .cart__title,
.chat-wrapper.moderator .featured-product .cart__title,
.chat-wrapper.moderator .polls .cart__title,
.chat-wrapper.moderator .moderator-chat .cart__title {
  padding: 1rem;
}
.chat-wrapper.moderator .chat-users .inner-content,
.chat-wrapper.moderator .featured-product .inner-content,
.chat-wrapper.moderator .polls .inner-content,
.chat-wrapper.moderator .moderator-chat .inner-content {
  padding: 0 1rem;
  max-height: 100%;
  overflow: scroll;
}
.chat-wrapper.moderator .chat-users .inner-content ul li,
.chat-wrapper.moderator .featured-product .inner-content ul li,
.chat-wrapper.moderator .polls .inner-content ul li,
.chat-wrapper.moderator .moderator-chat .inner-content ul li {
  padding: 0.5rem 0;
}
.chat-wrapper.moderator .chat-users .inner-content ul li p,
.chat-wrapper.moderator .featured-product .inner-content ul li p,
.chat-wrapper.moderator .polls .inner-content ul li p,
.chat-wrapper.moderator .moderator-chat .inner-content ul li p {
  display: inline-block;
}
.chat-wrapper .chat-join {
  display: none;
}
.chat-wrapper .chat-join.show {
  display: block;
}
.chat-wrapper .chat-nickname {
  display: none;
}
.chat-wrapper .chat-nickname.show {
  display: block;
}
.chat-wrapper .chat-nickname__policy {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px 2px #7c7c7c;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
  font-size: 13px;
  font-weight: bold;
}
.chat-wrapper .chat-nickname--modal {
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.chat-wrapper .chat-nickname--modal.show {
  display: flex;
}
.chat-wrapper .chat-nickname--modal .card {
  width: 70%;
  max-width: 640px;
}
.chat-wrapper .chat-nickname--modal .card-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.chat-wrapper .chat-nickname--modal .card-head h4 {
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 1;
}
.chat-wrapper .chat-nickname--modal .card-head button {
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 2px #e7e7e7;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
}
.chat-wrapper .chat-nickname--modal .chat-nickname__policy {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 2px #e7e7e7;
}
.chat-wrapper .chat-content {
  display: none;
  width: calc(100% - 1.5rem - 30px);
}
@media (max-width: 768px) {
  .chat-wrapper .chat-content {
    width: 75%;
  }
}
.chat-wrapper .chat-content.show {
  display: block;
}
.chat-wrapper .chat-content .chat-body {
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: 40vh;
}
.chat-wrapper .chat-content .chat-body .messages {
  height: auto;
  overflow-y: auto;
  padding: 0 10px;
  list-style-type: none;
  margin: 0;
  max-height: 258px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.chat-wrapper .chat-content .chat-body .messages::-webkit-scrollbar {
  display: none;
}
.chat-wrapper .chat-content .chat-body .messages--pinned {
  display: table;
  height: unset;
  overflow-y: hidden;
  margin-top: 4px;
}
.chat-wrapper .chat-content .chat-body .messages--pinned span.text {
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-vertical-box;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical;
}
@media (max-width: 500px) {
  .chat-wrapper .chat-content .chat-body .messages--pinned span.text {
    -webkit-line-clamp: 3 !important;
  }
}
.chat-wrapper .chat-content .chat-body .messages--pinned .pinned {
  height: 16px;
  width: 16px;
  display: inline-block !important;
  padding: 0;
  margin-right: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0;
  vertical-align: middle;
  margin-bottom: 3px;
}
.chat-wrapper .chat-content .chat-body .messages .message-item {
  display: flex;
  margin-bottom: 4px;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content {
  width: 100%;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .message {
  display: flex;
  align-items: center;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .message > button {
  min-height: 24px;
  height: 24px;
  min-width: 24px;
  width: 24px;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .message > button > img {
  height: 16px;
  width: 16px;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble {
  overflow: hidden;
  flex-grow: 1;
  position: relative;
  padding: 0;
  transition: opacity ease-in 0.3s;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble p, .chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble span {
  line-height: 1.5;
  transition: opacity ease-in 0.3s;
  overflow-wrap: anywhere !important;
  word-break: break-word;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content .bubble img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em 3px !important;
  vertical-align: middle !important;
  background: none !important;
  padding: 0 !important;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content p {
  margin: 0;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content p.name {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 12px;
  border-radius: 16px;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content span.text {
  color: rgb(255, 255, 255);
  font-weight: 400;
  text-shadow: 1px 1px 2px #7c7c7c;
}
.chat-wrapper .chat-content .chat-body .messages .message-item .content img.avatar,
.chat-wrapper .chat-content .chat-body .messages .message-item .content .pinned {
  display: none;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.me p.name {
  font-weight: bold;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg1 p.name {
  color: #e056fd;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg2 p.name {
  color: #686de0;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg3 p.name {
  color: #badc58;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg4 p.name {
  color: #6ab04c;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg5 p.name {
  color: #f0932b;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg6 p.name {
  color: #be2edd;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg7 p.name {
  color: #7ed6df;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg8 p.name {
  color: #7ed6df;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.msg9 p.name {
  color: #f9ca24;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.mod .bubble {
  overflow: hidden;
  position: relative;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.mod .bubble p.name {
  color: var(--chat-moderator-nickname-color);
  font-weight: bold;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.mod .bubble span.text {
  color: white;
}
.chat-wrapper .chat-content .chat-body .messages .message-item.mod .bubble img.avatar {
  display: inline-block;
  height: 16px;
  width: 16px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
  margin-right: 4px;
  vertical-align: middle;
  margin-bottom: 3px;
}
.chat-wrapper .chat-input {
  display: none;
  width: 75%;
}
.chat-wrapper .chat-input.show {
  display: block;
}
.chat-wrapper .chat-expand {
  display: none;
  width: 75%;
}
.chat-wrapper .chat-expand.show {
  display: block;
}
.chat-wrapper .chat-join button.rounded-circle,
.chat-wrapper .chat-expand button.rounded-circle,
.chat-wrapper .chat-footer button.rounded-circle {
  width: 40px;
  height: 40px;
}
.chat-wrapper .chat-join .form-control,
.chat-wrapper .chat-expand .form-control,
.chat-wrapper .chat-footer .form-control {
  height: 40px;
}
.chat-wrapper .chat-state {
  display: none;
}
.chat-wrapper .chat-state.show {
  display: block;
}

.message--history {
  margin: 1rem 0;
  border: 1px solid darkgray;
  border-radius: 1rem;
  padding: 0.25rem 1rem;
}
.message--history p.name span {
  color: #000;
}
.message--history.msg1 p.name {
  color: #e056fd;
}
.message--history.msg2 p.name {
  color: #686de0;
}
.message--history.msg3 p.name {
  color: #badc58;
}
.message--history.msg4 p.name {
  color: #6ab04c;
}
.message--history.msg5 p.name {
  color: #f0932b;
}
.message--history.msg6 p.name {
  color: #be2edd;
}
.message--history.msg7 p.name {
  color: #7ed6df;
}
.message--history.msg8 p.name {
  color: #7ed6df;
}
.message--history.msg9 p.name {
  color: #f9ca24;
}
.message--history.mod p.name {
  color: var(--chat-moderator-nickname-color);
  font-weight: bold;
}
.message--history span.date {
  font-size: 0.625rem;
}

.chat-poll__icon {
  border: 2px solid white !important;
  border-radius: 50%;
  padding: 0.5rem;
}
.chat-poll__icon img {
  width: 32px;
  height: 32px;
  padding: 4px;
}
.chat-poll__modal {
  display: flex;
  z-index: 4;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.chat-poll__modal .card {
  width: 70%;
  max-width: 640px;
  max-height: 80vh;
  overflow: hidden;
}
.chat-poll__modal .card .card-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-poll__modal .card .card-body h4 img {
  height: 24px;
  width: 24px;
  margin-bottom: 6px;
  margin-right: 8px;
}
.chat-poll__modal .card .card-body ul {
  overflow: auto;
}
.chat-poll__modal .card .card-body ul li {
  cursor: pointer;
}
.chat-poll__modal .card .card-body ul li p {
  border-radius: 20px;
}
.chat-poll__modal .card .card-body ul li p:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.chat-poll__modal .card .card-body button {
  color: black;
  text-shadow: 1px 1px 2px #e7e7e7;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
}
.chat-poll__results-modal {
  display: flex;
  z-index: 3;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.chat-poll__results-modal .card {
  width: 70%;
  max-width: 640px;
  max-height: 80vh;
  overflow: hidden;
}
.chat-poll__results-modal .card .card-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.chat-poll__results-modal .card .card-body h4 img {
  height: 24px;
  width: 24px;
  margin-bottom: 6px;
  margin-right: 8px;
}
.chat-poll__results-modal .card .card-body ul {
  overflow: auto;
}
.chat-poll__results-modal .card .card-body ul li {
  margin-bottom: 24px;
}
.chat-poll__results-modal .card .card-body ul li p {
  margin-bottom: 4px;
}
.chat-poll__results-modal .card .card-body ul li .bar {
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.075);
  height: 8px;
  width: 100%;
}
.chat-poll__results-modal .card .card-body ul li .bar .value {
  border-radius: 8px;
  background-color: var(--base-color);
  transition: width 1s ease-in-out;
  height: 100%;
}
.chat-poll__results-modal .card .card-body button {
  color: black;
  text-shadow: 1px 1px 2px #e7e7e7;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.reaction-overlay {
  position: fixed;
  width: 20vw;
  height: 100%;
  right: 0;
  pointer-events: none;
}
.reaction-overlay__emojis {
  position: relative;
}
@keyframes emoji {
  0% {
    transform: translateY(140vh) translateX(var(--width));
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: translateY(-40vh) translateX(var(--width));
    opacity: 0;
  }
}
.reaction-overlay__emojis.hide .emoji {
  animation: none !important;
  animation-play-state: initial;
  opacity: 0;
}
.reaction-overlay__emojis .emoji {
  top: -20vh;
  position: absolute;
  animation-timing-function: linear;
}
.reaction-overlay__emojis .emoji.s {
  font-size: 20px;
  animation: emoji 4s normal;
  animation-timing-function: linear;
}
.reaction-overlay__emojis .emoji.s.s-1 {
  --width: 40vh;
  animation-delay: 1.7s;
}
.reaction-overlay__emojis .emoji.s.s-2 {
  --width: 5vh;
  animation-delay: 2.7s;
}
.reaction-overlay__emojis .emoji.s.s-3 {
  --width: 0vh;
  animation-delay: 3.1s;
}
.reaction-overlay__emojis .emoji.s.s-4 {
  --width: 5vh;
  animation-delay: 4.2s;
}
.reaction-overlay__emojis .emoji.s.s-5 {
  --width: 10vh;
  animation-delay: 5.5s;
}
.reaction-overlay__emojis .emoji.s.s-6 {
  --width: 8vh;
  animation-delay: 6s;
}
.reaction-overlay__emojis .emoji.s.s-7 {
  --width: 12vh;
  animation-delay: 4.7s;
}
.reaction-overlay__emojis .emoji.s.s-8 {
  --width: 25vh;
  animation-delay: 6;
}
.reaction-overlay__emojis .emoji.s.s-9 {
  --width: 2vh;
  animation-delay: 2.4s;
}
.reaction-overlay__emojis .emoji.s.s-10 {
  --width: 9vh;
  animation-delay: 4s;
}
.reaction-overlay__emojis .emoji.s.s-11 {
  --width: 20vh;
  animation-delay: 5.7s;
}
.reaction-overlay__emojis .emoji.s.s-12 {
  --width: 10vh;
  animation-delay: 1.5s;
}
.reaction-overlay__emojis .emoji.m {
  font-size: 40px;
  animation: emoji 6s normal;
  animation-timing-function: linear;
}
.reaction-overlay__emojis .emoji.m.m-1 {
  --width: 25vh;
  animation-delay: 0.7s;
}
.reaction-overlay__emojis .emoji.m.m-2 {
  --width: 5vh;
  animation-delay: 1.7s;
}
.reaction-overlay__emojis .emoji.m.m-3 {
  --width: 15vh;
  animation-delay: 2.7s;
}
.reaction-overlay__emojis .emoji.m.m-4 {
  --width: 20vh;
  animation-delay: 3.7s;
}
.reaction-overlay__emojis .emoji.m.m-5 {
  --width: 15vh;
  animation-delay: 4.7s;
}
.reaction-overlay__emojis .emoji.m.m-6 {
  --width: 40vh;
  animation-delay: 5.7s;
}
.reaction-overlay__emojis .emoji.l {
  font-size: 80px;
  animation: emoji 6s normal;
  animation-timing-function: linear;
}
.reaction-overlay__emojis .emoji.l.l-1 {
  --width: 5vh;
  animation-delay: 0s;
}
.reaction-overlay__emojis .emoji.l.l-2 {
  --width: 0vh;
  animation-delay: 0.75s;
}
.reaction-overlay__emojis .emoji.l.l-3 {
  --width: 25vh;
  animation-delay: 1.5s;
}
.reaction-overlay__emojis .emoji.l.l-4 {
  --width: 10vh;
  animation-delay: 2.5s;
}
.reaction-overlay__emojis .emoji.l.l-5 {
  --width: 35vh;
  animation-delay: 3.5s;
}
.reaction-overlay__emojis .emoji.l.l-6 {
  --width: 20vh;
  animation-delay: 4.5s;
}
.reaction-overlay__emojis .emoji.l.l-7 {
  --width: 15vh;
  animation-delay: 5.5s;
}
.reaction-overlay__emojis .emoji.l.l-8 {
  --width: 30vh;
  animation-delay: 6s;
}

.detail-wrapper {
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.detail-wrapper--cart {
  overflow-y: auto;
}
.detail-wrapper--cart .cart__title {
  margin-bottom: 2rem;
}
.detail-wrapper--cart .cart__empty {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.detail-wrapper--cart .cart__empty__text {
  margin: 0 0 0 1rem;
}
.detail-wrapper--cart .cart__empty::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  top: -1rem;
  height: 1px;
  background: linear-gradient(left, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.75) 50%, hsla(0, 0%, 0%, 0) 100%);
}
.detail-wrapper--cart .cart__products {
  padding: 0;
}
.detail-wrapper--cart .cart__products__item {
  padding: 0.5rem;
}
.detail-wrapper--cart .cart__button {
  margin-top: 1rem;
  width: 100%;
  margin-bottom: calc(1rem + 18vw);
}
@media (max-width: 768px) {
  .detail-wrapper--cart .cart__button {
    margin-bottom: calc(1rem + 33.75vw);
  }
}
.detail-wrapper--cart .cart-item {
  position: relative;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 16px;
  margin-bottom: 0.5rem;
}
.detail-wrapper--cart .cart-item img {
  height: 96px;
  max-height: 96px;
  width: 96px;
  max-width: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-wrapper--cart .cart-item .col {
  padding: 0.5rem 1rem;
}
.detail-wrapper--cart .cart-item .col h6 {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2rem;
}
.detail-wrapper--cart .cart-item__pricing p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2rem;
}
.detail-wrapper--cart .cart-item__pricing p span {
  font-size: 11px;
  font-weight: 300;
  color: #76838f;
  text-decoration: line-through;
}
.detail-wrapper--cart .cart-item__button--remove {
  font-size: 20px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}
.detail-wrapper--product {
  overflow-y: auto;
  padding-bottom: calc(1rem + 18vw);
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.detail-wrapper--product::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .detail-wrapper--product {
    padding-bottom: calc(1rem + 33.75vw);
  }
}
.detail-wrapper--product .product__image {
  height: 40%;
  max-height: 200px;
  min-height: 100px;
}
.detail-wrapper--product .product__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.detail-wrapper--product .product__button {
  width: 100%;
  margin-bottom: 0.5rem;
}
.detail-wrapper--product .product__button i {
  margin-right: 0.5rem;
}
.detail-wrapper--product .product__col {
  padding: 1rem 0.5rem 1rem;
}
.detail-wrapper--product .product__col h6 {
  font-size: 32px;
  font-weight: bold;
}
.detail-wrapper--product .product__pricing p {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2rem;
}
.detail-wrapper--product .product__pricing p span {
  font-size: 16px;
  font-weight: 300;
  color: #76838f;
  text-decoration: line-through;
}
.detail-wrapper--product .product__description ul {
  list-style-type: disc;
}
.detail-wrapper--product .product__description ol {
  list-style-type: decimal;
}

.share-dialog {
  width: 95%;
  max-width: 550px;
  z-index: -1;
  border: 0px solid #ddd;
  padding: 20px;
  border-radius: 16px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease 0s;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.share-dialog svg {
  width: 60px;
  height: 60px;
}
.share-dialog .hidden {
  display: none;
}
.share-dialog__title {
  font-weight: 600;
}
.share-dialog__close {
  background-color: white;
  width: 30px;
  height: 30px;
}
.share-dialog__close:focus {
  border: none;
  outline: none;
}
.share-dialog__close svg {
  width: 30px;
  height: 30px;
}
.share-dialog__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.share-dialog__targets {
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 20px;
}
.share-dialog__targets__item {
  background-color: white;
  height: 130px;
  flex-grow: 1;
  border-radius: 0px;
  cursor: pointer;
  border: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
}
.share-dialog__targets__item:focus {
  border: none;
  outline: none;
}
.share-dialog__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background-color: #eee;
}
.share-dialog__link__button {
  background-color: var(--base-color);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
}
.share-dialog__link__button:focus {
  border: none;
  outline: none;
}
.share-dialog.is-open {
  z-index: 4;
  opacity: 1;
  pointer-events: initial;
}
.share-dialog #emailButtonShare {
  fill: var(--base-color);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #f9fafb !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 0;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
}

.flex-grow {
  flex-grow: 1;
}

.tip {
  position: relative;
}
.tip__text {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.tip:hover .tip__text {
  visibility: visible;
}

html,
body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

body {
  position: relative;
}

.nav-link {
  cursor: pointer !important;
}

img {
  pointer-events: none !important;
  -webkit-touch-callout: none;
}

[id^=player] video {
  transform: none !important;
  background-color: black !important;
}

button:focus {
  outline: none;
}

body {
  height: 100vh;
  height: -webkit-fill-available;
  overflow-y: hidden;
}

html {
  overflow-y: hidden;
  height: -webkit-fill-available;
}

.page-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.page-content-detail {
  box-sizing: border-box;
  flex-grow: 1;
  flex: 1;
  display: flex;
  height: calc(100% - 32px);
}

.main-wrapper {
  height: 100vh;
  height: -webkit-fill-available;
  font-family: "Nunito", sans-serif !important;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  overflow: hidden;
  overscroll-behavior-y: none;
}
.main-wrapper .page-wrapper {
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  flex: 1;
  overscroll-behavior-y: none;
  position: relative;
  transition: margin 0.1s ease, width 0.1s ease;
  width: 100%;
  height: 100%;
}
.main-wrapper .page-wrapper .page-content {
  box-sizing: border-box;
  flex-grow: 1;
  flex: 1;
  height: 100vh;
  padding: 0;
  z-index: 1;
}
@media (max-width: 599px), (max-height: 599px) {
  .main-wrapper .page-wrapper .page-content {
    height: calc(100vh - 48px - 32px);
    padding-bottom: 3rem;
  }
}
.main-wrapper .page-wrapper .page-content .empty-prompt {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  color: rgba(18, 18, 18, 0.9);
  padding: 32px;
  text-align: center;
}
.main-wrapper .page-wrapper nav.navbar {
  height: 60px;
  z-index: 1;
}
@media (max-width: 599px), (max-height: 599px) {
  .main-wrapper .page-wrapper nav.navbar {
    height: 48px;
  }
}
.main-wrapper .page-wrapper nav.navbar .navbar-content {
  display: flex;
  height: 100%;
}
.main-wrapper .page-wrapper nav.navbar .navbar-content .navbar-content-logo {
  display: block;
  height: 100%;
  width: 100%;
}
.main-wrapper .page-wrapper nav.navbar .navbar-content .navbar-content-logo .custom-logo-link {
  display: block;
  height: 100%;
  width: 100%;
}
.main-wrapper .page-wrapper nav.navbar .navbar-content .navbar-content-logo .custom-logo-link .custom-logo {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-wrapper .page-wrapper nav.navbar.simplified {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.main-wrapper .page-wrapper .splide--rooms {
  height: 90%;
}
.main-wrapper .page-wrapper .splide--rooms .splide__track,
.main-wrapper .page-wrapper .splide--rooms .splide__slider {
  height: 100%;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  z-index: 1;
  pointer-events: none;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow {
  background-color: transparent;
  pointer-events: all;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow svg {
  transition: transform ease-in-out 0.3s;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow:focus {
  outline: none;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow:not(:disabled):hover svg {
  transform: scale(1.1);
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow:disabled {
  opacity: 0.3;
}
.main-wrapper .page-wrapper .splide--rooms .splide__arrows > :first-child {
  transform: rotate(180deg);
}
.main-wrapper .page-wrapper .list-streams {
  height: 100%;
  margin: 0;
  padding: 0;
}
.main-wrapper .page-wrapper .list-streams .card-stream {
  border: none;
  border-radius: 16px;
  height: 98%;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.main-wrapper .page-wrapper .list-streams .card-stream:hover {
  cursor: pointer;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-wrapper .page-wrapper .list-streams .card-stream__paused, .main-wrapper .page-wrapper .list-streams .card-stream__live {
  display: none !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--live .card-stream__live {
  display: flex !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--live .card-stream__paused {
  display: none !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--live .card-stream__default {
  display: none !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--paused .card-stream__live {
  display: none !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--paused .card-stream__paused {
  display: flex !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream--paused .card-stream__default {
  display: none !important;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-body {
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  z-index: 1;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-body .card-text-wrapper {
  color: rgba(18, 18, 18, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px 16px;
  min-width: 50%;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-body .card-text-wrapper .card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-body .card-text-wrapper .card-text {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.main-wrapper .page-wrapper .list-streams .card-stream .card-body .join-stream {
  width: 100%;
}

.live {
  align-items: center;
  align-self: center;
  display: flex;
  border: 3px solid rgb(255, 82, 82);
  border-radius: 8px;
  padding: 12px 8px;
  background-color: rgba(255, 255, 255, 0.75);
}
.live__text {
  margin: 0 0 0 10px;
  color: rgb(255, 82, 82);
  line-height: 14px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}
.live__blob {
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgb(0, 0, 0);
  margin: auto 10px;
  height: 15px;
  width: 15px;
}
.live__blob--red {
  background: rgb(255, 82, 82);
  box-shadow: 0 0 0 0 rgb(255, 82, 82);
}

@keyframes pulse-red {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
footer {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: space-between;
  padding: 0.25rem 1rem;
  background-color: #292a2d;
  z-index: 5;
}
@media (max-width: 500px) {
  footer {
    padding: 0.25rem 0.5rem;
  }
}
@media (max-width: 325px) {
  footer {
    justify-content: center;
  }
}
footer .copyright__link, footer .copyright__text {
  font-size: 14px;
  font-weight: 300;
  color: #a5a5a5;
  margin: 0;
}
footer .copyright__link:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 325px) {
  footer .copyright {
    display: none;
  }
}
footer ul.links {
  margin: 0;
  padding: 0;
}
footer ul.links > li {
  display: inline;
  margin-right: 1rem;
}
@media (max-width: 500px) {
  footer ul.links > li {
    margin-right: 0.5rem;
  }
}
footer ul.links > li:last-child {
  margin-right: 0;
}
footer ul.links > li a.footer__link {
  color: #dcdcdc;
  font-size: 14px;
  transition: color ease-in 0.3s;
}
footer ul.links > li a.footer__link:hover {
  color: #fff;
  text-decoration: underline;
}
footer .cookies-notice {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 4;
}
footer .cookies-notice__prompt {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  left: 50%;
  padding: 1rem 2rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 500px) {
  footer .cookies-notice__prompt {
    padding: 1rem;
    width: 80%;
  }
}
footer .cookies-notice__prompt a {
  margin: 0 0 1rem 0;
}
footer .cookies-notice__prompt p {
  margin: 0 0 1rem 0;
}
footer .cookies-notice__prompt__actions {
  display: flex;
  flex-wrap: wrap;
}
footer .cookies-notice__prompt__actions button.btn-primary {
  margin-right: 1rem;
}

.content-home-mobile-overlay {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: hidden;
  height: -webkit-fill-available;
  width: 100%;
  overflow: hidden;
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: none;
}
.content-home-mobile-overlay__color {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.content-home-mobile-overlay .info {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
}
.content-home-mobile-overlay .info p {
  background-color: transparent;
  max-width: 80vw;
  padding: 12px 30px !important;
  margin: 0px !important;
}
@media (max-width: 315px) {
  .content-home-mobile-overlay {
    display: flex;
  }
}
@media (max-height: 240px) {
  .content-home-mobile-overlay {
    display: flex;
  }
}

body {
  min-height: 100vh;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
  }
}
@media only screen and (max-device-width: 480px) {
  body {
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
  }
}
html {
  height: -webkit-fill-available;
}

.room-detail {
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}
.room-detail__error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.room-detail__body {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
}
.room-detail__video {
  flex-grow: 1;
  position: relative;
}
.room-detail__video.frame--full {
  cursor: move;
  position: fixed;
  z-index: 4;
  width: 32vw;
  max-width: 32vw;
  overflow: hidden;
  height: 18vw !important;
  max-height: 18vw;
  margin-bottom: 8px;
  left: 8px;
  border-radius: 16px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image: -webkit-radial-gradient(white, black);
}
@media (max-width: 768px) {
  .room-detail__video.frame--full {
    width: 60vw;
    max-width: 60vw;
    height: 33.75vw !important;
    max-height: 33.75vw;
  }
}
.room-detail__video.frame--full:not(.dragged):not(.resized) {
  transition: all 2s ease 0s;
}
.room-detail__video.frame--full .vjs-tech {
  pointer-events: none;
}
.room-detail__video > video {
  background-color: black;
  height: 100%;
  -o-object-position: center !important;
     object-position: center !important;
  position: absolute !important;
  width: 100%;
}
.room-detail__video .vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.room-detail__btn--cart {
  border: 2px solid white !important;
  border-radius: 50%;
  padding: 0.5rem;
  z-index: 2;
}
.room-detail__btn--cart img {
  width: 32px;
  height: 32px;
}
.room-detail__btn--cart-badge {
  border-radius: 50%;
  position: absolute;
  right: 28px;
  top: 28px;
  font-size: 12px;
  height: 32px;
  width: 32px;
  line-height: 32px;
  overflow: hidden;
  font-weight: bold;
  padding: 0;
  text-align: center;
  visibility: hidden;
}
.room-detail__counter {
  position: absolute;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 400ms ease 100ms;
  z-index: 1;
}
.room-detail__counter.invisible-element-animation .mute-audio-overlay {
  visibility: hidden;
  pointer-events: none !important;
}
.room-detail__counter__start-soon {
  display: none;
  font-size: 40px;
  font-weight: 800;
  color: black;
  opacity: 0.95;
  margin-top: 15px;
}
.room-detail__counter__date {
  margin-top: 25px;
  color: black;
  opacity: 0.95;
  font-weight: 600;
}
.room-detail__counter__toolbar {
  display: flex;
  margin-top: 10px;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
}
.room-detail__counter__calendar {
  color: black;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 0;
}
.room-detail__counter__share {
  color: white;
  background-color: var(--base-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 6px 30px;
  border-radius: 18px;
  margin-top: 10px;
}
.room-detail__counter__share:focus {
  border: none;
  outline: none;
}
.room-detail__counter_body {
  color: rgba(18, 18, 18, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  width: 625px;
  z-index: 2;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 750px) {
  .room-detail__counter_body {
    width: 90%;
  }
}
.room-detail__counter_body h2 {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
}
.room-detail__counter_body--simple {
  position: absolute;
  bottom: 16px;
  z-index: 2;
}
.room-detail__finished {
  flex: 1;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  transition: opacity 400ms ease 100ms;
}
.room-detail__finished__box {
  color: rgba(18, 18, 18, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px 16px;
  position: absolute;
  width: 625px;
  z-index: 2;
  margin-left: auto;
  text-align: center;
  max-width: 90%;
}
@media (max-width: 1100px) {
  .room-detail__finished__box {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.room-detail .full-screen-video-own-stream__video_player {
  background-color: black;
  flex-grow: 1;
  height: 100%;
}
.room-detail .full-screen-video-own-stream__video_player video {
  height: 100%;
  width: 100%;
  position: absolute;
}
.room-detail .room-stream-own-products {
  display: flex;
  flex-direction: column-reverse;
  width: 100vw;
  height: 100%;
  opacity: 0;
  position: absolute;
  z-index: 0;
}
.room-detail__stream_own {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  opacity: 0;
  width: 100vw;
  height: 100%;
  position: relative;
  transition: opacity 400ms ease 100ms;
}
.room-detail__stream_own .video-js {
  background-color: transparent;
}
.room-detail__rightbar {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.room-detail__stream {
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
  width: 100vw;
  opacity: 0;
  position: relative;
}
.room-detail__stream__video {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.room-detail__stream__video.frame--full:not(.frame--finished) {
  cursor: move;
  position: fixed;
  z-index: 4;
  width: 32vw;
  max-width: 32vw;
  overflow: hidden;
  height: 18vw !important;
  max-height: 18vw;
  margin-bottom: 8px;
  left: 8px;
  border-radius: 16px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
          mask-image: -webkit-radial-gradient(white, black);
}
.room-detail__stream__video.frame--full:not(.frame--finished):not(.dragged):not(.resized) {
  transition: all 0.1s ease-in 0s;
}
@media (max-width: 768px) {
  .room-detail__stream__video.frame--full:not(.frame--finished) {
    width: 60vw;
    max-width: 60vw;
    height: 33.75vw !important;
    max-height: 33.75vw;
  }
}
.room-detail__stream__video:not(.frame--full) [id^=player] {
  flex: 1;
}
.room-detail__stream__video:not(.frame--full) [id^=player] video {
  position: fixed !important;
}
.room-detail__stream__chat {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem 0.5rem 0.2rem;
  width: 90%;
  max-width: 400px;
  max-height: 400px;
  z-index: 1;
  height: 60%;
  margin-bottom: 8px;
}
.room-detail__stream__chat.frame--full {
  opacity: 0 !important;
}
.room-detail__stream__featured {
  position: absolute;
  bottom: 0;
  margin-bottom: 16px;
  right: 16px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 991px) {
  .room-detail__stream__featured {
    bottom: unset;
    right: unset;
    top: 5rem;
    right: 16px;
  }
}
.room-detail__stream__featured__content {
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: all;
}
.room-detail__stream__featured__content.show {
  opacity: 1;
}
.room-detail__stream__featured__content .card--featured-product {
  background-color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  color: rgba(18, 18, 18, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  width: 140px;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .room-detail__stream__featured__content .card--featured-product {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .card-body {
    padding: 12px;
  }
}
.room-detail__stream__featured__content .card--featured-product .card-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-right: 1.5rem;
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .card-title {
    padding-right: 0;
  }
}
.room-detail__stream__featured__content .card--featured-product .card-image {
  height: 79.5px;
  width: 106px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .card-image {
    height: 55.5px;
    width: 74px;
  }
}
.room-detail__stream__featured__content .card--featured-product .card-text {
  font-size: 14px;
  font-weight: 600;
  padding-right: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .card-text {
    padding-right: 0;
  }
}
.room-detail__stream__featured__content .card--featured-product .card-text-secondary {
  font-size: 11px;
  font-weight: 300;
  color: #76838f;
  text-decoration: line-through;
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .card-text-secondary {
    display: none;
  }
}
@media (max-width: 991px) {
  .room-detail__stream__featured__content .card--featured-product .button--cart,
  .room-detail__stream__featured__content .card--featured-product .button--heart {
    display: none !important;
  }
}
.room-detail__stream .counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(18, 18, 18, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px 16px;
}
.room-detail__stream__stopped-stream {
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  top: 0;
  left: 0;
  position: absolute;
}
.room-detail__stream__stopped-stream .stream-stopped {
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  color: rgb(18, 18, 18);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 24px 24px;
}
.room-detail__stream__stopped-stream .stream-stopped p {
  margin: 0 !important;
  text-align: center;
}
@media (max-width: 1100px) {
  .room-detail__stream__stopped-stream .stream-stopped {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.splide--products {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  bottom: 0;
  z-index: 1;
  height: 96px;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
}
.splide--products.splide--noarrows .splide__arrows {
  display: none;
}
.splide--products ul {
  height: 100%;
  margin: 0;
  padding: 0;
}
.splide--products ul .card {
  color: rgba(18, 18, 18, 0.9);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
}
.splide--products ul .card-body {
  padding: 0.5rem 1rem;
}
.splide--products ul .card-body > img {
  height: 80px;
  width: 25%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 1rem;
}
.splide--products ul .card--product {
  cursor: pointer;
}
.splide--products ul .card--product .card-row {
  position: relative;
  justify-content: flex-end;
}
.splide--products ul .card--product .card-row button {
  height: 2.25rem;
}
.splide--products ul .card--product .card-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2rem;
}
.splide--products ul .card--product .card-text {
  font-size: 14px;
  font-weight: 600;
}
.splide--products ul .card--product .card-text-secondary {
  font-size: 11px;
  font-weight: 300;
  color: #76838f;
  text-decoration: line-through;
}
.splide--products ul .card--promo .card-title {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 1rem;
  margin-bottom: 0.25rem;
  text-align: center;
}
.splide--products ul .card--promo img {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.splide--products .splide__arrows {
  height: 96px;
  position: fixed;
  width: 100vw;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.splide--products .splide__arrows .splide__arrow {
  background-color: transparent;
  outline: none;
  pointer-events: all;
}
.splide--products .splide__arrows .splide__arrow--prev {
  height: 100%;
  transform: rotate(180deg);
}
.splide--products .splide__arrows .splide__arrow--next {
  height: 100%;
  float: right;
}
.splide--products .splide__track {
  overflow: unset !important;
}
.splide--products .splide__pagination {
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}
.splide--products .splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}
.splide--products .splide__pagination__page {
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9b9b9b;
  margin: 0.2em;
  cursor: pointer;
  display: block;
}
.splide--products .splide__pagination__page.is-active {
  background: #0d6efd;
}

#shopIncludedFrame {
  position: absolute;
  right: 0;
  top: 0;
  height: 0;
  max-height: 75%;
  width: 0;
  max-width: 75%;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0);
  transition: height 600ms ease 0ms, width 600ms ease 0ms;
  background: white;
}
#shopIncludedFrame.frame--full {
  left: 0;
  width: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
#shopIncludedFrame.frame--full .shopIncludedFrame__content {
  padding: 30px 0px 0px 0px;
}
#shopIncludedFrame .shopIncludedFrame__content {
  height: 100%;
  width: 100%;
  padding: 30px 25px 0px 25px;
  z-index: 3;
}
#shopIncludedFrame iframe {
  opacity: 0;
  transition: opacity 1000ms ease 600ms;
}
#shopIncludedFrame .btn--close {
  position: absolute;
  left: -12px;
  bottom: -12px;
  opacity: 0;
}
#shopIncludedFrame .loading-spinner--iframe {
  top: 4px;
  right: 48px;
  position: absolute;
}
@media (min-width: 751px) {
  #shopIncludedFrame {
    bottom: 0;
    top: unset;
    z-index: 3;
    width: 74% !important;
    right: 13%;
    border-radius: 12px 12px 0 0;
  }
  #shopIncludedFrame .btn--close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: unset;
    left: unset;
    border-radius: 12px;
  }
}
@media (max-width: 750px) {
  #shopIncludedFrame {
    width: 86% !important;
    right: 7%;
    bottom: 0;
    z-index: 3;
    top: unset;
    max-width: 86%;
    border-radius: 20px 20px 0 0;
  }
  #shopIncludedFrame .btn--close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: unset;
    left: unset;
    border-radius: 12px;
  }
}
@media (max-width: 500px) {
  #shopIncludedFrame {
    width: 100% !important;
    right: 0;
    z-index: 3;
    top: unset;
    max-width: 100%;
  }
}

.showFrame {
  height: 75% !important;
  width: 568px !important;
}
.showFrame.frame--full {
  left: 0;
  height: 100% !important;
  top: 0;
}
@media (max-width: 2800px) {
  .showFrame {
    width: 568px !important;
    display: block;
    box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.1) !important;
  }
}
.showFrame .btn--close {
  opacity: 1 !important;
}
.showFrame iframe {
  opacity: 1 !important;
}

.showview {
  opacity: 1;
}

.mute-audio-overlay {
  z-index: 3;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  top: 0;
  pointer-events: none;
  transition: all ease-in 0.5s;
}
.mute-audio-overlay img {
  width: 100px;
  height: 100px;
}
.mute-audio-overlay p {
  color: rgb(255, 255, 255);
  font-size: 1.5em;
}

.unmuted-audio {
  opacity: 0;
  transform: scale(1.7);
  pointer-events: none;
}

.muted-audio {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.frame--full .room-detail__finished {
  width: 100% !important;
}

.visible-element-animation {
  opacity: 1 !important;
  transition: opacity ease-in 0.5s, bottom ease-in 0.5s;
}

#shopCartButton {
  opacity: 0;
}

.invisible-element-animation {
  opacity: 0 !important;
  transition: opacity ease-in 0.5s, bottom ease-in 0.5s;
  pointer-events: none !important;
}

.room-stream-loader {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(241, 209, 130);
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  transform-origin: 40px 40px;
}

.lds-heart div {
  top: 32px;
  left: 32px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: #fff;
}

.lds-heart div:before {
  left: -24px;
  border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
  top: -24px;
  border-radius: 50% 50% 0 0;
}

@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}
.video-ascpect-fill video {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  position: fixed !important;
  background-color: black !important;
}

.video-ascpect-fit video {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  position: fixed !important;
  background-color: black !important;
}

.stream-chat--products {
  bottom: 120px !important;
}

.stream-chat--products--frame {
  transition: opacity 400ms ease 100ms;
  opacity: 0 !important;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

.page-404 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 2rem;
  width: 80%;
  left: 10%;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.75);
}/*# sourceMappingURL=home.css.map */