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

.dropdownAnimation {
  -webkit-animation-name: dropdownAnimation;
          animation-name: dropdownAnimation;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOUt;
          animation-name: fadeOUt;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.infinite-spin {
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-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;
  }
}

@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%;
  -webkit-animation: gradient 9s ease-in infinite;
          animation: gradient 9s ease-in infinite;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.active.button--heart:before,
.active.button--heart:after {
  background: red !important;
}

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

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

.btn.btn-front-primary {
  color: #0d6dfd;
  background-color: #db0000;
  border-color: #dc0000;
  color: white;
}

.btn.btn-front-primary:hover {
  background-color: #b81414;
  border-color: #b70b0b;
}

.btn.btn-front-primary:focus {
  background-color: #b81414;
  border-color: #db0000;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(217, 2, 2, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(217, 2, 2, 0.5);
}

.btn.btn-front-info {
  color: #0d6dfd;
  background-color: #007a10;
  border-color: #80ff00;
  color: white;
}

.btn.btn-front-info:hover {
  background-color: #00660e;
  border-color: #4d9900;
}

.btn.btn-front-info:focus {
  background-color: #00660e;
  border-color: #4d9900;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(77, 153, 0, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(77, 153, 0, 0.5);
}

.chat-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.chat-wrapper.blocked .chat-input,
.chat-wrapper.blocked .chat-join,
.chat-wrapper.blocked .chat-nickname {
  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::-webkit-input-placeholder {
  color: rgba(18, 18, 18, 0.6);
}

.chat-wrapper input:-ms-input-placeholder {
  color: rgba(18, 18, 18, 0.6);
}

.chat-wrapper input::-ms-input-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.chat-wrapper.moderator .chat-content .chat-body .messages {
  max-height: unset;
}

.chat-wrapper.moderator .chat-nickname {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.chat-wrapper.moderator .chat-state {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.chat-wrapper.moderator .chat-users {
  border-radius: 0.1875rem;
  background-color: white;
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
}

.chat-wrapper.moderator .chat-users.show {
  display: block;
}

.chat-wrapper.moderator .chat-users .btn--close {
  position: absolute;
  right: 0;
}

.chat-wrapper.moderator .chat-users .cart__title {
  padding: 1rem;
}

.chat-wrapper.moderator .chat-users .inner-content {
  padding: 0 1rem;
}

.chat-wrapper.moderator .chat-users .inner-content ul li {
  padding: .5rem 0;
}

.chat-wrapper.moderator .chat-users .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-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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: 116px;
  -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: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  padding: 0;
  -webkit-transition: opacity ease-in 0.3s;
  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;
  -webkit-transition: opacity ease-in 0.3s;
  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;
  -webkit-box-shadow: 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 {
  font-weight: bold;
}

.chat-wrapper .chat-content .chat-body .messages .message-item .content span.text {
  color: white;
  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: red;
  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;
}

.chat-wrapper .chat-input.show {
  display: block;
}

.chat-wrapper .chat-footer button.rounded-circle {
  width: 40px;
  height: 40px;
}

.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: .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: red;
  font-weight: bold;
}

.message--history span.date {
  font-size: .625rem;
}

.reaction-overlay {
  position: fixed;
  width: 20vw;
  height: 100%;
  right: 0;
}

.reaction-overlay__emojis {
  position: relative;
}

@-webkit-keyframes emoji {
  0% {
    -webkit-transform: translateY(140vh) translateX(var(--width));
            transform: translateY(140vh) translateX(var(--width));
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-40vh) translateX(var(--width));
            transform: translateY(-40vh) translateX(var(--width));
    opacity: 0;
  }
}

@keyframes emoji {
  0% {
    -webkit-transform: translateY(140vh) translateX(var(--width));
            transform: translateY(140vh) translateX(var(--width));
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-40vh) translateX(var(--width));
            transform: translateY(-40vh) translateX(var(--width));
    opacity: 0;
  }
}

.reaction-overlay__emojis.hide .emoji {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-animation-play-state: initial;
          animation-play-state: initial;
  opacity: 0;
}

.reaction-overlay__emojis .emoji {
  top: -10vh;
  position: absolute;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.reaction-overlay__emojis .emoji.s {
  font-size: 20px;
  -webkit-animation: emoji 4s normal;
          animation: emoji 4s normal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.reaction-overlay__emojis .emoji.s.s-1 {
  --width: 40vh;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.reaction-overlay__emojis .emoji.s.s-2 {
  --width: 5vh;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.reaction-overlay__emojis .emoji.s.s-3 {
  --width: 0vh;
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.reaction-overlay__emojis .emoji.s.s-4 {
  --width: 5vh;
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.reaction-overlay__emojis .emoji.s.s-5 {
  --width: 10vh;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.reaction-overlay__emojis .emoji.s.s-6 {
  --width: 8vh;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.reaction-overlay__emojis .emoji.s.s-7 {
  --width: 12vh;
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.reaction-overlay__emojis .emoji.s.s-8 {
  --width: 25vh;
  -webkit-animation-delay: 6;
          animation-delay: 6;
}

.reaction-overlay__emojis .emoji.s.s-9 {
  --width: 2vh;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.reaction-overlay__emojis .emoji.s.s-10 {
  --width: 9vh;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.reaction-overlay__emojis .emoji.s.s-11 {
  --width: 20vh;
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

.reaction-overlay__emojis .emoji.s.s-12 {
  --width: 10vh;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.reaction-overlay__emojis .emoji.m {
  font-size: 40px;
  -webkit-animation: emoji 6s normal;
          animation: emoji 6s normal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.reaction-overlay__emojis .emoji.m.m-1 {
  --width: 25vh;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.reaction-overlay__emojis .emoji.m.m-2 {
  --width: 5vh;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.reaction-overlay__emojis .emoji.m.m-3 {
  --width: 15vh;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.reaction-overlay__emojis .emoji.m.m-4 {
  --width: 20vh;
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.reaction-overlay__emojis .emoji.m.m-5 {
  --width: 15vh;
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.reaction-overlay__emojis .emoji.m.m-6 {
  --width: 40vh;
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
}

.reaction-overlay__emojis .emoji.l {
  font-size: 80px;
  -webkit-animation: emoji 6s normal;
          animation: emoji 6s normal;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.reaction-overlay__emojis .emoji.l.l-1 {
  --width: 5vh;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.reaction-overlay__emojis .emoji.l.l-2 {
  --width: 0vh;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.reaction-overlay__emojis .emoji.l.l-3 {
  --width: 25vh;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.reaction-overlay__emojis .emoji.l.l-4 {
  --width: 10vh;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.reaction-overlay__emojis .emoji.l.l-5 {
  --width: 35vh;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.reaction-overlay__emojis .emoji.l.l-6 {
  --width: 20vh;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.reaction-overlay__emojis .emoji.l.l-7 {
  --width: 15vh;
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.reaction-overlay__emojis .emoji.l.l-8 {
  --width: 30vh;
  -webkit-animation-delay: 6s;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(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;
}

.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: .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;
}

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

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

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          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 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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 {
  -webkit-transform: none !important;
          transform: none !important;
}

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;
}

.page-content-detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex: 1;
      flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-wrapper {
  height: 100vh;
  height: -webkit-fill-available;
  font-family: "Nunito", sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 320px;
  overflow: hidden;
  overscroll-behavior-y: none;
}

.main-wrapper .page-wrapper {
  background: #f9fafb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overscroll-behavior-y: none;
  position: relative;
  -webkit-transition: margin 0.1s ease, width 0.1s ease;
  transition: margin 0.1s ease, width 0.1s ease;
  width: 100%;
}

.main-wrapper .page-wrapper .page-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex: 1;
      flex: 1;
  height: calc(100vh - 60px);
  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%;
  -webkit-transform: translate(-50%, -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: -webkit-box;
  display: -ms-flexbox;
  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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px;
  z-index: 1;
}

.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow {
  background-color: transparent;
}

.main-wrapper .page-wrapper .splide--rooms .splide__arrows .splide__arrow svg {
  -webkit-transition: -webkit-transform ease-in-out 0.3s;
  transition: -webkit-transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s;
  transition: transform ease-in-out 0.3s, -webkit-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 {
  -webkit-transform: scale(1.1);
          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 {
  -webkit-transform: rotate(180deg);
          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;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.main-wrapper .page-wrapper .list-streams .card-stream:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
          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 .card-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #ff5252;
  border-radius: 8px;
  padding: 12px 8px;
  background-color: rgba(255, 255, 255, 0.75);
}

.live__text {
  margin: 0 0 0 10px;
  color: #ff5252;
  line-height: 14px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}

.live__blob {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 black;
          box-shadow: 0 0 0 0 black;
  margin: auto 10px;
  height: 15px;
  width: 15px;
}

.live__blob--red {
  background: #ff5252;
  -webkit-box-shadow: 0 0 0 0 #ff5252;
          box-shadow: 0 0 0 0 #ff5252;
}

@-webkit-keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes pulse-red {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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;
  -webkit-transition: color ease-in 0.3s;
  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;
  -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 50%;
  padding: 1rem 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  background-color: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.3);
          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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-height: 240px) {
  .content-home-mobile-overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.room-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.room-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.room-detail__video {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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) {
  -webkit-transition: all 2s ease 0s;
  transition: all 2s ease 0s;
}

.room-detail__video > video {
  background-color: black;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  width: 100%;
}

.room-detail__btn--cart {
  border: 2px solid white !important;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  padding: 0.5rem;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 400ms ease 100ms;
  transition: opacity 400ms ease 100ms;
}

.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_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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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__finished {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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__stream {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100vw;
  opacity: 0;
  position: relative;
  -webkit-transition: opacity 400ms ease 100ms;
  transition: opacity 400ms ease 100ms;
}

.room-detail__stream__video {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex: 1;
      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) {
  -webkit-transition: all 0.1s ease-in 0s;
  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"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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%;
}

.room-detail__stream__chat.frame--full {
  opacity: 0 !important;
}

.room-detail__stream .counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-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: 0%;
  z-index: 0;
}

.room-detail__stream__stopped-stream .stream-stopped {
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #121212;
  -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: 3;
  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--product {
  cursor: pointer;
}

.splide--products ul .card--product img {
  height: 80px;
  width: 25%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 1rem;
}

.splide--products ul .card--product .card-row {
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          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%;
  -webkit-transform: rotate(180deg);
          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%;
  -webkit-box-shadow: 0 -5px 5px rgba(0, 0, 0, 0);
          box-shadow: 0 -5px 5px rgba(0, 0, 0, 0);
  -webkit-transition: height 600ms ease 0ms, width 600ms ease 0ms;
  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;
}

#shopIncludedFrame iframe {
  opacity: 0;
  -webkit-transition: opacity 1000ms ease 600ms;
  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;
    -webkit-box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.1) !important;
            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);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}

.mute-audio-overlay img {
  width: 100px;
  height: 100px;
}

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

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

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

.page-404 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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 */