/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
/*
 * Box Shadow
 */
/*
 * Fonts
 */
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* *** TRANSFORM
============================================================================ */
/* *** SIZE
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
.video-card a.video-wrapper,
.short-card a.video-wrapper,
.clip-card a.video-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  cursor: pointer;
}
.video-card .video-poster,
.short-card .video-poster,
.clip-card .video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-card .play-button,
.short-card .play-button,
.clip-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.video-card .play-button:hover,
.short-card .play-button:hover,
.clip-card .play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.video-card .play-button::before,
.short-card .play-button::before,
.clip-card .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.video-card .watched-icon,
.short-card .watched-icon,
.clip-card .watched-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-card .watched-icon i,
.short-card .watched-icon i,
.clip-card .watched-icon i {
  color: white;
  font-size: 12px;
}
.video-card .video-duration,
.short-card .video-duration,
.clip-card .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 3;
}
.video-card .progress-bar,
.short-card .progress-bar,
.clip-card .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}
.video-card .progress-bar .progress-fill,
.short-card .progress-bar .progress-fill,
.clip-card .progress-bar .progress-fill {
  height: 100%;
  background-color: #EB212E;
  width: 0%;
  transition: width 0.3s ease;
}
.video-card .video-info,
.short-card .video-info,
.clip-card .video-info {
  position: relative;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.video-card .video-info a,
.short-card .video-info a,
.clip-card .video-info a {
  text-decoration: none;
}
.video-card .video-info .avatar-wrap,
.short-card .video-info .avatar-wrap,
.clip-card .video-info .avatar-wrap {
  flex-shrink: 0;
}
.video-card .video-info .avatar-wrap .avatar,
.short-card .video-info .avatar-wrap .avatar,
.clip-card .video-info .avatar-wrap .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.video-card .video-info .video-content,
.short-card .video-info .video-content,
.clip-card .video-info .video-content {
  flex: 1;
  min-width: 0;
  padding-right: 30px;
}
.video-card .video-info .video-content .video-title,
.short-card .video-info .video-content .video-title,
.clip-card .video-info .video-content .video-title {
  font-size: 16px;
  font-weight: bold;
  color: #1A1A1A;
  margin: 0 0 4px 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card .video-info .video-content .name-block,
.short-card .video-info .video-content .name-block,
.clip-card .video-info .video-content .name-block {
  margin-bottom: 2px;
}
.video-card .video-info .video-content .name-block .name,
.short-card .video-info .video-content .name-block .name,
.clip-card .video-info .video-content .name-block .name {
  font-size: 14px;
  color: gray;
  font-weight: 500;
}
.video-card .video-info .video-content .views-and-date,
.short-card .video-info .video-content .views-and-date,
.clip-card .video-info .video-content .views-and-date {
  font-size: 12px;
  color: #8C8C8C;
  line-height: 1.2;
}
.video-card .video-info .video-status,
.short-card .video-info .video-status,
.clip-card .video-info .video-status {
  font-size: 14px;
  color: #1A1A1A;
  margin: 4px 0 0 0;
}
.video-card .video-info .floating-menu-holder,
.short-card .video-info .floating-menu-holder,
.clip-card .video-info .floating-menu-holder {
  right: 10px;
  top: 10px;
}
.video-card .video-info .floating-menu-holder.post-floating-menu .toggle,
.short-card .video-info .floating-menu-holder.post-floating-menu .toggle,
.clip-card .video-info .floating-menu-holder.post-floating-menu .toggle {
  margin: 0;
}
.video-card .video-info .floating-menu-holder.post-floating-menu .toggle i,
.short-card .video-info .floating-menu-holder.post-floating-menu .toggle i,
.clip-card .video-info .floating-menu-holder.post-floating-menu .toggle i {
  transform: rotate(0deg);
}
.video-card-horizontal {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.video-card-horizontal:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.video-card-horizontal a.video-wrapper {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
}
.video-card-horizontal .video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-card-horizontal .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.video-card-horizontal .play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.video-card-horizontal .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 15px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.video-card-horizontal .watched-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-card-horizontal .watched-icon i {
  color: white;
  font-size: 12px;
}
.video-card-horizontal .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 3;
}
.video-card-horizontal .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}
.video-card-horizontal .progress-bar .progress-fill {
  height: 100%;
  background-color: #EB212E;
  width: 0%;
  transition: width 0.3s ease;
}
.video-card-horizontal .video-info {
  position: relative;
  padding: 10px;
  flex: 1;
}
.video-card-horizontal .video-info a {
  text-decoration: none;
}
.video-card-horizontal .video-info .video-content {
  width: 100%;
  padding-right: 30px;
}
.video-card-horizontal .video-info .video-content .video-title {
  font-size: 14px;
  font-weight: bold;
  color: #1A1A1A;
  margin: 0 0 4px 0;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card-horizontal .video-info .video-content .name-block {
  margin-bottom: 2px;
}
.video-card-horizontal .video-info .video-content .name-block .name {
  font-size: 14px;
  color: gray;
  font-weight: 500;
}
.video-card-horizontal .video-info .video-content .views-and-date {
  font-size: 12px;
  color: #8C8C8C;
  line-height: 1.2;
}
.video-card-horizontal .video-info .video-status {
  font-size: 14px;
  color: #1A1A1A;
  margin: 4px 0 0 0;
}
.video-card-horizontal .video-info .floating-menu-holder {
  right: 10px;
  top: 10px;
}
.video-card-horizontal .video-info .floating-menu-holder.post-floating-menu .toggle {
  margin: 0;
}
.video-card-horizontal .video-info .floating-menu-holder.post-floating-menu .toggle i {
  transform: rotate(0deg);
}
.video-card-list {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s ease;
  position: relative;
  min-height: 60px;
  padding: 8px;
}
.video-card-list:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.video-card-list .row-move:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.video-card-list a.video-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
}
.video-card-list .video-poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-card-list .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.video-card-list .play-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.video-card-list .play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}
.video-card-list .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
}
.video-card-list .progress-bar .progress-fill {
  height: 100%;
  background-color: #EB212E;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 0 0 8px 0;
}
.video-card-list .video-info {
  flex: 1;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.video-card-list .video-info a {
  text-decoration: none;
}
.video-card-list .video-info .video-content {
  width: 100%;
  padding-right: 30px;
}
.video-card-list .video-info .video-content .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 4px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card-list .video-info .video-content .video-duration {
  font-size: 12px;
  color: #8C8C8C;
  font-weight: 500;
  margin: 0;
  position: static;
  background: none;
  padding: 0;
  border-radius: 0;
}
.video-card-list .video-info .floating-menu-holder {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.video-card-list .video-info .floating-menu-holder.post-floating-menu .toggle {
  margin: 0;
}
.video-card-list .video-info .floating-menu-holder.post-floating-menu .toggle i {
  transform: rotate(0deg);
}
.video-card-hidden {
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.video-card-hidden .floating-menu-holder {
  right: 10px;
  top: 10px;
}
.video-card-hidden .floating-menu-holder.post-floating-menu .toggle {
  margin: 0;
}
.video-card-hidden .floating-menu-holder.post-floating-menu .toggle i {
  transform: rotate(0deg);
}
.clip-card a.video-wrapper,
.short-card a.video-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
/*
 * Box Shadow
 */
/*
 * Fonts
 */
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* *** TRANSFORM
============================================================================ */
/* *** SIZE
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
.collection-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.collection-card a.collection-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.collection-card a.collection-wrapper .collection-poster {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.collection-card a.collection-wrapper .collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.collection-card a.collection-wrapper .collection-overlay .collection-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.collection-card a.collection-wrapper .collection-overlay .collection-icon i {
  font-size: 2rem;
  color: #666;
}
.collection-card a.collection-wrapper:hover .collection-poster {
  transform: scale(1.05);
}
.collection-card a.collection-wrapper:hover .collection-overlay {
  opacity: 1;
}
.collection-card a.collection-wrapper:hover .collection-overlay .collection-icon {
  transform: scale(1);
}
.collection-card .collection-info {
  position: relative;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.collection-card .collection-info .avatar-wrap {
  flex-shrink: 0;
}
.collection-card .collection-info .avatar-wrap .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.collection-card .collection-info .collection-content {
  flex: 1;
  min-width: 0;
}
.collection-card .collection-info .collection-content .collection-title {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 6px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.collection-card .collection-info .collection-content .collection-title:hover {
  color: #EB212E;
}
.collection-card .collection-info .collection-content .name-block {
  margin-bottom: 4px;
}
.collection-card .collection-info .collection-content .name-block .name {
  font-size: 14px;
  color: #8C8C8C;
  font-weight: 500;
  text-decoration: none;
}
.collection-card .collection-info .collection-content .name-block .name:hover {
  color: #EB212E;
}
.collection-card .collection-info .collection-content .subscribers-count {
  font-size: 12px;
  color: #8C8C8C;
  line-height: 1.2;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }
  .collection-card .collection-info {
    padding: 10px;
  }
  .collection-card .collection-info .collection-content .collection-title {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .collection-card .collection-overlay .collection-icon {
    width: 60px;
    height: 60px;
  }
  .collection-card .collection-overlay .collection-icon i {
    font-size: 1.5rem;
  }
}

/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
/*
 * Box Shadow
 */
/*
 * Fonts
 */
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* *** TRANSFORM
============================================================================ */
/* *** SIZE
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
.video-player {
  position: relative;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  cursor: pointer;
  display: block;
}
.video-player .video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-player .video-controls .progress-bar {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  height: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: height 0.2s ease;
  margin-bottom: 5px;
}
.video-player .video-controls .progress-bar:hover {
  height: 8px;
}
.video-player .video-controls .progress-bar .progress-filled {
  background-color: #EB212E;
  height: 100%;
  width: 0;
  transition: width 0.5s;
  border-radius: 3px;
}
.video-player .video-controls .time {
  color: white;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.video-player .video-controls .controls-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.video-player .video-controls > div:not(.progress-bar):not(.time) {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.video-player .video-controls .right-controls {
  flex-grow: 1;
  justify-content: flex-end;
}
.video-player .video-controls .skip-back button,
.video-player .video-controls .play-pause button,
.video-player .video-controls .skip-ahead button,
.video-player .video-controls .previous button,
.video-player .video-controls .next button,
.video-player .video-controls .fullscreen button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.video-player .video-controls .skip-back button:hover,
.video-player .video-controls .play-pause button:hover,
.video-player .video-controls .skip-ahead button:hover,
.video-player .video-controls .previous button:hover,
.video-player .video-controls .next button:hover,
.video-player .video-controls .fullscreen button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.video-player .video-controls .skip-back button:active,
.video-player .video-controls .play-pause button:active,
.video-player .video-controls .skip-ahead button:active,
.video-player .video-controls .previous button:active,
.video-player .video-controls .next button:active,
.video-player .video-controls .fullscreen button:active {
  transform: translateY(0);
}
.video-player .video-controls .skip-back button i,
.video-player .video-controls .play-pause button i,
.video-player .video-controls .skip-ahead button i,
.video-player .video-controls .previous button i,
.video-player .video-controls .next button i,
.video-player .video-controls .fullscreen button i {
  font-size: 12px;
}
.video-player .video-controls .play-pause button {
  background: #EB212E;
  border-color: #EB212E;
  padding: 10px 15px;
  font-weight: bold;
}
.video-player .video-controls .play-pause button:hover {
  background: #c7121e;
  border-color: #c7121e;
}
.video-player .video-controls .autoplay-toggle label {
  color: white;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 0;
  gap: 6px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.video-player .video-controls .autoplay-toggle label input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.video-player .video-controls .autoplay-toggle label input[type="checkbox"]:checked {
  background: #EB212E;
  border-color: #EB212E;
}
.video-player .video-controls .autoplay-toggle label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 1px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.video-player .video-controls .autoplay-toggle label input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, 0.8);
}
.video-player .video-controls > div:last-child {
  display: flex;
  align-items: center;
}
.video-player .video-controls > div:last-child .skip-back:first-of-type ~ *,
.video-player .video-controls > div:last-child .play-pause:first-of-type ~ *,
.video-player .video-controls > div:last-child .skip-ahead:first-of-type ~ *,
.video-player .video-controls > div:last-child .previous:first-of-type ~ *,
.video-player .video-controls > div:last-child .next:first-of-type ~ * {
  margin-left: 8px;
}
.video-player .video-controls > div:last-child .previous {
  margin-right: 4px;
}
.video-player .video-controls > div:last-child .skip-back {
  margin-right: 8px;
}
.video-player .video-controls > div:last-child .play-pause {
  margin-right: 8px;
}
.video-player .video-controls > div:last-child .skip-ahead {
  margin-right: 8px;
}
.video-player .video-controls > div:last-child .autoplay-toggle {
  margin-left: auto;
  margin-right: 8px;
}
.video-player .video-controls > div:last-child > div {
  display: flex;
  align-items: center;
}
.video-player.controls-visible .video-controls {
  opacity: 1;
}
@media (hover: none) and (pointer: coarse) {
  .video-player .video-controls {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .video-player .video-controls {
    padding: 8px 6px;
    gap: 6px;
  }
  .video-player .video-controls .progress-bar {
    height: 8px;
    margin-bottom: 6px;
  }
  .video-player .video-controls .progress-bar:hover {
    height: 8px;
  }
  .video-player .video-controls .controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 4px;
  }
  .video-player .video-controls .controls-row .time {
    font-size: 10px;
    margin-bottom: 0;
    margin-right: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .video-player .video-controls .controls-row .left-controls,
  .video-player .video-controls .controls-row .right-controls {
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .video-player .video-controls .controls-row .left-controls {
    flex-shrink: 1;
  }
  .video-player .video-controls .controls-row .right-controls {
    flex-shrink: 0;
  }
  .video-player .video-controls .skip-back button,
  .video-player .video-controls .play-pause button,
  .video-player .video-controls .skip-ahead button,
  .video-player .video-controls .previous button,
  .video-player .video-controls .next button,
  .video-player .video-controls .fullscreen button {
    padding: 5px 7px;
    font-size: 11px;
    border-radius: 4px;
    min-height: 30px;
    min-width: 30px;
  }
  .video-player .video-controls .skip-back button i,
  .video-player .video-controls .play-pause button i,
  .video-player .video-controls .skip-ahead button i,
  .video-player .video-controls .previous button i,
  .video-player .video-controls .next button i,
  .video-player .video-controls .fullscreen button i {
    font-size: 10px;
  }
  .video-player .video-controls .play-pause button {
    padding: 6px 9px;
    min-width: 34px;
    min-height: 34px;
  }
  .video-player .video-controls .autoplay-toggle label {
    font-size: 10px;
    gap: 3px;
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"] {
    width: 13px;
    height: 13px;
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"]:checked::after {
    font-size: 9px;
    top: -2px;
    left: 0px;
  }
  .video-player .video-controls > div:last-child .previous {
    margin-right: 0;
  }
  .video-player .video-controls > div:last-child .skip-back {
    margin-right: 0;
  }
  .video-player .video-controls > div:last-child .play-pause {
    margin-right: 0;
  }
  .video-player .video-controls > div:last-child .skip-ahead {
    margin-right: 0;
  }
  .video-player .video-controls > div:last-child .autoplay-toggle {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 450px) {
  .video-player .video-controls {
    padding: 4px 3px;
    gap: 3px;
  }
  .video-player .video-controls .progress-bar {
    height: 10px;
    margin-bottom: 3px;
  }
  .video-player .video-controls .controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2px;
  }
  .video-player .video-controls .controls-row .time {
    margin-bottom: 0;
    margin-right: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 35px;
  }
  .video-player .video-controls .controls-row .left-controls,
  .video-player .video-controls .controls-row .right-controls {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  .video-player .video-controls .controls-row .left-controls {
    flex-shrink: 1;
  }
  .video-player .video-controls .controls-row .right-controls {
    flex-shrink: 0;
  }
  .video-player .video-controls .skip-back button,
  .video-player .video-controls .play-pause button,
  .video-player .video-controls .skip-ahead button,
  .video-player .video-controls .previous button,
  .video-player .video-controls .next button,
  .video-player .video-controls .fullscreen button {
    padding: 2px 4px;
    font-size: 0;
    min-height: 24px;
    min-width: 24px;
    border-radius: 3px;
  }
  .video-player .video-controls .skip-back button i,
  .video-player .video-controls .play-pause button i,
  .video-player .video-controls .skip-ahead button i,
  .video-player .video-controls .previous button i,
  .video-player .video-controls .next button i,
  .video-player .video-controls .fullscreen button i {
    font-size: 9px;
  }
  .video-player .video-controls .play-pause button {
    padding: 3px 5px;
    min-width: 28px;
    min-height: 28px;
  }
  .video-player .video-controls .play-pause button i {
    font-size: 10px;
  }
  .video-player .video-controls .autoplay-toggle label {
    gap: 0;
  }
  .video-player .video-controls .autoplay-toggle label::after {
    content: '';
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"] {
    width: 10px;
    height: 10px;
    margin: 0;
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"]:checked::after {
    font-size: 7px;
    top: -2px;
    left: -1px;
  }
  .video-player .video-controls > div:last-child .previous,
  .video-player .video-controls > div:last-child .skip-back,
  .video-player .video-controls > div:last-child .play-pause,
  .video-player .video-controls > div:last-child .skip-ahead,
  .video-player .video-controls > div:last-child .next {
    margin-right: 0;
  }
  .video-player .video-controls > div:last-child .autoplay-toggle {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 350px) {
  .video-player .video-controls {
    padding: 4px 2px;
  }
  .video-player .video-controls .controls-row .left-controls,
  .video-player .video-controls .controls-row .right-controls {
    gap: 1px;
  }
  .video-player .video-controls .skip-back button,
  .video-player .video-controls .play-pause button,
  .video-player .video-controls .skip-ahead button,
  .video-player .video-controls .previous button,
  .video-player .video-controls .next button,
  .video-player .video-controls .fullscreen button {
    padding: 2px 4px;
    min-height: 24px;
    min-width: 24px;
    font-size: 0;
  }
  .video-player .video-controls .skip-back button i,
  .video-player .video-controls .play-pause button i,
  .video-player .video-controls .skip-ahead button i,
  .video-player .video-controls .previous button i,
  .video-player .video-controls .next button i,
  .video-player .video-controls .fullscreen button i {
    font-size: 9px;
  }
  .video-player .video-controls .play-pause button {
    padding: 4px 6px;
    min-width: 28px;
    min-height: 28px;
  }
  .video-player .video-controls .autoplay-toggle label {
    font-size: 8px;
  }
  .video-player .video-controls .autoplay-toggle label::after {
    content: 'Auto';
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"] {
    width: 10px;
    height: 10px;
  }
  .video-player .video-controls .autoplay-toggle label input[type="checkbox"]:checked::after {
    font-size: 7px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .video-player .video-controls {
    padding: 6px 8px;
    gap: 4px;
  }
  .video-player .video-controls .progress-bar {
    margin-bottom: 4px;
  }
  .video-player .video-controls .skip-back button,
  .video-player .video-controls .play-pause button,
  .video-player .video-controls .skip-ahead button,
  .video-player .video-controls .previous button,
  .video-player .video-controls .next button,
  .video-player .video-controls .fullscreen button {
    padding: 4px 6px;
    font-size: 11px;
    min-height: 24px;
    min-width: 24px;
  }
  .video-player .video-controls .play-pause button {
    padding: 6px 8px;
    min-width: 28px;
    min-height: 28px;
  }
}

/* Grid widths */
/*
 *  Colors
 *  add custom color variables as needed in marked area
 */
/*
 * Box Shadow
 */
/*
 * Fonts
 */
/* Font Weights */
/*
 *  Widths
 *  add custom widths in marked area below
 */
/* *** TRANSFORM
============================================================================ */
/* *** SIZE
============================================================================ */
/* *** BOX SHADOW
============================================================================ */
.post_short_view .page-wrapper {
  padding: 15px 0;
}
.shorts-view {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 100px);
  padding: 0px;
}
.shorts-view .shorts-main-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 100%;
  align-items: center;
  width: 100%;
}
.shorts-view .shorts-video-row {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
}
.shorts-view .video-container {
  position: relative;
  width: calc((100vh - 150px) * 9/16);
  height: calc(100vh - 110px);
  min-width: 240px;
  min-height: 427px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.shorts-view .video-container .shorts-filters {
  top: -50px;
  left: 0;
  right: 0;
  z-index: 15;
  width: 100%;
}
.shorts-view .video-container .shorts-filters ul {
  margin: 0;
  padding: 0;
  padding-bottom: 5px;
  list-style: none;
  display: flex;
}
.shorts-view .video-container .shorts-filters ul::-webkit-scrollbar {
  height: 4px;
}
.shorts-view .video-container .shorts-filters ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.shorts-view .video-container .shorts-filters ul::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}
.shorts-view .video-container .shorts-filters ul::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.shorts-view .video-container .shorts-filters ul li {
  flex: 0 0 auto;
  margin-right: 10px;
}
.shorts-view .video-container .shorts-filters ul li:last-child {
  margin-right: 0;
}
.shorts-view .video-container .shorts-filters ul li a:active,
.shorts-view .video-container .shorts-filters ul li a:focus {
  background-color: black;
  outline: none;
  box-shadow: none;
}
.shorts-view .video-container .shorts-filters ul li a.active {
  background-color: #EB212E;
  outline: none;
  box-shadow: none;
}
.shorts-view .video-container video {
  width: 100%;
  height: calc(100% - 35px);
  background: #000;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.shorts-view .video-container .controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.shorts-view .video-container .controls .shorts-play-pause {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  pointer-events: auto;
  transform: scale(0.8);
}
.shorts-view .video-container .controls .shorts-play-pause:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
.shorts-view .video-container .controls .shorts-play-pause.show {
  opacity: 1;
  transform: scale(1);
}
.shorts-view .video-container .controls .shorts-play-pause i {
  margin-left: 3px;
}
.shorts-view .video-container .controls .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: auto;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.shorts-view .video-container .controls .progress-bar .progress-filled {
  height: 100%;
  background: #EB212E;
  width: 0%;
  transition: width 0.5s;
}
.shorts-view .video-container .controls .progress-bar:hover {
  height: 6px;
}
.shorts-view .video-container .controls .progress-bar:hover .progress-filled {
  background: #ef505a;
}
.shorts-view .video-container .shorts-mute-toggle {
  position: absolute;
  top: 65px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 15;
}
.shorts-view .video-container .shorts-mute-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
.shorts-view .video-container .shorts-mute-toggle i {
  transition: all 0.2s ease;
}
.shorts-view .video-container .shorts-mute-toggle.muted {
  background: rgba(220, 53, 69, 0.8);
}
.shorts-view .video-container .shorts-mute-toggle.muted:hover {
  background: #dc3545;
}
.shorts-view .mobile-video-details {
  display: none;
}
.shorts-view .video-details {
  position: absolute;
  left: 15px;
  bottom: 35px;
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
}
.shorts-view .video-details .video-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.shorts-view .video-details .video-title .username {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-top: 5px;
}
.shorts-view .video-details .video-caption {
  margin-bottom: 15px;
}
.shorts-view .video-details .video-caption .post-body {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}
.shorts-view .video-details .topics-keywords-row {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic-section,
.shorts-view .video-details .topics-keywords-row .video-keywords-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic-section .section-label,
.shorts-view .video-details .topics-keywords-row .video-keywords-section .section-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic .topic-badge,
.shorts-view .video-details .topics-keywords-row .topic-subtopic .subtopic-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic .topic-badge {
  background-color: #1A1A1A;
  color: #FFF;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic .topic-badge:hover {
  background-color: #c7121e;
  transform: translateY(-1px);
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic .subtopic-badge {
  background-color: #DEDEE5;
  color: #333;
}
.shorts-view .video-details .topics-keywords-row .topic-subtopic .subtopic-badge:hover {
  background-color: #707070;
  color: #FFF;
}
.shorts-view .video-details .topics-keywords-row .video-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shorts-view .video-details .topics-keywords-row .video-keywords .keyword-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #DEDEE5;
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.shorts-view .video-details .topics-keywords-row .video-keywords .keyword-badge:hover {
  background-color: #EB212E;
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.shorts-view .video-details .topics-keywords-row .video-keywords .keyword-badge:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .shorts-view .video-details .topics-keywords-row {
    flex-direction: column;
    gap: 16px;
  }
  .shorts-view .video-details .topics-keywords-row .topic-subtopic-section,
  .shorts-view .video-details .topics-keywords-row .video-keywords-section {
    min-width: 100%;
  }
}
.shorts-view .shorts-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.shorts-view .shorts-actions .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shorts-view .shorts-actions a:not(.floating-menu a) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  border: 2px solid #333;
  transition: all 0.3s ease;
}
.shorts-view .shorts-actions a:not(.floating-menu a):hover {
  background: #333;
  border-color: #555;
  transform: scale(1.1);
}
.shorts-view .shorts-actions a:not(.floating-menu a) i {
  font-size: 18px;
}
.shorts-view .shorts-actions .floating-menu {
  z-index: 170;
}
.shorts-view .shorts-actions .floating-menu .post-emoji i {
  font-style: normal;
  font-size: 18px;
}
.shorts-view .shorts-actions .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: transparent !important;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  margin: 0;
  margin-bottom: 15px;
  transform: none !important;
}
.shorts-view .shorts-actions .avatar:hover {
  background-color: transparent !important;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-color: #333;
  background-size: cover !important;
  background-position: center !important;
}
.shorts-view .shorts-actions .shorts-reaction-score {
  font-size: 18px;
  font-weight: 600;
  color: black;
  text-align: center;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: none;
  border: none;
  text-decoration: none;
}
.shorts-view .shorts-actions .post-like.post-reacted,
.shorts-view .shorts-actions .post-dislike.post-reacted {
  background: #EB212E;
  border-color: #EB212E;
}
.shorts-view .shorts-actions .post-like.post-reacted:hover,
.shorts-view .shorts-actions .post-dislike.post-reacted:hover {
  background: #e6342a;
  border-color: #e6342a;
}
.shorts-view .shorts-actions .post-reacted {
  background: #000;
  border-color: #333;
}
.shorts-view .shorts-actions .post-reacted:hover {
  background: #333;
  border-color: #555;
}
.shorts-view .shorts-actions .floating-menu-holder {
  position: relative;
  right: 0;
  top: 0;
}
.shorts-view .shorts-actions .floating-menu-holder .toggle {
  margin: 0;
}
.shorts-view .shorts-navigation {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.shorts-view .shorts-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.shorts-view .shorts-navigation a:hover {
  background: #f5f5f5;
  border-color: #333;
  transform: scale(1.1);
}
.shorts-view .shorts-navigation a i {
  font-size: 16px;
}
@media (max-width: 1300px) {
  .shorts-view .video-details {
    display: none;
  }
  .shorts-view .mobile-video-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    padding: 10px 57px 10px 10px;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .shorts-view .mobile-video-details .mobile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
  }
  .shorts-view .mobile-video-details .mobile-content {
    flex: 1;
  }
  .shorts-view .mobile-video-details .mobile-content .video-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  .shorts-view .mobile-video-details .mobile-content .video-title .username {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
  }
  .shorts-view .mobile-video-details .mobile-content .video-caption .post-body,
  .shorts-view .mobile-video-details .mobile-content .video-caption .post-body a {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) {
  .shorts-view {
    padding: 10px;
  }
  .shorts-view .shorts-video-row {
    position: relative;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .shorts-view .video-container {
    width: calc((100vh - 180px) * 9/16);
    height: calc(100vh - 140px);
    min-width: 240px;
    min-height: 427px;
  }
  .shorts-view .video-details {
    width: calc((100vh - 140px) * 9/16);
    min-width: 240px;
    display: none;
  }
  .shorts-view .video-container .shorts-mute-toggle {
    right: 9px;
  }
  .shorts-view .shorts-actions {
    position: absolute;
    top: auto;
    bottom: 120px;
    right: 10px;
    z-index: 20;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    opacity: 0.8;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) i {
    font-size: 14px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a):hover {
    opacity: 1;
  }
  .shorts-view .shorts-actions .avatar-row {
    display: none;
  }
  .shorts-view .shorts-actions .shorts-reaction-score {
    font-size: 14px;
    padding: 0;
    width: 38px;
    height: 38px;
    background: black;
    color: white;
    border-radius: 50%;
    opacity: 0.9;
    border: 2px solid #333;
  }
  .shorts-view .shorts-actions:hover {
    opacity: 1;
  }
  .shorts-view .shorts-navigation {
    position: absolute;
    top: auto;
    bottom: 20px;
    right: 10px;
    z-index: 20;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    opacity: 1;
  }
  .shorts-view .shorts-navigation a {
    width: 38px;
    height: 38px;
  }
  .shorts-view .shorts-navigation a i {
    font-size: 12px;
  }
  .shorts-view .shorts-navigation a:hover {
    opacity: 1;
  }
  .shorts-view .shorts-navigation:hover {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .shorts-view .video-container {
    width: calc((100vh - 170px) * 9/16);
    height: calc(100vh - 135px);
    max-width: calc(100vw - 20px);
    min-width: 200px;
    min-height: 356px;
  }
  .shorts-view .video-details {
    width: calc((100vh - 160px) * 9/16);
    max-width: calc(100vw - 20px);
    min-width: 200px;
    padding: 15px;
  }
  .shorts-view .video-details .video-title {
    font-size: 16px;
  }
  .shorts-view .video-details .topics-keywords-row {
    gap: 12px;
  }
  .shorts-view .shorts-actions {
    right: 10px;
    gap: 10px;
    opacity: 0.8;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) i {
    font-size: 14px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a):hover {
    opacity: 1;
  }
  .shorts-view .shorts-actions .avatar {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }
  .shorts-view .shorts-actions .avatar:hover {
    opacity: 1;
  }
  .shorts-view .shorts-actions .shorts-reaction-score {
    font-size: 14px;
    padding: 3px 6px;
    opacity: 0.9;
  }
  .shorts-view .shorts-actions:hover {
    opacity: 1;
  }
  .shorts-view .shorts-navigation {
    gap: 12px;
    opacity: 0.8;
  }
  .shorts-view .shorts-navigation a {
    width: 38px;
    height: 38px;
  }
  .shorts-view .shorts-navigation a i {
    font-size: 12px;
  }
  .shorts-view .shorts-navigation a:hover {
    opacity: 1;
  }
  .shorts-view .shorts-navigation:hover {
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .shorts-view {
    padding: 5px;
  }
  .shorts-view .video-container {
    width: calc(100vw - 10px);
    height: calc((100vw - 10px) * 16/9);
    max-height: calc(100vh - 130px);
    min-width: auto;
    min-height: auto;
  }
  .shorts-view .video-details {
    width: calc(100vw - 10px);
    min-width: auto;
    padding: 10px;
  }
  .shorts-view .video-details .video-title {
    font-size: 14px;
  }
  .shorts-view .video-details .topics-keywords-row {
    gap: 8px;
  }
  .shorts-view .shorts-actions {
    right: 5px;
    gap: 16px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) {
    width: 36px;
    height: 36px;
  }
  .shorts-view .shorts-actions a:not(.floating-menu a) i {
    font-size: 14px;
  }
  .shorts-view .shorts-actions .avatar {
    width: 36px;
    height: 36px;
  }
  .shorts-view .shorts-actions .shorts-reaction-score {
    font-size: 12px;
    padding: 2px 4px;
  }
  .shorts-view .shorts-navigation {
    gap: 16px;
    right: 5px;
  }
  .shorts-view .shorts-navigation a {
    width: 36px;
    height: 36px;
  }
  .shorts-view .shorts-navigation a i {
    font-size: 12px;
  }
}
.sidebar-right-toggle-btn {
  color: white;
  border: none;
  padding: 10px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-right-toggle-btn:active,
.sidebar-right-toggle-btn:hover,
.sidebar-right-toggle-btn:focus {
  color: white;
  background: rgba(0, 0, 0, 0.7);
}
.sidebar-right-toggle-btn i {
  font-size: 18px;
}
.shorts-comments-sidebar {
  position: fixed;
  top: 60px;
  right: -400px;
  /* Start off-screen */
  width: 400px;
  height: calc(100vh - 60px);
  z-index: 1000;
  transition: right 0.3s ease;
  background-color: #EBEBEB;
  padding: 15px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.shorts-comments-sidebar.sidebar-open {
  right: 0;
  /* Slide in when open */
}
@media (max-width: 767px) {
  .shorts-comments-sidebar {
    top: 45px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 45px);
  }
}
.shorts-comments-sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
}
.shorts-comments-sidebar .sidebar-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.shorts-comments-sidebar .sidebar-header .close-btn {
  text-decoration: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.shorts-comments-sidebar .sidebar-header .close-btn:hover {
  color: #333;
  background-color: #ddd;
}
.shorts-comments-sidebar .sidebar-header .close-btn:active {
  background-color: #ccc;
}
.shorts-comments-sidebar .comments-content {
  height: calc(100% - 60px);
  overflow-y: auto;
}
.sidebar-right-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  cursor: pointer;
}


/*# sourceMappingURL=funwatch-styles-2.css.map*/