/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #1e1e1e;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
	color: #CCC;
  text-decoration: none !important;
}
a:hover {
	color: #F99;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  background: #1f2122;
  font-family: 'Poppins', sans-serif;
}

body .page-content {
  background-color: #27292a;
  padding: 25px; /* original 60px*/
  border-radius: 0 0 23px 23px;
}

body .page-content-head {
  margin-top: 10px; /* original 110px */
  background-color: #27292a;
  border-radius: 23px 23px 0 0;
}

p {
  font-size: 15px;
  color: #666;
  line-height: 30px;
  margin-bottom: 0px;
}

::selection {
  background: rgba(52, 152, 219, 0.5);
  color: #fff;
}

::-moz-selection {
  background: rgba(52, 152, 219, 0.5);
  color: #fff;
}

.featured-item {
	max-width: 40px; 
	border-radius: 23px;
}

.main-button {
  font-size: 14px;
  color: #fff;
  background-color: #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button:hover {
  background-color: #fff;
  color: #3498db;
}

.border-no-active a {
  border-color: #666;
  color: #666;
}

.border-no-active a:hover{
  border-color: #666;
  color: #666;
  background-color: transparent;
}

section {
  margin-top: 120px;
}

.heading-section h4 {
#  color: #ec6090;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 30px;
  text-align: center;
}

.heading-section h4 em {
  color: #fff;
  font-style: normal;
  text-decoration: underline;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #3498db;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #3498db;
  border-radius: 50%;
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.friends-banner {
  background-image: url(../images/banner/SupportSummons.png);
  background-position: center center;
  background-size: cover;
  min-height: 370px;
  padding: 80px 60px;
  margin-top: 25px;
}

.main-banner {
  background-image: url(../images/banner/banner-bg.png);
  background-position: 0% 30%;
  background-size: cover;
  min-height: 380px;
  border-radius: 23px 23px 0 0;
  padding: 80px 60px;
  background-size: 120%; /* aumenta el tamaño simulando zoom */
}

.main-banner h4 {
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 0 #000;
}

.main-banner h4 em {
  font-style: normal;
  color: #3498db;
}

.main-banner h6 {
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  text-shadow: 1px 1px 0 #000;
}

.main-banner .rank,
.main-banner .element {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.main-banner .rank-icon,
.main-banner .element-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.7));
}

.main-banner h6 span {
  margin: 0 5px;
}

.main-banner .separator {
  color: #aaa;
}

.main-banner .profile-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 0;
  flex-wrap: wrap;
  font-size: 16px;
  margin-bottom: 20px;
}

.main-banner .info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.main-banner .label {
  font-weight: bold;
  color: #3498db;
  text-shadow: 1px 1px 0 #000;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.main-banner .value {
  font-size: 16px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

.main-banner .banner-button {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}

.main-banner .banner-button:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}

.main-banner .banner-button-left {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-banner .banner-button-left:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}

.main-banner .banner-button-right {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-banner .banner-button-right:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}

.main-banner .banner-button-center {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-banner .banner-button-center:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}

.main-banner .nav-banner {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

/* 
---------------------------------------------
Most Popular Style
--------------------------------------------- 
*/

.most-popular {
  margin-top: 25px; /*original 60*/
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.most-popular .item {
  background-color: #27292a;
  padding: 30px 15px;
  border-radius: 23px;
  margin-bottom: 30px;
}

.most-popular .item .item {
  padding: 0px;
  border-radius: 0px;
  background-color: transparent;
  margin-bottom: 0px;
}

.most-popular .item img {
  border-radius: 23px;
}

.most-popular .item h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.most-popular .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.most-popular .item ul {
  float: right;
  margin-top: 20px;
}

.most-popular .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.most-popular .item ul li:first-child i {
  color: yellow;
}

.most-popular .item ul li:last-child i {
  color: #ec6090;
}

.most-popular .main-button {
  text-align: center;
  margin-bottom: -53px;
}

/* 
---------------------------------------------
Gaming Library Style
--------------------------------------------- 
*/

.latest-gws {
  margin-top: 25px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.latest-gws .item {
  border-bottom: 1px solid #27292a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.latest-gws .last-item {
  margin-bottom: 30px;
}

.profile-library .last-item {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.latest-gws .item ul li {
  margin-top: 15px;
}

.latest-gws .item ul li img {
  margin-top: -30px;
}

.latest-gws .item ul li {
  display: inline-block;
  width: 17%;
}

.latest-gws .item ul li:first-child {
  width: 110px;
}

.latest-gws .item ul li {
  width: 19% !important;
  text-align: center !important;
}

.latest-gws .item ul li:last-child {
  width: 19% !important;
  text-align: right;
}

.latest-gws .item ul li h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.latest-gws .item ul li span {
  color: #666;
  font-size: 14px;
}

.latest-gws .main-button {
  text-align: center;
  margin-bottom: -43px;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  padding: 30px 0px;
  color: #fff;
  font-weight: 300;
}

footer p a {
  color: #fff;
  transition: all .3s;
}

footer p a:hover {
  color: #3498db;
}

/* 
---------------------------------------------
Featured Games Style
--------------------------------------------- 
*/

.featured-games {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
  margin-top: 25px;
}

.featured-games .item .thumb .carrusel-button {
  position: absolute;
  bottom: 15px;
  left: 50%; /* Mueve el botón al 50% del contenedor */
  transform: translateX(-50%); /* Ajusta el botón hacia la izquierda para centrarlo */
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  display: inline-block;
  color: #3498db;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #3498db;
  width: 90%;
}

.featured-games .item .thumb .carrusel-button:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}

.featured-games .item .thumb {
  position: relative;
  overflow: hidden;
}

.featured-games .item img {
  border-radius: 23px;
}

.featured-games .item h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.featured-games .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.featured-games .item ul {
  float: right;
  margin-top: 20px;
}

.featured-games .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.featured-games .item ul li:first-child i {
  color: yellow;
}

.featured-games .item ul li:last-child i {
  color: #ec6090;
}

.featured-games .owl-nav {
  position: absolute;
  margin: 0 auto;
  top: -70px;
  right: 0;
}

.featured-games .owl-nav .owl-prev {
  margin-right: 2.5px;
}

.featured-games .owl-nav .owl-next {
  margin-left: 2.5px;
}

.featured-games .owl-nav .owl-prev span,
.featured-games .owl-nav .owl-next span  {
  font-size: 36px;
  display: inline-block;
  color: #666;
  opacity: 1;
  transition: all .3s;
}

.featured-games .owl-nav .owl-prev span:hover,
.featured-games .owl-nav .owl-next span:hover {
  opacity: 1;
  color: #3498db;
}

.top-downloaded {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
  max-height: 567px;
  min-height: 567px;
}

.top-downloaded ul li {
  position: relative;
  display: inline-block;
  width: 100%;
}

.top-downloaded ul li img {
  float: left;
  margin-right: 15px;
}

.top-downloaded ul li h4 {
  font-size: 15px;
  padding-top: 7px;
}

.top-downloaded ul li h6 {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}

.top-downloaded ul li span {
  color: #fff;
  font-size: 15px;
  margin-right: 10px;
}

.top-downloaded ul li .download i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-23px);
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  color: #ec6090;
  background-color: #27292a;
  border-radius: 50%;
}

.top-downloaded ul li {
  border-bottom: 1px solid #27292a;
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.top-downloaded .text-button  {
  text-align: center;
}

.top-downloaded .text-button a {
  font-weight: 600;
  color: #ec6090;
  font-size: 15px;
}

/* 
---------------------------------------------
Featured Banner Style
--------------------------------------------- 
*/

.feature-banner .thumb {
  position: relative;
  max-height: 305px;
  overflow: hidden;
  border-radius: 23px;;
}

.feature-banner .thumb a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-23px, -23px);
  width: 46px;
  height: 46px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  color: #ec6090;
}

/* 
---------------------------------------------
Game Details Style
--------------------------------------------- 
*/

.game-details h2 {
  font-size: 45px;
  text-transform: uppercase;
  text-align: center;
  margin: 60px 0px;
}

.game-details .content {
  border-radius: 23px;
  padding: 30px;
  background-color: #1f2122;
}

.game-details .content .left-info {
  background-color: #27292a;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 30px;
}

.game-details .content .left-info .left {
  float: left;
}

.game-details .content .left-info h4 {
  font-size: 15px;
  display: block;
}

.game-details .content .left-info span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.game-details .content .left-info ul {
  text-align: right;
}

.game-details .content .left-info ul li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}

.game-details .content .left-info ul li:first-child i {
  color: yellow;
}

.game-details .content .left-info ul li:last-child i {
  color: #ec6090;
}

.game-details .content .right-info {
  background-color: #27292a;
  border-radius: 23px;
  padding: 30px;
  margin-bottom: 30px;
}

.game-details .content .right-info ul li {
  display: inline-block;
  width: 23%;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.game-details .content .right-info ul li i {
  display: block;
  margin-bottom: 12px;
}

.game-details .content .right-info ul li:first-child i {
  color: yellow;
} 

.game-details .content .right-info ul li i {
  color: #ec6090;
}

.game-details .main-border-button {
  margin-top: 35px;
}

.game-details .main-border-button a {
  text-align: center;
  width: 100%;
} 


/* 
---------------------------------------------
Top Vtubers Style
--------------------------------------------- 
*/

.top-vtubers {
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
  margin-top: 25px;
}

.top-vtubers ul li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #353637;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.top-vtubers ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.top-vtubers ul li span {
  float: left;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  padding-top: 12px;
  margin-right: 10px;
}

.top-vtubers ul li h6 {
  display: inline;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

.top-vtubers ul li h6 i {
  color: #fff;
  background-color: #007aff;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  margin-right: 3px;
}

.vtubers-button {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.vtubers-button:hover {
  background-color: #fff;
  color: #3498db;
}

.top-vtubers ul li .vtubers-button {
  float: right;
  padding: 8px 20px;
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body .page-content {
    padding: 25px 10px;
  }
  .main-banner {
    background-position: 90% 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 20px;
    background-size: auto 100%;
  }
  .main-banner h6 {
    margin-bottom: 0px;
  }
  .main-banner h4 {
    font-size: 30px;
  }
  .gaming-library .item ul li,
  .gaming-library .item ul li:first-child,
  .gaming-library .item ul li:last-child {
    width: 100% !important;
    text-align: center !important;
  }
  .gaming-library .item ul li {
    margin-top: 30px;
  }
  .top-downloaded ul li .download i {
    top: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .top-downloaded ul li img {
    margin-right: 10px;
  }
  .top-downloaded ul li span {
    font-size: 14px;
  }
  .top-streamers ul li .main-button {
    float: none;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  .top-streamers,
  .top-downloaded {
    max-height: 100%;
    min-height: 100%;
  }
  .most-popular .item .inner-item {
    margin-bottom: 20px;
  }
  .main-banner .nav-banner a {
    display: none;
  }
  .friends-banner {
    display: none;
  }
  .latest-gws .item ul {
    font-size: 8px;
  }
  .latest-gws .item ul li {
    margin-inline: 10px;
  }
  .latest-gws .item ul li h4 {
    font-size: 14px;
  }
  .latest-gws .item ul li span {
    font-size: 13px;
  }
  .latest-gws .featured-item {
    width: 32px;
    height: 32px;
  }
  .hide-mobile {
    display: none !important;
  }
  .main-banner .profile-info {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
    scroll-behavior: smooth;
  }
  .main-banner .info-block {
    flex: 0 0 auto; /* Evita que se encojan o expandan */
    min-width: 100px;
  }
}

@media (max-width: 992px) {
  .background-header {
  display: inline-block;
  }
  .header-area .main-nav #search {
    display: none;
  }
  .heading-section h4 {
    font-size: 20px;
  }
  .gaming-library .item ul li {
    width: 48% !important;
  }
  .gaming-library .item ul li:last-child {
    text-align: left;
  }
  .start-stream .item {
    margin: 15px 0px;
  }
  .feature-banner .thumb {
    margin-top: 30px;
  }
  .main-profile .main-info {
    margin: 45px 0px;
  }
  .friends-banner {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .main-nav .logo {
    margin-right: 30px;
    border-right: none;
  }
  .gaming-library .item ul li {
    width: 16%;
  }
}

/* 
---------------------------------------------
Navigation Menu
--------------------------------------------- 
*/

.nav-menu {
  background-color: #1f2122;
  border-radius: 23px;
}

.nav-selector {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.nav-menu .nav-button {
  font-size: 14px;
  color: #3498db;
  padding: 12px 30px;
  display: inline-block;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.nav-menu .nav-button:hover {
  background-color: rgba(52, 152, 219, 0.5);
  color: #fff;
}

.nav-menu .nav-button.activo {
  opacity: 0.6;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

/* 
---------------------------------------------
Live Stream Style
--------------------------------------------- 
*/

.live-stream {
  margin-top: 25px;
  border-radius: 23px;
  background-color: #1f2122;
  padding: 30px;
}

.live-stream .item {
  margin-bottom: 30px;
}

.live-stream .thumb {
  position: relative;
  overflow: hidden;
}

.live-stream .thumb img {
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;
}

.live-stream .avatar img {
  margin-right: 15px;
}

.live-stream span i {
  color: #fff;
  background-color: #007aff;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  margin-right: 3px;
}

.live-stream span {
  font-size: 14px;
  color: #fff;
}

.live-stream .down-content h4 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-left: 61px;
}

.live-stream .main-button {
  text-align: center;
  margin-bottom: -53px;
}

.msc-button {
  font-size: 14px;
  color: #3498db;
  background-color: rgba(0, 0, 0, .5);
  border: 1px solid #3498db;
  padding: 12px 30px;
  display: inline-block;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}

.msc-button:hover {
  border-color: #fff;
  background-color: #fff;
  color: #3498db;
}