/* 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
============================================================================ */
.view-user-profile {
  padding: 20px 0;
}
.view-user-profile .watch-image-banner {
  aspect-ratio: 16 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.view-user-profile .watch-image-banner .edit-profile {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.view-user-profile .user-details {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.view-user-profile .user-details .avatar-wrap {
  flex-shrink: 0;
}
.view-user-profile .user-details .avatar-wrap .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  background-size: cover;
  background-position: center;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.view-user-profile .user-details .avatar-wrap .avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.view-user-profile .user-details .user-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.view-user-profile .user-details .user-content .user-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  line-height: 1.2;
}
.view-user-profile .user-details .user-content .user-info h2 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  color: #666;
  opacity: 0.8;
}
.view-user-profile .user-details .user-content .user-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 5px 0;
}
.view-user-profile .user-details .user-content .user-actions .follow-user-form {
  margin: 0;
}
.view-user-profile .user-details .user-content .user-actions .follow-user-form .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.view-user-profile .user-details .user-content .user-actions .follow-user-form .btn i {
  font-size: 0.9em;
}
.view-user-profile .user-details .user-content .user-actions a:not(.floating-menu-holder a) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: black;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}
.view-user-profile .user-details .user-content .user-actions a:not(.floating-menu-holder a):hover {
  background: #EB212E;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.view-user-profile .user-details .user-content .user-actions a:not(.floating-menu-holder a) i {
  font-size: 1.1rem;
}
.view-user-profile .user-details .user-content .user-actions .floating-menu {
  margin-left: auto;
}
.view-user-profile .user-details .user-content .stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.view-user-profile .user-details .user-content .stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 20px;
  background: #ebebeb;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
  min-width: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.view-user-profile .user-details .user-content .stats .stat:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.view-user-profile .user-details .user-content .stats .stat .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  display: block;
}
.view-user-profile .user-details .user-content .stats .stat .stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.view-user-profile .user-tabs {
  margin-top: 30px;
}
.view-user-profile .user-tabs .tab-bar {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-wrap: wrap;
}
.view-user-profile .user-tabs .tab-bar li {
  flex: 1;
  min-width: 0;
}
.view-user-profile .user-tabs .tab-bar li a {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-user-profile .user-tabs .tab-bar li a:hover {
  background: #f8f9fa;
  color: #2c3e50;
}
.view-user-profile .user-tabs .tab-bar li.active a {
  color: #2c3e50;
  background: #f8f9fa;
  border-bottom-color: black;
  font-weight: 600;
}
.view-user-profile .user-tabs .tab-content {
  margin-top: 30px;
}
.view-user-profile .user-tabs .tab-content .user-search-form {
  margin: 30px 0;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 500px;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field {
  flex: 1;
  position: relative;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper:hover {
  border-color: #3498db;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper:focus-within {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
  transform: translateY(-1px);
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-icon {
  position: absolute;
  left: 20px;
  color: #95a5a6;
  font-size: 1rem;
  z-index: 2;
  transition: color 0.3s ease;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 20px 15px 50px;
  font-size: 16px;
  background: transparent;
  color: #2c3e50;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-input::-moz-placeholder {
  color: #95a5a6;
  font-weight: 400;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-input:-ms-input-placeholder {
  color: #95a5a6;
  font-weight: 400;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-input::placeholder {
  color: #95a5a6;
  font-weight: 400;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-input:focus + .search-btn {
  background: #3498db;
  color: white;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-btn {
  background: #f8f9fa;
  border: none;
  padding: 15px 20px;
  color: #7f8c8d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e1e8ed;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-btn:hover {
  background: #3498db;
  color: white;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field .search-input-wrapper .search-btn i {
  font-size: 1rem;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .search-field:focus-within .search-icon {
  color: #3498db;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .clear-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .clear-search:hover {
  background: #c0392b;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}
.view-user-profile .user-tabs .tab-content .user-search-form .search-container .clear-search i {
  font-size: 0.9rem;
}
@media (max-width: 1200px) {
  .view-user-profile .user-tabs .tab-bar li a {
    padding: 18px 10px;
  }
}
@media (max-width: 900px) {
  .view-user-profile .user-tabs .tab-bar {
    flex-wrap: wrap;
  }
  .view-user-profile .user-tabs .tab-bar li {
    width: 25%;
    flex: none;
  }
  .view-user-profile .user-tabs .tab-bar li a {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .view-user-profile .user-details {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }
  .view-user-profile .user-details .avatar-wrap .avatar {
    width: 150px;
    height: 150px;
  }
  .view-user-profile .user-details .user-content {
    width: 100%;
  }
  .view-user-profile .user-details .user-content .user-info h1 {
    font-size: 2rem;
  }
  .view-user-profile .user-details .user-content .user-actions {
    justify-content: center;
    gap: 10px;
  }
  .view-user-profile .user-details .user-content .user-actions .follow-user-form .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .view-user-profile .user-details .user-content .user-actions a {
    width: 40px;
    height: 40px;
  }
  .view-user-profile .user-details .user-content .user-actions a i {
    font-size: 1rem;
  }
  .view-user-profile .user-details .user-content .stats {
    justify-content: center;
    gap: 20px;
  }
  .view-user-profile .user-details .user-content .stats .stat {
    min-width: 80px;
    padding: 10px 15px;
  }
  .view-user-profile .user-details .user-content .stats .stat .stat-number {
    font-size: 1.5rem;
  }
}
.view-user-profile .user-details + .video-feed {
  margin-top: 40px;
}

/* 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
============================================================================ */
.sidebar-left-toggle-btn {
  color: white;
  border: none;
  padding: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.sidebar-left-toggle-btn:active,
.sidebar-left-toggle-btn:hover,
.sidebar-left-toggle-btn:focus {
  color: white;
  background: transparent;
}
.sidebar-left-toggle-btn i {
  font-size: 18px;
}
.left-sidebar-container {
  position: fixed;
  top: 60px;
  left: -400px;
  /* Start off-screen */
  width: 400px;
  height: calc(100vh - 60px);
  z-index: 1000;
  transition: left 0.3s ease;
  background-color: #EBEBEB;
  padding: 15px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.left-sidebar-container.sidebar-open {
  left: 0;
  /* Slide in when open */
}
.left-sidebar-container .sidebar-inner {
  border-radius: 0px;
}
@media (max-width: 767px) {
  .left-sidebar-container {
    top: 45px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 45px);
  }
}
.sidebar-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;
}
@media (max-width: 1024px) {
  .sidebar-dark {
    display: block;
  }
}

/* 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
============================================================================ */
.channel-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;
}
.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.channel-card a.channel-wrapper {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.channel-card a.channel-wrapper .channel-poster {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.channel-card a.channel-wrapper .channel-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;
}
.channel-card a.channel-wrapper .channel-overlay .channel-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;
}
.channel-card a.channel-wrapper .channel-overlay .channel-icon i {
  font-size: 2rem;
  color: #666;
}
.channel-card a.channel-wrapper:hover .channel-poster {
  transform: scale(1.05);
}
.channel-card a.channel-wrapper:hover .channel-overlay {
  opacity: 1;
}
.channel-card a.channel-wrapper:hover .channel-overlay .channel-icon {
  transform: scale(1);
}
.channel-card .channel-info {
  position: relative;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.channel-card .channel-info .avatar-wrap {
  flex-shrink: 0;
}
.channel-card .channel-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);
}
.channel-card .channel-info .channel-content {
  flex: 1;
  min-width: 0;
}
.channel-card .channel-info .channel-content .channel-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;
}
.channel-card .channel-info .channel-content .channel-title:hover {
  color: #EB212E;
}
.channel-card .channel-info .channel-content .name-block {
  margin-bottom: 4px;
}
.channel-card .channel-info .channel-content .name-block .name {
  font-size: 14px;
  color: #8C8C8C;
  font-weight: 500;
  text-decoration: none;
}
.channel-card .channel-info .channel-content .name-block .name:hover {
  color: #EB212E;
}
.channel-card .channel-info .channel-content .subscribers-count {
  font-size: 12px;
  color: #8C8C8C;
  line-height: 1.2;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .channels-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
  }
  .channel-card .channel-info {
    padding: 10px;
  }
  .channel-card .channel-info .channel-content .channel-title {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .channel-card .channel-overlay .channel-icon {
    width: 60px;
    height: 60px;
  }
  .channel-card .channel-overlay .channel-icon i {
    font-size: 1.5rem;
  }
}


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