/*----REQUIRE----*/
  @import url('../css/normalize.css');
  @import url('../css/grid.css');
  @import url('../css/fonts.css');
  @import url('../css/animate.css');
  @import url('../css/owl.carousel.css');


/* MODALS */
   body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      position: relative;
      font-weight: 400;
      background-size: cover;
      background-repeat: no-repeat;
      background-color: #131119;
      background-attachment: fixed;
      background-position:center center;
    }

    a {
      color: inherit !important;
    }

    header {
      flex: 1 1 auto;
      position: absolute;
      top: 63px;
      right: 66px;
      left: 150px;
      background: none;
      height: 100px;
      z-index: 9999;
display: flex;
justify-content: space-between;
align-items: center;
    }
    .svg-icon {
      fill: #C5C7C5;
    }

    main {
      width: 100%;
      min-height: calc(100% - 50px);
      float: left;
      position: relative;
      top: 0px;
      left: 0;
    }

    nav.header {
      position: fixed;
      top: 0;
      left: 0;
      visibility: visible;
      flex-direction: column;
      height: 100vh;
      display: flex;
      justify-content: space-between;
      width: 150px;
      z-index: 1;
          border-right: solid 2px #191b1f;
    }

    nav.active {
      height: 100%;
      top: 50px;
      z-index: 9999;
    }

    nav::-webkit-scrollbar {
      width: 2px;
      height: 10px;
      border: none;
      background-color: inherit;
      overflow: hidden;
      border-radius: 0 3px 3px 0;
    }

    nav::-webkit-scrollbar-thumb {
      background: #2D3347;
      border: none;
    }

    nav::-webkit-scrollbar-corner {
      background: inherit;
    }

    section.content-wrapper {
      padding: 140px 65px 0px 196px;
      width: 100%;
      float: left;
      position: relative;
      left: 0;
    }

    section.content-wrapper.no-pad {
    }


/* HEADER */

  header .left {
    width: 100%;
  }

  .guest ul li {
    float: left;
    list-style: none;
    margin-right: 30px;
    background: #EC3189;
    transition: 0.5s ease;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.guest ul li:hover {
    background: #ffffff;
}

  /* MOBILEMENU */

  .nav-bar {
    background-color: #191b1f;
    display: block;
    top: -14px;
    width: 100%;
    height: 0vh;
    transition: 0.3s ease;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .opened {
      height: 90vh;
          position: absolute;
      box-shadow: 1px 0 15px 2px rgba(0, 0, 0, 0.4);
      z-index: 9999;
  }

  .toggle-menu {
      background-color: rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 10px;
      left: 20px;
      z-index: 1;
      width: 40px;
      height: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 2px 2px 2px 3px;
      border-radius: 5px;
      cursor: pointer;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
  }

  .line {
  	width: 100%;
  	height: 3px;
  	border-radius: 5px;
  	background-color: #fff;
  	transition: transform 0.2s ease-out;
  	-webkit-transition: transform 0.2s ease-out;
  	-moz-transition: transform 0.2s ease-out;
  	-ms-transition: transform 0.2s ease-out;
  	-o-transition: transform 0.2s ease-out;
  }

  .opened .line1 {
  	background-color: #000000;
  	transform: scale(0.9) rotateZ(-45deg) translate(-6px, 4px);
  }

  .opened .line2 {
  	display: none;
  }

  .opened .line3 {
  	background-color: #000000;
  	transform: scale(0.9) rotateZ(45deg) translate(-6px, -4px);
  }

  .opened .toggle-menu {
  	background-color: white;
  }

  .nav-list {
    list-style: none;
        padding: 0;
        display: none;
        color: white;
        overflow: scroll;
  }
  .nav-list-login {
      list-style: none;
      padding: 18px 0 0 0;
      color: white;
      display: flex;
      margin: auto;
      flex-direction: row;
  }
.nav-list-login li {
    padding: 0px 12px;
}
  .opened .nav-list {
    display: flex;
    flex-direction: column;
  }
  .nav-list-item {
  	text-align: center;
  	padding: 8px 0;
  }

  .nav-link {
  	color: #fff;
  	font-size: 20px;
  	text-decoration: none;
  	position: relative;
  	padding-bottom: 4px;
  }

  .nav-link::before {
  	position: absolute;
  	content: '';
  	left: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	background-color: #fff;
  	transform: scaleX(0);
  	transition: transform 0.4s ease-in-out;
  	transform-origin: left;
  	-webkit-transition: transform 0.4s ease-in-out;
  	-moz-transition: transform 0.4s ease-in-out;
  	-ms-transition: transform 0.4s ease-in-out;
  	-o-transition: transform 0.4s ease-in-out;
  }

  .nav-link:hover::before {
  	transform: scaleX(1);
  }

    /* LOGO */

      header .logo {
        width: 160px;
        height: 42px;
        margin: 0 auto;
      }

      .logo {
        flex-shrink: 0;
            align-self: center;
            margin-top: 40px;
      }

      header .logo a {
        width: 142px;
        height: 100%;
        display: inline-block;
        float: left;
        background-image: url('../img/elements/logo.svg');
        background-repeat: no-repeat;
        background-size: 100%;
        margin-top: 13px;
      }

    /* SEARCH */
      header .search {
        width: 525px;
        height: auto;
        float: left;
        position: relative;
        margin-right: 30px;
        margin-left: 30px;
        display: none;
        visibility: hidden;
      }

      header .search i.fa-film {
        position: absolute;
        left: 17px;
        top: 13px;
        color: #FFFFFF;
        font-size: 18px;
        z-index: 500;
      }

      header .search #search_select {
      position: absolute;
    left: 2px;
    top: 6px;
    font-size: 24px;
    color: #C5C7C5!important;
      }

      header .search input::placeholder {
          color: #C5C7C5!important;
      }

      header .search input {
        width: 100%;
        height: 60px;
        background-color: #191B1F;
        border-radius: 12px;
        outline: none;
        border: none;
        padding: 0 15px 0 60px;
        color: #C5C7C5!important;
        font-size: 18px;
      }
      #search_select.active i {
        color: #cacaca !important;
      }

      .form-control:focus {
        color: #000 !important;
      }


      header .search input::focus,
      header .search input:focus {
        color: #000 !important;
      }

      header .search input::-webkit-input-placeholder {
        color: #fff !important;
      }
      header .search input::-moz-placeholder {
        color: #fff !important;
      }
      header .search input:-ms-input-placeholder {
        color: #fff !important;
      }
      header .search input:-moz-placeholder {
        color: #fff !important;
      }

    /* TRENDING SEARCHES */

      header .trending-searches {
        float: left;
        margin-top: 17px;
        display: none;
        visibility: hidden;
      }

      header .trending-searches span.head {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
        font-family: 'Montserrat';
        font-weight: 700;
        text-transform: uppercase;
      }

      header .trending-searches ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      header .trending-searches ul li {
        float: left;
        font-size: 14px;
        color: #7F7D8A;
        margin: 0 10px 0 0;
        transition: .3s all;
        position: relative;
      }


      header .trending-searches ul li a::before {
        content: '\f002';
        font-family: 'fontawesome';
        display: inline-block;
        float: left;
        margin-right: 5px;
        font-size: 13px;
        position: relative;
        color: #7F7D8A;
        top: 1px;
        transition: .3s all;
        pointer-events: none;
      }

      header .trending-searches ul li a {
        width: 100%;
        height: 100%;
        display: inline-block;
        float: left;
      }


      header .trending-searches ul li:hover {
        color: #fff;
      }


      header .trending-searches ul li:hover a::before {
        color: #F43591;
      }
.player-ad-bottom {
    align-items: center;
    text-align: center;
    background: #000000;
}
.side-ad {
    height: auto;
    width: 100%;
    float: left;
    padding-bottom: 30px;
}
    /* UPLOAD */
      header .upload a {
        float: right;
        height: 36px;
        padding: 0 30px;
        line-height: 36px;
        text-align: center;
        color: #fff !important;
        letter-spacing: 0.5px;
        font-size: 14px;
        border-radius: 3px;
        background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
        background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
        background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
        margin-top: 22px;
        margin-right: 30px;
        font-family: 'Montserrat';
        font-weight: 700;
        text-transform: uppercase;
        display: none;
        visibility: hidden;
        box-shadow: 0 1px 21px 0 rgba(222,53,128,0.59);
        transition: .3s all;
      }

      header .upload a:hover {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
      }

    /* LANGUAGE */
      footer .language {
        float: right;
        color: rgba(255,255,255,0.6);
        line-height: 36px;
        position: relative;
        top: -45px;
        right: 33px;
        margin-right: 15px;
        cursor: pointer;
      }

      footer .language i {
        margin-left: 5px;
      }

      footer .language:hover {
        color: #fff;
      }

      footer .language-dropdown {
        position: absolute;
        z-index: 9999;
        right: 130px;
        bottom: 182px;
        display: none;
        visibility: hidden;
      }

      footer .language-dropdown.active {
        display: inline-block;
        visibility: visible;
        width: 0px;
      }


      footer .language-dropdown ul::-webkit-scrollbar {
        width: 5px;
        height: 10px;
        border: none;
        background-color: inherit;
        overflow: hidden;
        border-radius: 0 3px 3px 0;
      }

      footer .language-dropdown ul::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.1);
        border: none;
      }

      footer .language-dropdown ul::-webkit-scrollbar-corner {
        background: inherit;
      }

      footer .language-dropdown ul {
        list-style: none;
        padding: 10px 0 10px 0;
        margin: 0;
        border-radius: 2px;
        background-color: #191b1f;
        float: left;
        max-height: 220px;
        overflow-y: auto;
        width: 120px;
      }

      footer .language-dropdown ul li {
        width: 100%;
        float: left;
        font-size: 14px;
        line-height: 14px;
        color: #fff;
        padding: 0 20px;
        margin: 0;
        text-align: right;
        transition: .3s all;
      }

      footer .language-dropdown ul li:hover {
        background-color: rgba(0,0,0,0.2);
      }

      footer .language-dropdown ul li a {
        width: 100%;
        height: 100%;
        display: inline-block;
        float: left;
        padding: 7px 0 7px 0;
      }

/* NAV */

.categories ul li {
  float: left;
  list-style: none;
      margin-top: 10px;
  margin-right: 30px;
  background: #EC3189;
  transition: 0.5s ease;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}
.categories ul {
    width: auto;
    padding: 0;
    height: auto;
}
.categories ul li:hover {
    background: white;
}
header .mobile-search {
  position: relative;
  align-self: center;
  padding-bottom: 16px;
      padding-top: 18px;
}

header .mobile-search.active {
  width: 100vw;
      height: 50px;
}

header .mobile-search .icon {
  float: right;
  cursor: pointer;
  z-index: 1;
  position: relative;
}

header .mobile-search .icon i:hover::before {
  color: #A5283B;
}

header .mobile-search .icon i::before {
  color: #fff;
  font-size: 18px;
  float: left;
  font-style: normal;
  transition: .3s all;
}

header .mobile-search .toggle {
  position: absolute;
  right: 0;
  z-index: 500;
  width: 0;
  -moz-transition: width .25s ease;
  -o-transition: width .25s ease;
  -webkit-transition: width .25s ease;
  transition: width .25s ease;
  overflow: hidden;
}

header .mobile-search .toggle.active {
  width: calc(100% - 30px);
}

header .mobile-search .toggle input {
  width: 100%;
  letter-spacing: -0.2px;
  height: 60px;
  background-color: #191B1F;
  border-radius: 12px;
  outline: none;
  border: none;
  padding: 0 15px 0 60px;
  color: #C5C7C5!important;
  font-size: 18px;
}

header .mobile-search .toggle i.close::before {
  color: #dc3545;
  font-size: 22px;
  position: absolute;
  right: 16px;
  top: 18px;
  cursor: pointer;
}

header .mobile-search a#search_select_mobile i {
  color: #c32963 !important;
  position: relative;
  top: -48px;
}

  /* GUEST */
    nav .guest {
      width: 100%;
      float: left;
      position: relative;
      z-index: 500;
      padding: 0 30px;
    }

    nav .guest span.welcome-text {
      width: 100%;
      font-size: 18px;
      float: left;
      text-align: center;
      font-weight: 500;
      line-height: 24px;
      margin-bottom: 10px;
      color: #fff;
    }

    nav .guest span.welcome-text b {
      font-weight: 700;
      color: #DE3580;
    }

    nav .guest ul {
      list-style: none;
      padding: 0 0 25px 0;
      margin: 10px 0 15px 0;
      width: 100%;
      display: inline-block;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav .guest ul li {
      background-color: #373444;
      display: inline-block;
      height: 32px;
      line-height: 32px;
      text-transform: uppercase;
      border-radius: 3px;
      margin: 0 5px;
      font-size: 14px;
      letter-spacing: -0.3px;
      transition: .3s all;
      color: #fff;
      font-family: 'Montserrat';
      font-weight: 700;
    }

    nav .guest ul li:hover {
      background-color: #DE3580;
    }

    nav .guest ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 0 30px;
    }
  /* USER */

  .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 100px;
    color: white;
  }

  .user-info {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
  }

  .username-icon:hover {
      color: #ec3189;
  }

  .subscribers {
      color: #a1a0a3;
  }
  span.username {
      font-size: 20px;
  }

  .username-icon {
    display: flex;
    align-items: center;
        transition: 0.3s ease;
    cursor: pointer;
  }

  .username-icon i {
    margin-right: 5px;
  }

  .avatar {
    margin-left: 10px;
    position: relative;
    cursor: pointer;
  }

  .avatar img {
    margin-left: 10px;
    height: 60px;
    border-radius: 50%;
    padding: 4px;
    border: solid 2px #ec3189;
  }

  .userfunctions {
    z-index: 999;
        padding: 10px;
        margin: 0;
        opacity: 0;
        display: block;
        transition: 0.5s ease;
        visibility: hidden;
  }

  .userfunctions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  .userfunctions ul li {
    margin-right: 36px;
    font-size: 20px;
    color: #a1a0a3;
    transition: 0.3s ease;
  }

  .userfunctions ul li:hover {
    color: white;
    transform: scale(1.1);
}

  .userfunctions.show {
    opacity: 1;
        visibility: visible;
        margin-right: 10px;
  }

  @media (max-width: 768px) {

    header {
        height: 50px;
    }
    .subscribers {
    }
    .userfunctions {
    }

    .userfunctions ul li {
          margin-right: 30px;
    }
    .subscribers {
    font-size: 12px;
    width: 100px;
text-align: center;
}
    span.username {
    font-size: 16px;
}
    .avatar img {
        display: none;
    }
    .nav-bar {
display: flex;
    }
    .avatar {
    }

    .avatar.show {
      right: calc(100% + 10px);
    }

    .userfunctions.show {
      right: 0;
      background: #131119;
    }
  }





    header .user {
      width: 100%;
      float: left;
      position: relative;
      z-index: 500;
    }

    header .user .content {
      width: 100%;
      display: inline-block;
      text-align: center;
    }

    header .user .content .flex {
      display: inline-block;
    }

    header .user .content a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;

    }

    header .user .avatar {
      width: 100%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    header .user .avatar .content {
      width: 64px;
      height: 64px;
      float: left;
      border-radius: 100px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    header .user .avatar img {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    header .user .data {
      width: 100%;
      float: left;
      text-align: center;
    }

    header .user .data span {
      width: 100%;
      float: left;
      text-align: center;
    }
    header .user .data span.text-highlighted {
      width: auto;
      float: initial;
    }

    header .user .data span.username {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.3px;
      font-family: 'Montserrat';
    }

    header .user .data span.subscribers {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: -0.3px;
    }

    header .user .functions {
      width: 100%;
      float: left;
      padding: 8px 30px 0 30px;
    }

    header .user .functions ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: inline-block;
      text-align: center;
      width: 100%;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    header .user .functions ul li {
      display: inline-block;
      width: 32px;
      height: 32px;
      line-height: 33px;
      color: rgba(255,255,255,0.5);
      border-radius: 3px;
      margin: 0 3px;
      background-color: rgba(255,255,255,0.1);
      text-align: center;
      transition: .3s all;
      position: relative;
    }

    header .user .functions ul li span.count {
      position: absolute;
      right: -5px;
      top: -5px;
      background-color: #DE3580;
      border-radius: 100px;
      width: 18px;
      height: 18px;
      display: inline-block;
      text-align: center;
      line-height: 19px;
      font-size: 11px;
      font-weight: 700;
      color: #fff;
    }

    header .user .functions ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
    }

    header .user .functions ul li:hover {
      background-color: #DE3580;
      color: #fff;
    }

  /* MENU */
    nav .menu {
    margin-bottom: auto;
margin-top: 40px;
    }

    nav .menu ul {
      list-style: none;
      padding: 30px 15px 15px 15px;
      margin: 0;
      width: 100%;
      float: left;
    }

    nav .menu ul li {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    ul.header-info-icons li a i {
        font-size: 42px;
        color: #474747;
    }

    nav .menu ul li i {
      width: 40px;
      float: left;
      font-size: 18px;
      position: relative;
      top: 3px;
      color: rgba(255,255,255,0.6);
      transition: .3s all;
    }

    nav .menu ul li span.text {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      font-weight: 400;
      letter-spacing: -0.3px;
      transition: .3s all;
    }

    nav .menu ul li a {
      padding: 0 0 80px 0;
          flex-shrink: 0;
          align-self: center;
          text-align: center;
    }

    nav .menu ul li:hover span.text {
      color: #fff;
    }

    nav .menu ul li.active:hover i,
    nav .menu ul li.active i {
      color: #DE3580;
    }

    nav .menu ul li:hover i {
      color: #fff;
    }

    nav .menu ul li.active span.text {
      color: #fff;
      font-weight: 700;
    }

  /* CATEGORIES */
    nav .categories {
      width: 100%;
      float: left;
      margin-top: 25px;
      padding: 0 45px;
    }

    nav .categories span.head {
      width: 100%;
      text-align: center;
      display: inline-block;
      float: left;
      color: #fff;
      margin-bottom: 15px;
      font-size: 12px;
      color: #fff;
      letter-spacing: 0.5px;
      font-family: 'Montserrat';
      font-weight: 700;
      text-transform: uppercase;
    }

    nav .categories ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      float: left;
    }

    nav .categories ul li {
      width: 100%;
      margin-bottom: 15px;
      float: left;
    }
    nav .categories ul li:last-child {
      margin-bottom: 0;
    }

    nav .categories ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
    }

    nav .categories ul li span.text {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      font-weight: 400;
      letter-spacing: -0.3px;
      transition: .3s all;
      float: left;
    }

    nav .categories ul li span.count {
      float: right;
      width: 40px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      color: #fff;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 700;
      background-color: rgba(255,255,255,0.1);
      transition: .3s all;
    }

    nav .categories ul li:hover span.count {
      background-color: #DE3580;
    }

    nav .categories ul li:hover span.text {
      color: #fff;
    }

  /* FOOTER */
    nav footer {
      width: 100%;
      align-self: flex-end;
      border-top: solid 2px #191b1f;
    }

    nav footer span.copyright {
      width: 100%;
      float: left;
      text-align: center;
      font-size: 12px;
      color: #fff;
    }

    nav footer ul {
      list-style: none;
      padding: 18px 0px 0px 0px;
      width: 100%;
      float: left;
      text-align: center;
      display: inline-block;
    }

    nav footer ul li {
      display: inline-block;
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: -0.3px;
      transition: .3s all;
      margin: 0 4px;
    }

    nav footer ul li:hover {
      color: #fff;
    }

  /* MOBILE UPLOAD BTN */
    nav .mobile-upload-btn {
      width: 100%;
      float: left;
      text-align: center;
      padding: 0 45px;
      margin-top: 15px;
      margin-bottom: 15px;
    }

    nav .mobile-upload-btn a {
      width: 100%;
      float: left;
      display: inline-block;
      height: 36px;
      line-height: 36px;
      text-align: center;
      color: #fff !important;
      letter-spacing: 0.5px;
      font-size: 14px;
      border-radius: 3px;
      background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
      font-family: 'Montserrat';
      font-weight: 700;
      text-transform: uppercase;
    }

/* UI KITS */

  /*-OMMENT*/
    .comment-area-content {
      width: 100%;
      float: left;
      margin-bottom: 30px;
    }
    .replies-view-more,
    a.replies-hide {
      display: none;

    }
    .comment-area-content h2 {
      width: 100%;
      display: block;
      float: left;
      padding: 0;
      margin: 0 0 0 0;
      font-size: 20px;
      color: #BBB4C4;
      font-weight: 400;
      line-height: 40px;
      letter-spacing: -0.58px;
      text-shadow: 0 1px 0 rgba(0,0,0,0.50);
    }

    .comment-area-content .textarea {
      width: 100%;
      display: block;
      float: left;
    }

    .comment-area-content .textarea textarea {
      width: 100%;
      height: 115px;
      display: block;
      float: left;
      outline: none;
      padding: 0;
      margin: 0;
      border-radius: 2px;
      border: none;
      background-color: #C0C3D0;
      padding:20px;
      color: #616577;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: -0.3px;
    }

    .comment-area-content .submit {
      float: right;
      display: inline-block;
      position: relative;
      width: auto;
      margin-top: 15px;
    }

    .comment-area-content .submit::before {
      content: '\e818';
      font-family: 'ico-font';
      color: rgba(112,93,136,0.45);
      font-size: 21px;
      float: left;
      display: inline-block;
      position: absolute;
      top: 7px;
      left: 24px;
      transition: .3s all;
    }

    .comment-area-content .submit input {
      border: 1px solid rgba(112,93,136,0.45);
      border-radius: 2px;
      outline: none;
      height: 45px;
      background-color: inherit;
      padding: 0 25px 0 55px;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: -0.3px;
      float: left;
      color: #BBB4C4;
      display: inline-block;
      transition: .3s all;
      cursor: pointer;
    }

    .comment-area-content .submit input:hover {
      background-color: #705D88;
    }

    .comment-area-content .submit:hover::before {
      color: #BBB4C4;
    }

    .comment-area-content .submit input::-webkit-input-placeholder {
        color: #BBB4C4;
    }

    .comment-area-content .submit input:-moz-placeholder {
       color: #BBB4C4;
       opacity:  1;
    }

    .comment-area-content .submit input::-moz-placeholder {
       color: #BBB4C4;
       opacity:  1;
    }

    .comment-area-content .submit input:-ms-input-placeholder {
       color: #BBB4C4;
    }

    .comment-area-content .submit input::-ms-input-placeholder {
       color: #BBB4C4;
    }

    .comment-area-content .submit input::placeholder {
       color: #BBB4C4;
    }

    .comment-area-content .comment-list {
      width: 100%;
      float: left;
      margin-top: 20px;
      border-top: 1px solid rgba(112,93,136,0.20);
      font-size: 15px;
      color: #474D61;
      padding-top: 24px;
    }

    .comment-area-content.pm .comment-list {
      margin-top: 0;
      border-top: none;
    }

    .comment-area-content .comment-list .text-white {
      color: #BBB4C4;
      font-size: 15px;
      margin-bottom: 15px;
      display: inline-block;

    }

    .comment-area-content .comment-list .item {
      width: 100%;
      float: left;
    }

    .comment-area-content .comment-list .item span.avatar {
      width: 50px;
      height: 50px;
      display: inline-block;
      float: left;
      margin-right: 17px;
      overflow: hidden;
      border-radius: 1px;
    }

    .comment-area-content .comment-list .item span.avatar img {
      width: 100%;
      height: 100%;
      border-radius: 3px;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    .comment-area-content .comment-list .item span.comment {
      width: calc(100% - 67px);
      display: block;
      float: left;
    }

    .comment-area-content .comment-list .item span.user-title {
        background-color: #A45151 !important;
        float: left;
        color: #F8C7C7;
        font-size: 12px;
        border-radius: 100px;
        padding: 0 13px;
        height: 24px;
        line-height: 24px;
        margin-right: 5px;
        letter-spacing: -0.5px;
    }

    .comment-area-content .comment-list .item span.comment span.username {
      font-weight: 700;
      color: #F43591;
      font-size: 15px;
      line-height: 15px;
      margin-right: 10px;
    }

    .comment-area-content .comment-list .item span.comment span.date {
      font-size: 14px;
      float: left;
      color: #474D61;
      display: inline-block;
      float: left;
      padding-top: 2px;
    }

    .comment-area-content .comment-list .item span.comment article {
      width: 100%;
      display: block;
      float: left;
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: #BBB4C4;
      letter-spacing: -0.3px;
      padding-top: 4px;
      font-weight: 400;
      line-height: 20px;
      word-break: break-all;
      -webkit-font-smoothing: antialiased;
    }

    .comment-area-content .comment-list .item span.comment article .blog_video {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      float: inherit !important;
      width: inherit !important;
      margin: 10px 0;
    }

    .comment-area-content .comment-list .item span.comment article .blog_video object {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .comment-area-content .comment-list .item .comment-actions {
      width: 100%;
      float: left;
    }

    .comment-area-content .comment-list .item .comment-actions a.delete {
      font-size: 14px;
      margin-top: 10px;
      float: left;
      color: #ab6b6b;
    }


    .comment-area-content div.comment .comment-actions span.posting,
    .comment-area-content .comment-list .item .comment-actions span.posting {
      font-size: 14px;
      margin-top: 10px;
      float: left;
      color: #ab6b6b9c;
      margin-left: 7px;
    }

    .comment-area-content .comment-list .item:hover  span.report-spam {
      opacity: 1;
    }

    .comment-area-content .comment-list .item  span.report-spam {
      font-size: 14px;
      margin-top: 3px;
      float: right;
      color: #ab6b6b;
      padding-left: 10px;
      font-weight: 400;
      opacity: 0;
      transition: .3s all;
    }


    .comment-area-content div {
      float: left;
      width: 100%;
    }

    .comment-area-content .pull-left {
      width: 50px;
      height: 50px;
      display: inline-block;
      float: left;
      margin-right: 17px;
      overflow: hidden;
      border-radius: 1px;
      margin-left: 15px;
    }

    .comment-area-content .pull-left img {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    .comment-area-content div.comment {
      width: calc(100% - 82px);
      display: block;
      float: left;
      padding-top: 3px;
      transition: .3s all;
    }

    .comment-area-content div.comment .comment-info {
      width: 100%;
      float: left;
      color: #474D61;
      font-size: 13px;
    }

    .comment-area-content div.comment .comment-info a {
      float: left;
      font-size: 15px;
      color: #CAA396;
      letter-spacing: -0.3px;
      padding-right: 5px;
      display: inline-block;
    }

    .comment-area-content div.comment .comment-info span::before {
      content: '•';
      padding-right: 4px;
    }

    .comment-area-content div.comment .comment-info span {
      font-size: 14px;
      float: left;
      color: #474D61;
      display: inline-block;
      float: left;
      padding-top: 2px;
    }

    .comment-area-content div.comment .comment-body {
      width: 100%;
      display: block;
      float: left;
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: #BBB4C4;
      letter-spacing: -0.3px;
      padding-top: 4px;
      font-weight: 400;
      line-height: 20px;
      -webkit-font-smoothing: antialiased;
      word-break: break-all;
    }

    .comment-area-content div.comment .comment-actions {
      width: 100%;
      float: left;
    }
.ad-content {
    display: block;
    width: 100%;
    float: left;
    margin: 30px 0px;
    padding: 0 14px;
}
    .comment-area-content div.comment .comment-actions a {
      font-size: 14px;
      float: left;
      color: #ab6b6b;
      margin-top: 10px;
    }


    [id^="wall_comment_"],
    [id^="video_comment_"],
    [id^="comic_comment_"],
    [id^="photo_comment_"],
    [id^="game_comment_"] {
      border-bottom: 1px solid rgba(112,93,136,0.20);
      margin-bottom: 22px;
      padding-bottom: 22px;
      position: relative;
    }

    [id^="reported_spam_"] {
      position: absolute;
      right: 0;
      top: 3px;
      float: right;
      opacity: 0;
      font-size: 14px;
      color: #ab6b6b;
      margin-top: 0;
    }

    [id^="reported_spam_"] a {
      margin-top: 0 !important;
    }


    .comment-area-content .comment:hover .comment-actions [id^="reported_spam_"] {
      opacity: 1;
    }

  /* ALERTS */
    #alerts_bottom {
      position: fixed;
      bottom: 0;
      right: 0;
        z-index: 99999;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    #alerts_bottom .alert {
      display: block;
        width: max-content;
        position: relative;
        padding: 8px 40px 8px 15px;
        border: none;
        border-radius: .25rem;
        margin: 0 20px 20px auto;
    }

    #alerts_bottom .close {
        padding: 6px 15px;
    }
    /*
    .alert-success {
      color: #ffffff;
        background-color: #57a557;
      max-width: calc(100% - 40px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .alert-danger {
      color: #ffffff;
        background-color: #842626;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .alert a {
      color: #fff;
      font-weight: 700;
    }

    .alert a:hover {
      text-decoration: underline;
    }
    /*

  /* PAGINATION */
    .n-pagination {
      width: 100%;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .n-pagination ul {
      padding: 0;
      display: block;
      margin: 20px 0 30px 0;
      text-align: center;
      float: left;
      list-style: none;
    }

    .n-pagination ul li  {
      line-height: 58px;
      width: 58px;
      height: 58px;
      font-weight: 400;
      margin-right: 10px;
      margin-bottom: 20px;
      background: inherit;
      border: 0;
      background-color: #ffffff08;
      border-radius: 2px !important;
      font-size: 18px;
      color: #a7abbb;
      float: left;
      transition: .3s all;
      display: none;
      visibility: hidden;
    }


    .n-pagination ul li:hover {
      background: #F54785;
      border-color: #F54785;
      color: #fff;
    }

    .n-pagination ul li:last-child {
      margin-right: 0;
    }


    .n-pagination ul li:first-child,
    .n-pagination ul li:last-child,
    .n-pagination ul li.active {
      display: inline-block;
      visibility: visible;
    }

    .n-pagination ul li.active a,
    .n-pagination ul li.active {
      background: #F54785 !important;
      border-color: #F54785 !important;
      color: #fff !important;
      font-weight: 700 !important;
      border-radius: 2px !important;
    }


    .n-pagination ul li a {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0 !important;
      border: none !important;
      border-radius: 2px !important;
      padding: 0 !important;
      line-height: 58px !important;
      background-color: inherit !important;
    }

    .n-pagination ul li i {
      float: left;
      display: inline-block;
      width: 100%;
      height: 100%;
    }


    .n-pagination ul li i::before {
      color: #fff;
      float: left;
      text-align: center;
      width: 100%;
      line-height: 59px;
      font-style: normal;
    }

    .n-pagination ul li i.next::before {
      content: '\e802';
    }

    .n-pagination ul li i.back::before {
      content: '\e801';
    }

  /* PRIMARY HEAD */
    .primary-head {
      width: 100%;
      float: left;
      margin-bottom: 5px;
    }

    .primary-head.videos {
      margin-bottom: 0;
    }

    .primary-head.featured {
      position: relative;
      top: 20px;
    }

    .primary-head i {
      color: #DE3580;
      float: left;
      font-size: 18px;
      position: relative;
      line-height: 18px;
      margin-right: 10px;
    }

    .primary-head .head {
      float: left;
      color: #fff;
      font-family: 'Montserrat';
      font-weight: 700;
      font-size: 17px;
      text-transform: uppercase;
    }

  /* FEATURED VIDEOS */
    .featured-videos {
      width: 100%;
      float: left;
    }

  /* RECENT VIDEOS */
    .recent-videos {
      width: 100%;
      float: left;
      margin-top: 40px;
      margin-bottom: 0;
    }

  /* CATEGORY VIDEOS */
    .category-videos {
      width: 100%;
      float: left;
      margin-top: 30px;
      margin-bottom: 0;
    }

  /* DISCOVER VIDEOS */
    .discover-videos {
      width: 100%;
      float: left;
      margin-top: 30px;
      margin-bottom: 30px;
    }

  /* V-CARDS */


  .overlay::after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 1;
      background: rgb(24,26,32);
      background: linear-gradient(0deg, rgba(24,26,32,0.9500175070028011) 0%, rgba(24,26,32,0.9164040616246498) 9%, rgba(24,26,32,0) 60%);
  }
  .v-cards .item:hover .info {
    bottom: 8px;
height: 50px;
pointer-events: none;
  }

    .v-cards {
      width: 100%;
      float: left;
      display: inline-block;
      position: relative;
    }

    .v-cards.scroll .row {
      white-space: nowrap;
      overflow-x: auto;
      overflow-y: unset;
      padding-top: 20px;
      flex-wrap: nowrap;
    }

    .v-cards .row::-webkit-scrollbar {
      width: 2px;
      height: 2px;
      border: none;
      background-color: rgba(255,255,255,0.2);
      overflow: hidden;
      border-radius: 0 3px 3px 0;
    }

    .v-cards .row::-webkit-scrollbar-thumb {
      background: #DE3580;
      border: none;
    }

    .v-cards .row::-webkit-scrollbar-corner {
      background: inherit;
    }

    .v-cards.scroll .col-md-2 {
      float: unset;
      display: inline-block;
    }
    .v-cards .col-6 {
      padding: 0 7.5px;
    }


    .v-cards .item {
      margin-bottom: 30px;
    }

    .v-cards .item {
      width: 100%;
      float: left;
      position: relative;
      transition: .2s all;
      margin-bottom: 15px;
      white-space: normal;
    }

    .v-cards .item:hover {
    }

    .v-cards .item a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
    }

    .v-cards .item .thumbnail {
      width: 100%;
      height: 135px;
      float: left;
      border-radius: 4px 4px 0 0;
      overflow: hidden;
      position: relative;
      background-color: rgba(0,0,0,0.5);
      transition: .3s all;
    }

    .v-cards.photos-album .item .thumbnail {
      height: 165px;
      border-radius: 4px;
    }


    .v-cards .item .thumbnail .content-actions {
      position: absolute;
      right: 10px;
      top: 10px;
      z-index: 99999;
    }

    .v-cards .item .thumbnail .content-actions a {
      border-radius: 2px;
      height: 26px;
      width: 26px;
      text-align: center;
      line-height: 26px;
      color: #fff !important;
      background-color: rgba(0,0,0,0.6);
      font-size: 11px;
      margin: 0 5px;
      display: none;
      visibility: hidden;
    }

    .v-cards .item .thumbnail .content-actions a.vis {
      display: inline-block;
      visibility: visible;
    }

    .v-cards .item .thumbnail .content-actions a:last-child {
      margin-right: 0;
    }


    .v-cards .item .thumbnail .sub-data {
      position: absolute;
      left: 28px;
          top: 20px;
    }

    .v-cards .item .thumbnail .sub-data span.quality {
      height: 26px;
          padding: 0px 8px;
      display: inline-block;
      float: left;
      border-radius: 3px 0 0 3px;
      background-color: #DE3580;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 27px;
      color: #fff;
      position: relative;
      z-index: 0;
    }
    .v-cards .item .thumbnail .sub-data span.duration {
      height: auto;
          color: #fff;
          font-weight: 400;
          font-size: 14px;
          padding: 5px 18px;
          backdrop-filter: blur(10px);
          z-index: 1;
          background-color: rgb(0 0 0 / 30%);
          border-radius: 3px;
          display: inline-block;
          float: left;
          left: -1px;
          position: relative;
          z-index: 0;
          line-height: 27px;
    }

    .discover-videos .v-cards .item .thumbnail:hover img,
    .recent-videos .v-cards .item .thumbnail:hover img,
    .category-videos .v-cards .item .thumbnail:hover img,
    .featured-videos .v-cards .item .thumbnail:hover img {
      display: none;
      visibility: hidden;
    }

    .discover-videos .v-cards .item .thumbnail:hover .sub-data,
    .recent-videos .v-cards .item .thumbnail:hover .sub-data,
    .category-videos .v-cards .item .thumbnail:hover .sub-data,
    .featured-videos .v-cards .item .thumbnail:hover .sub-data {
      display: none;
      visibility: hidden;
    }


    .category-videos .v-cards .item .thumbnail.cat-album:hover img,
    .category-videos.photos-album .v-cards .item .thumbnail:hover img,
    .category-videos.photos .v-cards .item .thumbnail:hover img {
      display: inline-block;
      visibility: visible;
    }




    .v-cards .item .thumbnail span.vloader {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      position: absolute;
      left: 0;
      top: 0;
    }

    .v-cards .item .thumbnail img {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
      object-fit: cover;
    }

    .v-cards .item .info {
      position: absolute;
      padding: 0px 29px;
      bottom: 14px;
      color: white;
      transition: 0.3s ease;
      height: 24px;
      overflow: hidden;
      z-index: 999;
    }

    .v-cards .item .info span.v-name {
      width: 100%;
      float: left;
      height: 22px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      padding-bottom: 22px;
      font-size: 18px;
      transition: .3s all;
      line-height: 20px;
    }

    .v-cards .item:hover span.v-name {
    }

    .v-cards .item .info ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      float: left;
    }

    .v-cards .item .info ul li {
      float: left;
      margin-right: 4px;
      font-size: 16px;
      color: #C5C7C5;
      letter-spacing: -0.5px;
    }

    .v-cards .item .info ul li i {
      margin-right: 5px;
    }

    .v-cards .item .info ul li:last-child {
      margin-right: 0;
    }

  /* HERO CONTENT */
    .hero-content {
      width: 100%;
      float: left;
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .hero-content .what-is-it {
      width: 100%;
      float: left;
      margin-bottom: 15px;
    }

    .hero-content .what-is-it .head {
      width: 100%;
      float: left;
      margin-bottom: 5px;
    }


    .hero-content .what-is-it i {
      color: #DE3580;
      float: left;
      font-size: 18px;
      margin-right: 10px;
      position: relative;
      line-height: 18px;
      top: 1px;
    }

    .hero-content .what-is-it h1.text {
      float: left;
      font-size: 18px;
      color: #fff;
      font-family: 'Montserrat';
      font-weight: 700;
      padding: 0;
      margin: 0;
      letter-spacing: -0.5px;
    }

    .hero-content .what-is-it p {
      color: rgba(255,255,255,0.6);
      width: 100%;
      float: left;
      padding: 0;
      margin: 0;
      font-size: 14px;
      line-height: 26px;
      letter-spacing: -0.3px;
    }

    .hero-content ul.friends {
      width: 100%;
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
      display: inline-block;
      text-align: center;
      float: left;
    }

    .hero-content ul.friends li {
      float: left;
      margin-right: 5px;
      height: 31px;
      line-height: 31px;
      display: inline-block;
      border-radius: 2px;
      transition: .3s all;
      padding: 0 15px;
      background-color: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: -0.3px;
      margin-bottom: 5px;
    }

    .hero-content ul.friends li:hover {
      background-color: #DE3580;
      color: #fff;
    }

    .hero-content ul.friends li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
    }

  /* AD HEAD */
    span.ad-head {
      width: 100%;
      text-align: center;
      display: inline-block;
      float: left;
      color: #fff;
      margin-bottom: 10px;
      font-size: 12px;
      color: #fff;
      letter-spacing: 1.5px;
      font-family: 'Montserrat';
      font-weight: 400;
      line-height: 12px;
      text-transform: uppercase;
    }

  /* VIDEO EDIT */

    .video-edit-thumbnails img {
      cursor: pointer;
      width: 100%;
      float: left;
      margin-bottom: 15px;
      position: relative;
    }

    .video-edit-thumbnails img.tmb-active {
      border: 11px solid #de3580;
      box-sizing: border-box;
    }

  /* HOME AD */
    .home-ad-content {
      width: 100%;
      float: left;
    }
    .text-container {
    position: absolute;
    top: 250px;
    left: 0;
    z-index: 2;
}

    .home-ad-content.mbottom {
      margin-bottom: 45px;
    }
    .home-ad-content .content {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .home-ad-content .content img {
      width: 100%;
      float: left;
    }

/* VIDEO PAGE */
  .video-page {
    width: 100%;
    float: left;
    position: relative;
    padding-top: 15px;
    margin-bottom: 45px;
  }

  .video-page .main {
    width: 100%;
    float: left;
  }

  /* VIDEO CONTENT */

    .video-page .v-content {
      width: 100%;
      background-color: #000;
      float: left;
      position: relative;
      margin-bottom: 26px;
    }

    .video-page .img-content {
      width: 100%;
      background-color: rgba(0,0,0,0.6);
      position: relative;
      margin-bottom: 10px;
      margin: 0 auto;
      display: inline-block;
      text-align: center;
      max-height: 800px;
    }

    .video-page .img-content img {
      max-width: 100%;
      background-size: 100%;
      background-repeat: no-repeat;
      display: inline-block;
      max-height: 800px;
      height: auto;
    }

    .video-page.photo .v-header {
      margin-top: 10px;
    }


    .video-page .v-header {
      width: 100%;
      float: left;
    }

    .video-page .v-header .func-btn {
      width: 100%;
      float: left;
    }

    .video-page .v-header .func-btn a {
      width: 48.5%;
      float: left;
      height: 45px;
      line-height: 45px;
      text-align: center;
      color: #fff !important;
      letter-spacing: 0.5px;
      font-size: 14px;
      border-radius: 3px;
      background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
      font-family: 'Montserrat';
      font-weight: 700;
      text-transform: uppercase;
      transition: .3s all;
      margin-bottom: 15px;
      outline: none;
      border: none;
      cursor: pointer;
    }

    .video-page .v-header .func-btn a:nth-child(2) {
      float: right;
    }

    .video-page .v-header h1 {
      float: left;
      position: relative;
      padding: 0;
      margin: 0;
      line-height: 24px;
      font-size: 21px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      width: 100%;
      font-family: 'Montserrat';
      padding-top: 5px;
    }

    .video-page .v-header h1 i {
      color: #DE3580;
      margin-right: 7px;
    }

    .video-page .v-header .functions {
      float: left;
      position: relative;
      margin-top: 10px;
      width: 100%;
    }

    .video-page .v-header .functions ul.ibtns {
      list-style: none;
      padding: 0;
      margin: 0;
      float: left;
      width: calc(100% - 30px);
    }

    .video-page .v-header .functions ul.ibtns li {
      float: left;
      height: 32px;
      border-radius: 2px;
      background-color: #373444;
      text-align: center;
      color: #7F7D8A;
      line-height: 32px;
      transition: .3s all;
      margin-right: 6px;
    }



    .video-page .v-header .functions ul.ibtns li:last-child {
      margin-right: 0;
    }


    .video-page .v-header .functions ul.ibtns li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 0 10px;
    }

    .video-page .v-header .functions ul.ibtns li:hover {
      background-color: #DE3580;
      color: #fff;
    }
    .video-page .v-header .functions ul.ibtns li:hover i {
      color: #fff;
    }

    .video-page .v-header .functions ul.ibtns li span.text {
      margin-left: 6px;
      color: #fff;
      font-size: 14px;
      line-height: 33px;
	      font-weight: 500;
      float: left;
    }

    .video-page .v-header .functions ul.ibtns li:last-child {
      margin-right: 0;
    }

    .video-page .v-header .functions ul.ibtns li i {
      line-height: 32px;
      padding: 0;
      margin: 0;
      float: left;
      text-align: center;
    }


    .video-page .v-header .functions .more {
      float: left;
      line-height: 32px;
      color: #fff !important;
      margin-left: 20px;
    }

    .video-page .v-header .functions .more i {
      line-height: 32px;
      padding: 0;
      margin: 0;
    }

    .video-page .v-header .functions .dropdown {
      position: absolute;
      right: 0;
      top: 28px;
      display: none;
      visibility: hidden;
    }
    .video-page .v-header .functions .dropdown.download {
      right: 193px;
      top: 30px;
    }

    .video-page .v-header .functions .dropdown.download  ul {
      width: 162px;
    }

    .video-page .v-header .functions .dropdown.active {
      display: inline-block;
      visibility: visible;
    }

    .video-page .v-header .functions .dropdown ul {
      list-style: none;
      padding: 10px 0 10px 0;
      margin: 0;
      border-radius: 6px 0 6px 6px;
      background-color: #373444;
      width: 92px;
      float: left;
    }

    .video-page .v-header .functions .dropdown ul li {
      width: 100%;
      float: left;
      font-size: 14px;
      line-height: 14px;
      color: #fff;
      padding: 0 14px;
      margin: 0;
      transition: .3s all;
    }

    .video-page .v-header .functions .dropdown ul li:hover {
      background-color: rgba(0,0,0,0.2);
    }

    .video-page .v-header .functions .dropdown ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 7px 0 7px 0;
    }

    .video-page .v-header .description {
      width: 100%;
      float: left;
      margin-top: 15px;
    }

    .video-page .v-header .description p {
      width: 100%;
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: #7F7D8A;
      line-height: 19px;
      font-weight: 400;
      letter-spacing: -0.3px;
    }

    .video-page .v-header .tags {
      width: 100%;
      float: left;
      margin-top: 10px;
    }

    .video-page .v-header .tags ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .video-page .v-header .tags ul li {
      float: left;
      color: #7F7D8A;
      font-size: 14px;
      line-height: 14px;
      margin-right: 15px;
      position: relative;
      transition: .3s all;
      margin-bottom: 10px;
    }


    .video-page .v-header .tags ul li:hover {
      color: #fff;
    }

    .video-page .v-header .tags ul li:hover i {
      color: #DE3580;
    }

    .video-page .v-header .tags ul li i {
      float: left;
      padding: 0;
      margin: 0 5px 0 0;
      line-height: 16px;
    }

    .video-page .v-header .info {
      width: 100%;
      float: left;
      margin-top: 10px;
    }
    .video-page .v-header .info ul.data {
      list-style: none;
      padding: 0 15px 0 0;
      margin: 0 15px 0 0;
      float: left;
      border-right: 1px solid rgba(255,255,255,0.1);
    }

    .video-page .v-header .info ul.data li {
      font-weight: 700;
      text-transform: uppercase;
      margin-right: 15px;
      font-size: 12px;
      color: #DE3580;
      float: left;
    }

    .video-page .v-header .info ul.data li:last-child {
      margin-right: 0;
    }

    .video-page .v-header .info ul.cat {
      list-style: none;
      padding: 0;
      float: left;
      width: auto;
      margin: 0;
    }

    .video-page .v-header .info ul.cat li {
      font-weight: 400;
      margin-right: 15px;
      font-size: 12px;
      color: #fff;
      float: left;
    }

    .video-page .v-header .info ul.cat li i {
      margin-right: 7px;
      display: inline-block;
    }

    .video-page .v-header .subscribe {
      width: 100%;
      float: left;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 10px 0px 14px 0;
      margin-top: 8px;
    }

    .video-page .v-header .subscribe.photo {
      margin-top: 10px;
    }

    .video-page .v-header .subscribe .user {
      float: left;
      width: calc(100% - 200px);
    }
    .video-page .v-header .subscribe .user a {
      float: left;
    }

    .video-page .v-header .subscribe .user .avatar {
      width: 52px;
      height: 52px;
      display: inline-block;
      float: left;
      border-radius: 100px;
      overflow: hidden;
      margin-right: 10px;
      margin-top: 4px;
    }

    .video-page .v-header .subscribe .user .avatar img {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    .video-page .v-header .subscribe .user .info {
      width: calc(100% - 62px);
      float: left;
      position: relative;
    }


    .video-page .v-header .subscribe .user .info span.username {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: -0.3px;
      font-family: 'Montserrat';
      width: 100%;
      float: left;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
      line-height: 16px;
    }

    .video-page .v-header .subscribe .user .info span.subscribers {
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      font-weight: 400;
    }

    .video-page .v-header .subscribe .button {
      float: right;
      margin-top: 10px;
    }

    .video-page .v-header .subscribe .button a {
      float: left;
      height: 36px;
      padding: 0 30px;
      line-height: 36px;
      text-align: center;
      color: #fff !important;
      letter-spacing: 0.5px;
      font-size: 14px;
      border-radius: 3px;
      background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
      font-family: 'Montserrat';
      font-weight: 700;
      text-transform: uppercase;
    }

  /* ASIDE */

    .video-page aside {
      width: 100%;
      float: left;
      margin-top: 15px;
      position: relative;
    }

    .video-page aside .side-ad {
      width: 300px;
      margin: 0 auto;
    }

    .video-page aside .side-ad.mbottom {
      margin-bottom: 30px;
    }

    .video-page aside .side-ad img {
      width: 300px;
      height: 250px;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    .video-page aside .related-videos {
      width: 100%;
      float: left;
    }


    .video-page aside .related-videos .full {
      width: 100%;
      float: left;
    }

  /* COMMENTS */

  .video-page .v-comments {
    width: 100%;
    float: left;
    margin-top: 30px;
  }

  .video-page .v-comments .form-content {
    width: 100%;
    float: left;
  }

  .video-page .v-comments .form-content .item {
    width: 100%;
    float: left;
    margin-bottom: 5px;
  }

  .video-page .v-comments .form-content .item textarea {
    width: 100%;
    min-height: 150px;
    outline: none;
    border: none;
    border-radius: 3px;
    background-color: #373444;
    padding: 20px;
    font-size: 14px;
    color: #fff;
  }

  .video-page .v-comments .form-content .item button {
    float: right;
    height: 32px;
    line-height: 32px;
    outline: none;
    background-color: #373444;
    border: none;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat';
    letter-spacing: -0.4px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 20px;
  }

  .video-page .v-comments .form-content .item button:hover {
    background-color: #DE3580;
  }

  .video-page .v-comments .comment-list {
    width: 100%;
    float: left;
    margin-top: 15px;
  }

  .video-page .v-comments .comment-list .item {
    width: 100%;
    float: left;
    margin-bottom: 30px;
  }

  .video-page .v-comments .comment-list .item .avatar {
    width: 52px;
    height: 52px;
    margin-right: 15px;
    border-radius: 100px;
    overflow: hidden;
    float: left;
  }

  .video-page .v-comments .comment-list .item .avatar img {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
  }

  .video-page .v-comments .comment-list .item .data {
    width: calc(100% - 67px);
    float: left;
  }

  .video-page .v-comments .comment-list .item .data .top {
    width: 100%;
    float: left;
  }

  .video-page .v-comments .comment-list .item .data .top span.username {
    font-weight: 700;
    color: #F43591;
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
  }

  .video-page .v-comments .comment-list .item .data .top span.date {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
  }

  .video-page .v-comments .comment-list .item .data .top span.date i {
    padding: 0;
    margin: 0 3px 0 0;
    font-size: 12px;
  }

  .video-page .v-comments .comment-list .item .data .comment {
    width: 100%;
    float: left;
    margin-top: 7px
  }

  .video-page .v-comments .comment-list .item .data .comment p {
    width: 100%;
    float: left;
    color: #fff;
    letter-spacing: -0.3px;
    font-size: 16px;
    line-height: 20px;
  }

  .video-page .v-comments .comment-list .item .data .func {
    width: 100%;
    float: left;
  }

  .video-page .v-comments .comment-list .item .data .func ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .video-page .v-comments .comment-list .item .data .func ul li {
    float: left;
    margin-right: 15px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 13px;
  }

  .video-page .v-comments .comment-list .item .data .func ul li i {
    margin: 0 7px 0 0;
    padding: 0;
    display: inline-block;
    line-height: 13px;
  }

  .video-page .v-comments .comment-list .item .data .func ul li:first-child i {
    position: relative;
    top: -1px;
  }

  .video-page .v-comments .comment-list .item .data .func ul li:hover {
    color: #fff;
  }

/* VIDEOS FILTER */
  .videos-filter {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 15px;
  }

  .videos-filter .sort {
    float: left;
    position: relative;
    top: 2px;
    margin: 5px 0 0 0;
  }

  .videos-filter .sort ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .videos-filter .sort ul li {
    float: left;
    margin-right: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 25px;
    letter-spacing: -0.3px;
  }

  .videos-filter .sort ul li:last-child {
    margin-right: 0;
  }

  .videos-filter .sort ul li i {
    margin-right: 5px;
  }

  .videos-filter .sort ul li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
    cursor: pointer;
  }

  .videos-filter .sort ul li:hover {
    color: #DE3580;
  }
  .videos-filter .sort ul li.active {
    color: #DE3580;
    font-weight: 700;
  }


  .videos-filter .sort-mobile {
    float: right;
        position: relative;
        top: 0px;
        margin: 0px 0 0 0;
  }

  .videos-filter .sort-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .videos-filter .sort-mobile ul li {
    float: left;
    margin-right: 1px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 25px;
    letter-spacing: -0.3px;
  }

  .videos-filter .sort-mobile ul li:last-child {
    margin-right: 0;
  }

  .videos-filter .sort-mobile ul li i {
    margin-right: 0px;
        padding: 5px;
  }

  .videos-filter .sort-mobile ul li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
    cursor: pointer;
  }

  .videos-filter .sort-mobile ul li:hover {
    color: #DE3580;
  }
  .videos-filter .sort-mobile ul li.active {
    color: #DE3580;
        font-weight: 700;
        border-radius: 2px;
    margin-top: -1px;
        border: solid 2px #DE3580;
  }

  .videos-filter .filter {
    float: left;
    position: relative;
  }

  .videos-filter .filter .quality {
    float: left;
    margin-right: 20px;
        margin-top: 1px;
  }

  .videos-filter .filter .quality a {
    float: left;
    margin-right: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: -0.3px;
    line-height: 20px;
    margin-top: 2px;
    text-transform: uppercase;
    padding-top: 2px;
  }

  .videos-filter .filter .quality a.active {
    color: #DE3580 !important;
    font-weight: 700;
    padding: 0 6px;
    border-radius: 2px;
    border: 2px solid #DE3580;
    padding-top: 0;
  }

  .videos-filter .filter .quality a.active:hover {
    color: #DE3580 !important;
  }

  .videos-filter .filter .quality a:hover {
    color: #fff !important;
  }


  .primary-head .filter .quality {
    float: left;
    margin-left: 14px;
    margin-top: -5px;
  }
  .primary-head .filter  {
position: relative;
width: auto;
  }

  .primary-head .filter .quality a {
    float: left;
    margin-right: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: -0.3px;
    line-height: 20px;
    margin-top: 2px;
    text-transform: uppercase;
    padding-top: 2px;
  }

  .primary-head .filter .quality a.active {
    color: #DE3580 !important;
    font-weight: 700;
    padding: 0 6px;
    border-radius: 2px;
    border: 2px solid #DE3580;
    padding-top: 0;
  }

  .primary-head .filter .quality a.active:hover {
    color: #DE3580 !important;
  }

  .primary-head .filter .quality a:hover {
    color: #fff !important;
  }



  .videos-filter .filter .dropdown {
    float: left;
    margin-right: 20px;
  }

  .videos-filter .filter .dropdown a {
    float: left;
    margin-right: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: -0.3px;
    line-height: 25px;
    padding-top: 2px;
    cursor: pointer;
  }

  .videos-filter .filter .dropdown a:hover {
    color: #DE3580 !important;
  }

  .videos-filter .filter .dropdown a i {
    margin-left: 3px;
    position: relative;
    top: 1px;
  }

  .videos-filter .filter .toggle {
    position: absolute;
    z-index: 9999;
  }

  .videos-filter .filter .toggle.timeline {
    display: none;
    visibility: hidden;
    left: 80px;
    top: 30px;
  }
  .videos-filter.albums .filter .toggle.timeline {
    left: 0;
  }
  .videos-filter.albums .filter .toggle.categories {
    left: 95px;
  }

  .videos-filter .filter .toggle.timeline.active {
    display: inline-block;
    visibility: visible;
  }


  .videos-filter .filter .toggle.interested {
    display: none;
    visibility: hidden;
    left: -20px;
    top: 30px;
  }

  .videos-filter .filter .toggle.interested.active {
    display: inline-block;
    visibility: visible;
  }

  .videos-filter .filter .toggle.avatar {
    display: none;
    visibility: hidden;
    left: 85px;
    top: 30px;
  }

  .videos-filter .filter .toggle.avatar.active {
    display: inline-block;
    visibility: visible;
  }

  .videos-filter .filter .toggle.gender {
    display: none;
    visibility: hidden;
    left: 170px;
    top: 30px;
  }

  .videos-filter .filter .toggle.gender.active {
    display: inline-block;
    visibility: visible;
  }
  .videos-filter .filter .toggle.categories.active {
    display: inline-block;
    visibility: visible;
  }

  .videos-filter .filter .toggle.categories {
    left: 175px;
    display: none;
    visibility: hidden;
    top: 30px;
  }

  .videos-filter .filter .toggle.categories ul {
    max-height: 220px;
    overflow-y: auto;
    width: 200px;
  }

  .videos-filter .filter .toggle.categories ul::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    border: none;
    background-color: inherit;
    overflow: hidden;
    border-radius: 0 3px 3px 0;
  }

  .videos-filter .filter .toggle.categories ul::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border: none;
  }

  .videos-filter .filter .toggle.categories ul::-webkit-scrollbar-corner {
    background: inherit;
  }


  .videos-filter .filter .toggle ul {
    list-style: none;
    padding: 10px 0 10px 0;
    margin: 0;
    border-radius: 2px;
    background-color: #373444;
    width: 160px;
    float: left;
  }

  .videos-filter .filter .toggle ul li {
    width: 100%;
    float: left;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    padding: 0 20px;
    margin: 0;
    transition: .3s all;
  }

  .videos-filter .filter .toggle ul li:hover {
    background-color: rgba(0,0,0,0.2);
  }

  .videos-filter .filter .toggle ul li.active {
    background-color: #DE3580;
  }

  .videos-filter .filter .toggle ul li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
    padding: 7px 0 7px 0;
  }

/*----UPLOAD CONTENT----*/
  section.upload-content {
    width: 100%;
    float: left;
  }

  section.upload-content h1 {
    width: 100%;
    display: block;
    float: left;
    padding: 0;
    margin: 30px 0 20px 0;
    text-align: center;
    font-size: 34px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.3px;
  }

/*----UPLOAD----*/
  h1.cw-head {
    width: 100%;
    text-align: center;
    float: left;
    display: inline-block;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    padding: 0;
    margin: 30px 0 10px 0;
  }

  h1.cw-head b {
    color: #DE3580;
  }
  .fileupload-theme-dragdrop {
    width: 100%;
    float: left;
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    position: relative;
    padding: 30px 30px;
    margin-bottom: 30px;
  }

  .fileupload-theme-dragdrop h3.fileupload-input-caption {
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
  }

  .fileupload-theme-dragdrop .fileupload-input-inner i {
    text-align: center;
    width: 100%;
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
  }

  .fileupload-theme-dragdrop .fileupload-input-inner p {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #fff;
  }

  .fileupload-theme-dragdrop .fileupload-input-inner .btn {
    float: left;
    width: 100%;
    line-height: 45px !important;
    text-align: center;
    color: #fff !important;
    letter-spacing: 0.5px;
    font-size: 14px;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
    background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
    background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
    font-family: 'Montserrat';
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s all;
    margin-top: 5px;
    margin-bottom: 15px;
    outline: none;
    border: none;
    cursor: pointer;
  }

  .fileupload-theme-dragdrop .fileupload-input-inner .btn:hover {
    box-shadow: 0 10px 20px 0 rgba(222,53,128,0.19);
  }

/*----FORM CONTENT----*/
  .form-content {
    width: 100%;
    float: left;
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    position: relative;
    padding: 30px 30px;
    margin-bottom: 30px;
  }

  .modal-body {
    color: #a9a9a9;
  }

  .modal-content {
      background-color: #1d1d1d;
  }
  .content-row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .content-row a, .content-row a:focus {
      color: #bbb;
  }
  .thumb-overlay {
      position: relative;
      overflow: hidden;
      position: relative;
  }

  .thumb-overlay img {
    background-color: #000 !important;
    background: #000 !important;
  }
  #cvideos-container a:hover img {
    background-color: #000 !important;
    background: #000 !important;

  }

  .thumb-overlay video {
    width: 100% !important;
    height: 100% !important;
    display: inline-block !important;
    float: left !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;

  }
  .img-responsive {
      border-radius: 0!important;
      width: 100%;
      height: auto;
  }
  .thumb-overlay .duration {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 35px;
      border: none;
      text-align: right;
      padding: 10px 10px 0 0!important;
      color: #fff;
      font-size: 14px;
      text-shadow: 1px 1px 4px rgba(0,0,0,.5);
      background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
      background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
      background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#66000000',GradientType=0 );
  }
  .hd-text-icon {
      font-weight: 900;
      font-family: Helvetica,Arial,sans-serif;
      letter-spacing: 0;
  }
  .content-truncate {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      max-width: 100%;
      display: block;
  }
  .modal-footer {
    border-color: rgba(255,255,255,0.1) !important;
    padding-top: 16px !important;
  }

  .modal-footer button {

  }
  #commentsMediaModal .modal-footer {
      padding-top: 0;
  }

  .modal-footer {
      border: none;
  }
  .modal-footer {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: end;
      justify-content: flex-end;
      padding: 1rem;
      border-top: 1px solid #e9ecef;
  }

  .form-content.comment #comments_login_register {
    color: #fff;
    width: 100%;
    float: left;
    margin-top: 10px;
    font-size: 14px;
  }

  .form-content.comment {
    padding: 0;
    background: inherit;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .form-content.comment .comments-list {
    width: 100%;
    float: left;
    margin-top: 20px;
  }

  .form-content.comment .comments-list .comment-item {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    position: relative;
  }

  .form-content.comment .comments-list .comment-item .comment-user {
    width: 52px;
    height: 52px;
    margin-right: 15px;
    border-radius: 100px;
    overflow: hidden;
    float: left;
  }

  .form-content.comment .comments-list .comment-item .comment-user img {
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
  }

  .form-content.comment .comments-list .comment-item .comment-info {
    width: calc(100% - 67px);
    float: left;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body,
  .form-content.comment .comments-list .comment-item .comment-info .comment-user-info,
  .form-content.comment .comments-list .comment-item .comment-info .comment-text {
    width: 100%;
    float: left;
  }

  .modal-content {
      background-color: #222;
  }

  .modal-header {
    border: none;
  }

  .modal-title {
    color: #fff;
  }

  .modal-body {
    color: #fff;
  }

  .modal-footer {
    border: none;
  }

  .modal-body {
    padding: 0 1rem;
  }
  #insert_media {

      float: left;
      height: 45px;
      line-height: 45px;
      text-align: center;
      color: #fff !important;
      letter-spacing: 0.5px;
      font-size: 14px;
      border-radius: 3px;
      background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
      background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
      font-family: 'Montserrat';
      font-weight: 700;
      text-transform: uppercase;
      transition: .3s all;
      margin-top: 5px;
      margin-bottom: 15px;
      outline: none;
      border: none;
      cursor: pointer;
      background-color: rgba(0,0,0,0.3) !important;
      background-image: unset !important;
      width: 45px;
      margin-left: 7px;
  }

  #insert_media i {
      position: relative;
      top: -3px;
  }
  .form-content.comment .comments-list .comment-item .comment-info .comment-text img {

    width: 200px;
    height: 200px;
    float: left;
    margin: 20px 0px;
  }

  .form-content.comment #comments_sort {
    float: right;
    color: #fff !important;
  }
  .modal-backdrop {
    z-index: 99 !important;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-user-info a.comment-username {
    font-weight: 700;
    color: #F43591 !important;
    font-size: 15px;
    line-height: 15px;
    margin-right: 10px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-user-info span.comment-add-time {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    margin-right: 4px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-user-info span.comment-add-time i {
    margin-right: 4px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-user-info span.comment-flagged i {
    color: #e04e4e;
    font-size: 13px;
  }


  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-text {
    width: 100%;
    float: left;
    color: #fff;
    letter-spacing: -0.3px;
    font-size: 16px;
    line-height: 20px;
  }


  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-actions {
    position: absolute;
    right: 0;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-actions i {
    color: #fff;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta {
    width: 100%;
    float: left;
    margin-top: 15px;
    position: relative;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .vote-box {
    float: left;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 13px;
    margin-right: 9px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .vote-box span.vote-up {
    margin-right: 13px !important;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .vote-box i {
    color: rgba(255,255,255,0.5);
    margin: 0 7px 0 0;
    padding: 0;
    display: inline-block;
    line-height: 13px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .vote-box span.vote-up:hover i,
  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .vote-box span.vote-down:hover i {
    color: #fff;
  }


  #commentsMediaModal .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    width: 50%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #ccc;
  }

  #commentsMediaModal .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    width: 50%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #ccc;
  }

  #commentsMediaModal .nav-tabs .nav-item.show .nav-link, #commentsMediaModal .nav-tabs .nav-link.active {
      color: #fff;
      background-color: #1d1d1d;
      border: none;
  }

  #commentsMediaModal .tab-content>.active {
      background-color: #1d1d1d;
  }

  #commentsMediaModal .nav-tabs .nav-link:hover {
    color: #fff;
      background-color: #6a6a6a;
  }

  #commentsMediaModal .nav-tabs .nav-link {
    color: #fff;
      background-color: #4a4a4a;
  }

  #commentsMediaModal .nav-tabs .nav-link.active:hover {
      background-color: #1d1d1d;
  }

  #commentsMediaModal .nav-tabs {
    border: none;
  }

  #commentsMediaModal .modal-body {
    padding: 0;
  }

  #commentsMediaModal .tab-pane {
    padding: 1rem 1rem 0;
    color: #fff;
  }

  #commentsMediaModal input {
      color: #fff;
      background-color: #151515;
      border: 1px solid #353535;
    max-width: 40%;
    float: left;
  }

  #commentsMediaModal input:focus {
    box-shadow: none;
  }


  #commentsMediaModal ::-webkit-input-placeholder { /* Edge */
    color: #6a6a6a;
  }

  #commentsMediaModal :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #6a6a6a;
  }

  #commentsMediaModal ::placeholder {
    color: #6a6a6a;
  }

  #commentsMediaModal .tab-content {
    min-height: 300px;
    position: relative;
  }


  #commentsMediaModal .content-info {
    height: 40px;
      color: #bfbfbf;
    font-size: 14px;
  }

  #commentsMediaModal .pagination {
    margin: 0!important;
    position: absolute;
      left: 1rem;
      bottom: -2.7rem;
  }

  #commentsMediaModal .modal-footer {
    padding-top: 0;
  }

  #cvideos-container {
    padding: 10px 0 0;
  }

  #cvideos-loader {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5px;
    left: 0;
    right: 0;
  }

  #cvideos-loader i {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    opacity: .4;
  }

  #info-cvideos {
    float: right;
    margin-top: 5px;
  }

  #info-cvideos i {
    color: #6a6a6a;
  }

  #cphotos-container {
    padding: 10px 0 0;
  }

  #cphotos-loader {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5px;
    left: 0;
    right: 0;
  }

  #cphotos-loader i {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    opacity: .4;
  }

  #info-cphotos {
    float: right;
    margin-top: 5px;
  }

  #info-cphotos i {
    color: #6a6a6a;
  }

  #comments_btn_container {
    margin-bottom: 15px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .comment-reply {
    float: left;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 13px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .comment-reply a {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px;
    line-height: 13px;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .comment-reply:hover a,
  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .comment-reply:hover i {
    color: #fff !important;
  }

  .form-content.comment .comments-list .comment-item .comment-info .comment-body .comment-meta .comment-reply i {
    color: rgba(255,255,255,0.5) !important;
    margin: 0 7px 0 0;
    padding: 0;
    display: inline-block;
    line-height: 13px;
  }
  .form-content.comment textarea {
    background-color: rgba(0,0,0,0.3) !important;
    color: #fff !important;
  }

  .form-content.comment .textarea {
    margin-bottom: 10px;
  }

  .form-content.comment #comments_btn_container a.subbtn {
    background-color: rgba(0,0,0,0.3) !important;
    background-image: unset !important;
    width: 140px;

  }

  .form-content.comment #comments_btn_container a.subbtn:hover {
    background-color: #C32963 !important;
  }


  .form-content.comment .comments-list .comment-item .comment-replies {
    width: calc(100% - 67px);
    float: left;
    margin-left: 67px;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .comments-list.replies-list {
    margin-top: 10px;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .replies-show-hide-container {
    width: 100%;
    float: left;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .replies-show-hide-container a {
    float: left;
    height: 32px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    color: #fff !important;
    line-height: 32px;
    transition: .3s all;
    width: calc(25% - 5px);
    margin-right: 10px;
    padding: 0 12px;
    font-size: 14px;
    width: auto;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .replies-show-hide-container a:hover {
    background-color: #EF3E93;
  }


  .form-content.comment .comments-list .comment-item .comment-replies .replies-show-hide-container a i {
    font-size: 12px;
    position: relative;
    margin-left: 5px;
    top: 0px;
  }


  .form-content.comment .comments-list .comment-item .comment-replies .comment-reply-container {
    width: 100%;
    float: left;
    margin-top: 14px;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .comment-reply-container textarea {
    width: 100%;
    min-height: 95px;
    display: block;
    float: left;
    outline: none;
    padding: 0;
    margin: 0 0 15px 0;
    border-radius: 2px;
    border: none;
    background-color: #fff;
    padding: 20px;
    color: #616577;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.3px;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .comment-reply-container a.insert-media {
    display: none;
    visibility: hidden;
  }

  .form-content.comment .comments-list .comment-item .comment-replies .comment-reply-container a.btn-secondary {
    float: left;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: #fff !important;
    letter-spacing: 0.5px;
    font-size: 14px;
    border-radius: 3px;
    background-color: #EF3E93;
    font-family: 'Montserrat';
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s all;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 0 20px !important;
    margin-right: 10px;
    margin-bottom: 10px;
  }


  .form-content .current-avatar {
    margin: 0 auto;
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form-content .edit-photo-content {
    position: relative;
  }

  .form-content .edit-photo-content img {
    width: 100%;
    display: inline-block;
    float: left;
  }

  .form-content .edit-photo-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .form-content .curcover {
    width: 100%;
    float: left;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .form-content .edit-photo-content .edit-photo-actions {
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 999;
  }

  .form-content .edit-photo-content .edit-photo-actions a {
    border-radius: 2px;
    height: 26px;
    width: 26px;
    text-align: center;
    line-height: 26px;
    color: #fff !important;
    background-color: rgba(0,0,0,0.6);
    font-size: 11px;
    margin: 0 5px;
    display: inline-block;
    float: left;
  }

  .form-content .edit-photo-content .edit-photo-caption {
    width: 100%;
    float: left;
    margin-top: 10px;
  }

  .form-content .edit-photo-content .edit-photo-caption input {
    width: 100%;
    height: 50px;
    background: #fff;
    border-radius: 2px;
    outline: none;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    color: #33353E;
  }

  .form-content .avatar-uploader {
    width: 100%;
  }

  .form-content .avatar-uploader .custom-file-label {
    margin: 0;
    color: #000 !important;
    font-size: 15px !important;
    padding: 7px 0 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .form-content .features {
    width: 100%;
    float: left;
    margin-bottom: 15px;
  }

  .form-content .features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: inline-block;
    text-align: center;
  }

  .form-content .features ul li {
    display: inline-block;
    font-size: 13px;
    color: #fff;
    margin: 0 10px;
  }

  .form-content .features ul li i {
    margin-right: 5px;
  }


  .form-content.nopad {
    padding: 25px 30px 14px 30px;
  }

  .form-content .input {
    width: 100%;
    float: left;
    margin-bottom: 20px;
  }

  .form-content label {
    width: 100%;
    float: left;
    display: block;
    padding: 0;
    margin: 0 0 4px 0;
    font-family: 500 !important;
    font-size: 14px !important;
    color: #CBC7CF !important;
    letter-spacing: -0.18px;
  }

  .form-content label.mbottom {
    margin-bottom: 20px;
  }

  .form-content .input input {
    width: 100%;
    height: 50px;
    background: #fff;
    border-radius: 2px;
    outline: none;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    color: #33353E;
  }

  .form-content .input input::-webkit-input-placeholder {
      color: #5C606E;
  }

  .form-content .input input:-moz-placeholder {
     color: #5C606E;
     opacity:  1;
  }

  .form-content .input input::-moz-placeholder {
     color: #5C606E;
     opacity:  1;
  }

  .form-content .input input:-ms-input-placeholder {
     color: #5C606E;
  }

  .form-content .input input::-ms-input-placeholder {
     color: #5C606E;
  }

  .form-content .input input::placeholder {
     color: #5C606E;
  }

  .form-content .button {
    width: 100%;
    float: left;
  }

  .form-content .button.reg {
    margin-top: 10px;
  }

  .full-btn,
  .form-content .button .subbtn,
  .form-content .button button {
    float: left;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff !important;
    letter-spacing: 0.5px;
    font-size: 14px;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
    background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
    background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
    font-family: 'Montserrat';
    font-weight: 700;
    text-transform: uppercase;
    transition: .3s all;
    margin-top: 5px;
    margin-bottom: 15px;
    outline: none;
    border: none;
    cursor: pointer;
  }

  .full-btn:hover,
  .form-content .button .subbtn:hover,
  .form-content .button button:hover {
    box-shadow: 0 10px 20px 0 rgba(222,53,128,0.19);
  }

  .form-content .radio {
    width: 100%;
    display: block;
    float: left;
    border-radius: 2px;
    padding: 5px 0 0 0;
    margin-bottom: 10px;
  }

  .form-content .radio.last {
    margin-bottom: 15px;
  }

  .form-content .radio input {
    display: none;
  }

  .form-content .radio input + label span {
    width: 24px;
    height: 24px;
    background-color: #fff;
    position: relative;
    border-radius: 100px;
    cursor: pointer;
    float: left;
    display: inline-block;
    margin: 0;
  }

  .form-content .radio label b {
    padding: 1px 10px 0 10px;
    display: inline-block;
    float: left;
    font-style: normal;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    user-select: none;
    width: auto;
    text-align: left;
  }

  .form-content .radio input:checked + label span:before {
    content: '';
    background-color: #DE3580;
    font-size: 10px;
    text-align: center;
    display: inline-block;
    float: left;
    width: 14px;
    height: 14px;
    border-radius: 100px;
    margin-left: 5px;
    margin-top: 5px;
  }

  .form-content .checkbox {
    width: 100%;
    float: left;
    margin-bottom: 10px;
  }

  .form-content .checkbox input {
    display: none;
  }

  .form-content .checkbox input + label span {
    width: 20px;
    height: 20px;
    background-color: #fff;
    position: relative;
    border-radius: 2px;
    cursor: pointer;
    float: left;
    display: inline-block;
    margin: 0;
  }

  .form-content .checkbox label b {
    padding: 0px 10px 0 10px;
    display: inline-block;
    float: left;
    font-style: normal;
    color: #969AAC;
    font-size: 14px;
    font-weight: 400;
    user-select: none;
    text-align: left;
    cursor: pointer;
    width: calc(100% - 24px);
  }

  .form-content .checkbox input:checked + label span:before {
    content: '';
    width: 10px;
    height: 10px;
    position: relative;
    left: 5px;
    top: 5px;
    font-family: 'ico-font';
    background-color: #DE3580;
    text-align: center;
    display: inline-block;
    float: left;
    border-radius: 2px;
  }

  .form-content .checkbox label b a {
    font-size: 14px;
    color: #BEC1D1;
    font-weight: 500;
  }

  .form-content .checkbox label b a:hover {
    text-decoration: underline;
  }

  .form-content .links {
    width: 100%;
    float: left;
    border-top: 1px solid rgba(56,59,72,0.57);
    border-radius: 2px;
    padding-top: 15px;
    margin-top: 5px;
  }

  .form-content .links a {
    width: 100%;
    float: left;
    display: block;
    font-size: 14px;
    color: #969AAC;
    font-weight: 400;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
    transition: .3s all;
  }

  .form-content .links a:hover {
    text-decoration: underline;
    color: #CAA396;
  }

  .form-content .dropdown {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    position: relative;
  }

  .form-content .dropdown i {
    position: absolute;
    right: 20px;
    top: 42px;
    font-size: 20px;
    color: #373444;
  }

  .form-content .dropdown select {
    width: 100%;
    height: 50px;
    display: block;
    float: left;
    outline: none;
    border: none;
    border-radius: 2px;
    background-color: #fff;
    font-size: 14px;
    color: #5C606E;
    padding: 0 20px;
    -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
  }

  .form-content .send {
    width: calc(20% - 5px);
    float: right;
  }

  .form-content .send input {
    width: 100%;
    height: 50px;
    display: block;
    float: left;
    outline: none;
    border: none;
    border-radius: 2px;
    background-color: #fff;
    color: #BBB4C4;
    font-size: 14px;
    line-height: 50px;
    text-transform: uppercase;
    transition: .3s all;
  }

  .form-content .send input:hover {
    cursor: pointer;
    background-color: #604C7B;
  }

  .form-content .tags {
    width: 80%;
    float: left;
  }

  .form-content .tags .input {
    margin-bottom: 10px;
  }

  .form-content .all-tag {
    width: 100%;
    float: left;
    margin-bottom: 15px;
  }

  .form-content .all-tag .tag-item {
    float: left;
    margin-right: 10px;
    height: 38px;
    border: 1px solid rgba(112,93,136,0.45);
    border-radius: 1px;
    padding: 0 15px;
  }

  .form-content .all-tag .tag-item span.remove {
    float: left;
    cursor: pointer;
    margin-right: 10px;
  }


  .form-content .all-tag .tag-item span.remove:hover::before {
    color: #847AA5;
  }

  .form-content .all-tag .tag-item span.remove::before {
    content: '\e81d';
    font-family: 'ico-font';
    color: #5C5479;
    font-size: 20px;
    line-height: 36px;
    display: inline-block;
    float: left;
  }

  .form-content .all-tag .tag-item span.text {
    line-height: 36px;
    font-size: 14px;
    color: #BBB4C4;
    font-weight: 400;
  }

  .form-content .textarea {
    width: 100%;
    float: left;
    margin-bottom: 20px;
  }

  .form-content .textarea.normal-height textarea {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    resize: none;
    padding: 15px 20px 0 20px;
  }

  .form-content .textarea textarea {
    width: 100%;
    min-height: 115px;
    display: block;
    float: left;
    outline: none;
    padding: 0;
    margin: 0;
    border-radius: 2px;
    border: none;
    background-color: #fff;
    padding:20px;
    color: #616577;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.3px;
  }

  .form-content span.warn-text {
    width: 100%;
    float: left;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 15px;
  }

  .form-content span.warn-text.reg {
    font-size: 14px;
  }

  .form-content span.warn-text.no-mar {
    margin-top: 0;
  }

  .form-content span.warn-text a {
    color: #fff;
    text-decoration: underline;
  }


  .form-content span.other-link {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.3px;
    text-align: center;
    margin-top: 10px;
  }

  .form-content span.other-link  a {
    color: #DE3580 !important;
    font-weight: 700;
  }

  .form-content span.other-link.no-link a {
    color: #fff !important;
    font-weight: 400;
  }

  .form-content span.other-link.no-link a:hover {
    text-decoration: underline;
  }

  .form-content .form-head {
    width: 100%;
    display: block;
    float: left;
    padding: 0 0 8px 0;
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.31px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .featured-functions {
    width: 100%;
    float: left;
  }

  .featured-functions ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .featured-functions ul li {
    width: 50%;
    float: left;
    margin-bottom: 10px;
  }

  .featured-functions ul li i::before {
    content: '';
    font-family: 'ico-font';
    font-size: 18px;
    color: #927BAF;
    float: left;
    display: inline-block;
    width: 25px;
    margin-right: 5px;
    font-style: normal;
  }

  .featured-functions ul li.watch-videos i::before {
    content: '\e810';
  }

  .featured-functions ul li.browse-photos i::before {
    content: '\e809';
  }

  .featured-functions ul li.play-games i::before {
    content: '\e80b';
  }

  .featured-functions ul li.upload-media i::before {
    content: '\e806';
    font-size: 27px;
    position: relative;
    top: -8px;
  }
  .featured-functions ul li.add-favorites i::before {
    content: '\e819';
  }
  .featured-functions ul li.create-playlist i::before {
    content: '\e81a';
  }

  .featured-functions ul li span {
    float: left;
    font-size: 13px;
    color: #BBB4C4;
    line-height: 25px;
    display: inline-block;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .form-content .video-upload-info {
    width: 100%;
    padding: 10px 20px;
    float: left;
    margin-bottom: 30px;
    border: 1px dashed #DE3580;
    border-radius: 3px;
  }

  .form-content .video-upload-info .left {
    width: 100%;
    float: left;
  }

  .form-content .video-upload-info .left span.v-name {
    font-size: 14px;
    float: left;
    color: #fff;
    width: 100%;
    display: block;
  }
  .form-content .video-upload-info .left span.v-size {
    font-size: 12px;
    float: left;
    color: #fff;
    width: 100%;
    display: block;
  }

  .form-content .video-upload-info .right {
    float: left;
    width: 100%;
  }

  .form-content .video-upload-info .right a {
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 32px;
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: #fff !important;
    font-size: 13px;
    display: inline-block;
    float: left;
    margin: 15px 0 5px 0;
    padding: 0 20px;
    border-radius: 2px;
    transition: .3s all;
  }

  .form-content .video-upload-info .right a:hover {
    background-color: #DE3580;
  }

    .upbtn {
      position: absolute;
      left: 0;
      top: 0;
      background-color: #DE3580;
      height: 50px;
      width: 150px;
      text-align: center;
      text-transform: uppercase;
      line-height: 50px;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      letter-spacing: -0.3px;
    }

    .upbtn:hover {
      background-color: #FB4D8A;
      color: #fff;
    }

    #upaname,
    #upgname,
    #uptname,
    #uppname_1,
    #upvname {
      position: absolute;
      left: 170px;
      color: #5C606E;
    }

    .file-box {
        height: 38px;
        padding: 0 12px;
        font-size: 14px;
        background-image: none;
        -webkit-border-top-right-radius: 4px;
        -webkit-border-bottom-right-radius: 4px;
        -moz-border-radius-topright: 4px;
        -moz-border-radius-bottomright: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;

        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        line-height: 38px;
    }

    #get_file + .file-box,
    #get_game_file + .file-box,
    #get_game_thumb_file + .file-box,
    #get_file_1 + .file-box,
    #get_video_file + .file-box {
        height: 50px;
        border-radius: 2px;
        background-color: #fff;
        line-height: 50px;
    }

    #upload_file {
      position: relative;
      margin-bottom: 20px;
    }
  /*
    .alert {
      width: 100%;
      display: inline-block;
      float: left;
      border-radius: 2px;
      padding: 11px 15px 9px 16px;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: -0.3px;
    }

    .alert button {
      display: none;
      visibility: hidden;
    }

    .alert.alert-danger {
      background-color: #863652;
      color: #ffeef4;
    }

    .alert.alert-success{
      background-image: -webkit-linear-gradient(left, #FF5892 0%, #F54785 94%);
      background-image: -o-linear-gradient(left, #FF5892 0%, #F54785 94%);
      background-image: linear-gradient(to right, #FF5892 0%, #F54785 94%);
      color: #fff;
    }

    .alert.mbottom {
      margin-bottom: 20px;
    }/*

/*----UPLOAD CARD ITEM----*/
  .upload-card-item {
    width: 100%;
    height: 260px;
    display: block;
    float: left;
    background: rgba(0,0,0,0.1);
    border-radius: 6px;
    padding-top: 60px;
    margin-top: 30px;
    transition: .3s all;
  }


  .upload-card-item:hover {
    transform: translateY(-3px);
  }

  .upload-card-item a {
    width: 100%;
    height: 100%;
    display: block;
    float: left;
  }

  .upload-card-item span {
    width: 100%;
    display: block;
    float: left;
    text-align: center;
  }

  .upload-card-item span.icon i::before {
    width: 100%;
    display: block;
    float: left;
    text-align: center;
    color: #DE3580;
    font-size: 84px;
    line-height: 84px;
    position: relative;
    font-style: normal;
  }


  .upload-card-item span.text {
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: -0.31px;
    padding-top: 30px;
  }

/*----STANDARD PAGE----*/
    .standard-page {
      width: 100%;
      float: left;
      color: white;
      display: block;
    }

    .notice-item .standard-page {
      width: 100%;
      float: left;
    }

    .standard-page.notice p,
    .standard-page.full > div {
      width: 100%;
      float: left;
      display: block;
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: #CBC7CF;
      letter-spacing: -0.3px;
      font-weight: 400;
      line-height: 28px;
    }


    .standard-page.notice p strong,
    .standard-page.full > div strong {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
    }

    .standard-page.notice p a,
    .standard-page.full > div a {
      color: #C19F94;
    }

    .standard-page.notice p a:hover,
    .standard-page.full > div a:hover {
      text-decoration: underline;
    }

    .standard-page h1,
    .standard-page h2 {
      width: 100%;
      display: block;
      float: left;
      padding: 0 0 8px 0;
      margin: 0 0 15px 0;
      font-size: 24px;
      font-weight: 600;
      color: #FFFFFF;
      letter-spacing: -0.31px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
    }

/*----PROFILE----*/
  .user-profile {
    width: 100%;
    float: left;
    padding: 30px 0;
    position: relative;
    z-index: 500;
  }

  .user-profile .content {
    width: 100%;
    float: left;
    position: relative;
  }

  /* LEFT COLUMN */

    .user-profile .content .left-column {
      width: 100%;
      float: left;
    }

    .user-profile .content .left-column .mobile-info {
      width: 100%;
      float: left;
    }

    .user-profile .content .left-column .mobile-info h1.username {
      float: left;
      color: #fff;
      font-size: 28px;
      padding: 0;
      margin: 0 10px 0 0;
      font-weight: 500;
      width: 100%;
      text-align: center;
    }

    .user-profile .content .left-column .mobile-info span.online {
      font-size: 10px;
      color: #5AA754;
      float: left;
      position: relative;
      width: 100%;
      text-align: center;
    }

   .user-profile .content .left-column .mobile-info span.online::before {
      content: '';
      width: 8px;
      height: 8px;
      position: relative;
      margin-right: 5px;
      border-radius: 100px;
      display: inline-block;
      background-color: #5AA754;
    }

    .user-profile .content .left-column .mobile-info .joined {
      font-size: 12px;
      color: #7F7D8A;
      text-transform: uppercase;
      float: left;
      font-weight: 400;
      width: 100%;
      display: block;
      float: left;
      margin-top: 6px;
      margin-bottom: 10px;
      text-align: center;
    }

    .user-profile .content .left-column .mobile-info .joined  b {
      color: #DE3580;
      font-weight: 700;
    }
    .user-profile .content .left-column .functions {
      width: 100%;
      float: left;
      position: relative;
    }

    .user-profile .content .left-column .functions ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      display: inline-block;
      text-align: center;
    }

    .user-profile .content .left-column .functions ul li {
      height: 32px;
      border-radius: 2px;
      background-color: #373444;
      text-align: center;
      color: #fff;
      line-height: 32px;
      transition: .3s all;
      margin-right: 6px;
      font-size: 13px;
      text-transform: uppercase;
      display: inline-block;
    }

    .user-profile .content .left-column .functions ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 0 10px;
    }

    .user-profile .content .left-column .functions ul li.more {
      background-color: inherit;
      padding: 0 0 0 5px;
      cursor: pointer;
      position: relative;
      top: -10px;
    }

    .user-profile .content .left-column .functions ul li:hover {
      background-color: #DE3580;
    }

    .user-profile .content .left-column .functions ul li.more:hover {
      background-color: inherit;
    }

    .user-profile .content .left-column .functions .dropdown {
      position: absolute;
      right: 30px;
      top: 35px;
      display: none;
      visibility: hidden;
    }

    .user-profile .content .left-column .functions .dropdown  ul {
      width: 162px;
    }

    .user-profile .content .left-column .functions .dropdown.active {
      display: inline-block;
      visibility: visible;
    }

    .user-profile .content .left-column .functions .dropdown ul {
      list-style: none;
      padding: 10px 0 10px 0;
      margin: 0;
      border-radius: 6px 0 6px 6px;
      background-color: #373444;
      width: 103px;
      float: left;
    }

    .user-profile .content .left-column .functions .dropdown ul li {
      width: 100%;
      float: left;
      font-size: 14px;
      line-height: 14px;
      color: #fff;
      padding: 0 14px;
      margin: 0;
      text-align: left;
      transition: .3s all;
      text-transform: none;
    }

    .user-profile .content .left-column .functions .dropdown ul li:hover {
      background-color: rgba(0,0,0,0.2);
    }

    .user-profile .content .left-column .functions .dropdown ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 7px 0 7px 0;
    }

    .user-profile .content .left-column .profile-picture {
      width: 200px;
      height: 200px;
      border-radius: 100px;
      overflow: hidden;
      margin: 0 auto;
      margin-bottom: 22px;
    }

    .user-profile .content .left-column .profile-picture img {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      background-size: 100%;
      background-repeat: no-repeat;
    }

    .user-profile .content .left-column .personal-details {
      width: 100%;
      float: left;
      margin-top: 20px;
    }

    .user-profile .content .left-column .personal-details h2.head {
    width: 100%;
    float: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
    color: #fff;
    }

    .user-profile .content .left-column .personal-details ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .user-profile .content .left-column .personal-details ul li {
      width: 100%;
      float: left;
      margin-bottom: 5px;
    }

    .user-profile .content .left-column .personal-details ul li span.title {
      float: left;
      color: #fff;
      font-size: 14px;
      letter-spacing: -0.3px;
      margin-right: 5px;
    }

    .user-profile .content .left-column .personal-details ul li span.data {
      color: rgba(255,255,255,0.5);
      float: left;
      font-size: 14px;
      letter-spacing: -0.4px;
    }

    .user-profile .content .left-column .personal-details button {
      width: 100%;
      outline: none;
      border: none;
      background-color: inherit;
      font-size: 14px;
      color: #fff !important;
      font-weight: 700;
      letter-spacing: -0.3px;
      text-align: left;
      padding: 0;
      margin: 0;
    }

    .user-profile .content .left-column .personal-details button i {
      margin-left: 5px;
      position: relative;
      top: 1px;
    }

  /* MAIN COLUMN */
    .user-profile .main-column {
      width: 100%;
      float: left;
    }

    .user-profile .main-column .cover {
      width: 100%;
      float: left;
    }

    .user-profile .main-column .cover .desk {
      display: none;
      visibility: hidden;
    }

    .user-profile .main-column h1.username {
      float: left;
      color: #fff;
      font-size: 28px;
      padding: 0;
      margin: 0 10px 0 0;
      font-weight: 500;
    }

    .user-profile .main-column span.online {
      font-size: 10px;
      color: #5AA754;
      float: left;
      line-height: 45px;
      position: relative;
    }

    .user-profile .main-column span.online::before {
      content: '';
      width: 8px;
      height: 8px;
      position: relative;
      margin-right: 5px;
      border-radius: 100px;
      float: left;
      display: inline-block;
      background-color: #5AA754;
      margin-top: 18px;
    }

    .user-profile .main-column .joined {
      font-size: 12px;
      color: #7F7D8A;
      text-transform: uppercase;
      float: left;
      font-weight: 400;
      margin-right: 10px;
      width: 100%;
      display: block;
      float: left;
      margin-top: 6px;
    }

    .user-profile .main-column .joined  b {
      color: #DE3580;
      font-weight: 700;
    }

    .user-profile .main-column .stats {
      width: 100%;
      float: left;
      margin-top: 15px;
      background-color: rgba(255,255,255,0.08);
      border-radius: 3px;
      padding: 10px 20px 5px 20px;
    }

    .user-profile .main-column .stats ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .user-profile .main-column .stats ul {
      width: 100%;
      display: inline-block;
      text-align: center;
      overflow-x: auto;
      white-space: nowrap;
      overflow-y: hidden;
    }

    .user-profile .main-column .stats ul li {
      float: unset;
      display: inline-block;
      margin-right: 40px;
    }

    .user-profile .main-column .stats ul li span.data span.text-highlighted {
    display: block;
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    }

    .user-profile .main-column .stats ul li span.data {
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    color: #7F7D8A;
    text-align: left;
    }

    .user-profile .main-column .tab-content {
      width: 100%;
      float: left;
      margin: 30px 0 0 0;
    }


    .user-profile .main-column .tab-content .tab {
      width: 100%;
      float: left;
    }

    .user-profile .main-column .tab-content .tab ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .user-profile .main-column .tab-content .tab ul li {
      height: 32px;
      line-height: 29px;
      float: left;
      margin-right: 6px;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
    }

    .user-profile .main-column .tab-content .tab ul li:hover {
      color: #fff;
    }

    .user-profile .main-column .tab-content .tab ul li a {
      width: 100%;
      height: 100%;
      display: inline-block;
      float: left;
      padding: 0 10px;
    }

    .user-profile .main-column .tab-content .tab ul li.active {
      color: #DE3580;
      font-weight: 600;
      border-radius: 2px;
      border: 2px solid #DE3580;
    }

    .user-profile .main-column .tab-content .tab ul li.active:hover {
      color: #DE3580;
    }

/*----ACCOUNT----*/

  .top-menu {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    margin-top: 30px;
  }

  .top-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .top-menu ul li {
    height: 32px;
    line-height: 29px;
    float: left;
    margin-right: 6px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
  }

  .top-menu ul li:last-child {
    float: right;
    margin-right: 0;
    display: none;
    visibility: hidden;
  }
  .top-menu.pm ul li:last-child {
    float: left;
    margin-right: 0;
    display: inline-block;
    visibility: visible;
  }

  .top-menu ul li:last-child a {
    padding: 0;
  }

  .top-menu.pm ul li:last-child a {
    padding: 0 10px;
  }

  .top-menu ul li.active {
    color: #DE3580;
    font-weight: 600;
    border-radius: 2px;
    border: 2px solid #DE3580;
  }

  .top-menu ul li:hover {
    color: #fff;
    text-decoration: underline;
  }

  .top-menu ul li a {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 0 10px;
  }

/*----PM----*/

    .transaction-table-con {
      width: 100%;
      float: left;
    }

    .transaction-table-con table {
      border: none;
      border-collapse: collapse;
      margin: 0;
      padding: 0;
      width: 100%;
      table-layout: fixed;
    }

    .transaction-table-con table tr {
      background: rgba(255,255,255,0.03);
      padding: .35em;
      height: 42px;
      font-size: 12px;
      letter-spacing: -0.3px;
      color: #A2A4B8;
      transition: .3s all;
      }

    .transaction-table-con table tbody tr {
      height: 52px;
      font-size: 14px;
    }

    .transaction-table-con table tr a {
      width: 100%;
      height: 100%;
      display: block;
    }

    .transaction-table-con table tr:nth-child(odd) {
      background-color: inherit;
    }

    .transaction-table-con table th,
    .transaction-table-con table td {
      padding: .625em;
      padding-left: 20px;
    }

    .transaction-table-con table th {
      font-size: 12px;
      letter-spacing: -0.3px;
      padding-top: 10px;
      height: 40px;
      background-color: rgba(0,0,0,0.3);
      color: #fff;
      text-transform: uppercase;
    }

    .transaction-table-con table tbody tr td.sender {
      color: #DE3580;
    }

    .transaction-table-con table tbody tr td.sender:hover {
      text-decoration: underline;
    }

    .transaction-table-con table tbody tr td.subject {
      color: #fff;
    }

    .transaction-table-con table tbody tr td.subject:hover {
      text-decoration: underline;
    }

    .transaction-table-con table tbody tr td.delete {
      color: #DB3232;
    }

    .transaction-table-con table tbody tr td span.unread {
      color: #66a20d;
      text-transform: uppercase;
      font-weight: 600;
    }

/*----USER AVATAR----*/
  .user-avatar-item {
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 30px;
  }

  .user-avatar-item .avatar {
    width: 100%;
    display: block;
    float: left;
    overflow: hidden;
  }

  .user-avatar-item .avatar img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    float: left;
    background-size: 100%;
    background-repeat: no-repeat;
    -moz-transition: all 0.70s;
    -webkit-transition: all 0.70s;
    transition: all 0.70s;
    overflow: hidden;
  }

  .user-avatar-item .avatar:hover img {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  .user-avatar-item span {
    width: 100%;
    display: block;
    float: left;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.3px;
  }

/*----TAGS----*/

  .tags-page-content {
    width: 100%;
    float: left;
    display: inline-block;
    margin-bottom: 2px;
  }


  .tags-page-content ul {
    list-style-type: none;
    margin: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    z-index: 100;
    padding: 2px 10px;
  }

  .tags-page-content ul li {
    flex-grow: 1;
    width: 100%;
    height: 38px;
    margin: 0 5px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 19px;
    margin-bottom: 10px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: .3s all;
    position: relative;
  }

  .tags-page-content .btn-add-tag {
    width: 100%;
    text-align: center;
    float: left;
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin-top: 5px;
    position: relative;
    text-decoration: underline;
    border-radius: 1px;
    cursor: pointer;
  }

  .tags-page-content .btn-add-tag:hover {
    color: #DE3580;
  }

  .tags-page-content .toggle-open-add-tag .content {
    width: 100%;
    float: left;
    display: block;
    padding: 0 15px;
    margin-top: 15px;
  }

  .tags-page-content .toggle-open-add-tag .content .input {
    width: 80%;
    float: left;
  }


  .tags-page-content .toggle-open-add-tag .content .add {
    width: calc(20% - 10px);
    float: right;
  }

  .tags-page-content .toggle-open-add-tag .content .add button {
    height: 50px;
    line-height: 50px;
    outline: none;
    border: none;
    width: 100%;
    border-radius: 2px;
    background: #343639;
    text-align: center;
    float: left;
    display: inline-block;
    font-size: 14px;
    color: #C2B9CE;
    letter-spacing: -0.18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s all;
    margin-right: 20px;
    cursor: pointer;
  }

  .toggle-open-add-tag {
    display: none;
    visibility: hidden;
    width: 100%;
    float: left;
  }

  .toggle-open-add-tag.active {
    display: inline-block;
    visibility: visible;
  }

  .tags-page-content.active .toggle-open-add-tag {
    display: inline-block;
    visibility: visible;
  }




  .tags-page-content ul li a {
    display: inline-block;
    padding: 0 24px;
    float: left;
    font-size: 13px;
    width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .tags-page-content ul li:hover {
    background: #DE3580;
    border-color: #DE3580;
  }

  .tags-page-content ul li:hover span {
    color: #fff;
  }

  .tags-page-content ul li span {
    font-size: 12px;
    color: #fff;
    letter-spacing: -0.15px;
    position: relative;
    float: left;
    transition: .3s all;
    width: 100%;
  }

  .tags-page-content ul li span > span {
    float: right;
    width: 10%;
    text-align: right;
    padding-right: 20px;
    color: #fff;
  }

/*----REQUESTS----*/
  .request-item {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .request-item .avatar {
    width: 64px;
    height: 64px;
    margin-right: 15px;
    float: left;
    border-radius: 2px;
    overflow: hidden;
  }

  .request-item .avatar img {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
  }

  .request-item .content {
    width: calc(100% - 79px);
    float: left;
  }

  .request-item .content .username {
    float: left;
    line-height: 64px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.3px;
    width: calc(100% - 193px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .request-item .content .actions {
    float: right;
    margin-top: 14px;
  }

  .request-item .content .actions a {
    float: left;
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    border-radius: 2px;
    color: #fff !important;
    font-weight: 700;
    background-color: red;
    text-align: center;
    margin: 0 7.5px;
    background: rgba(255,255,255,0.1);
    transition: .3s all;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 14px;
  }

  .request-item .content .actions a:last-child {
    margin-right: 0;
  }

  .request-item .content .actions a.accept:hover {
    background-color: #CC2267
  }

  .request-item .content .actions a.reject:hover {
    background-color: #9c0f0f;
  }

/*----NOTICES----*/
  .author-item {
    width: 100%;
    float: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-bottom: 20px;
    margin-top: 5px;
    padding-bottom: 20px;
  }

  .author.nomar {
    margin-top: 0;
  }

  .author-item .avatar {
    width: 54px;
    height: 54px;
    border-radius: 2px;
    float: left;
    margin-right: 15px;
    overflow: hidden;
  }

  .author-item .avatar img {
    width: 100%;
    height: 100%;
    display: inline-block;
    float: left;
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .author-item .data {
    width: calc(100% - 69px);
    float: left;
  }

  .author-item .username {
    line-height: 54px;
    color: #fff;
    font-size: 15px;
    float: left;
  }

  .author-item .total-views {
    float: right;
    line-height: 54px;
    color: #fff;
    font-size: 15px;
  }

@media screen and (max-width: 992px) {


  .transaction-table-con table {
    border: 0;
  }
  .transaction-table-con table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .transaction-table-con table tr {
    display: block;
    height: auto;
    margin-bottom: 10px;
    font-size: 15px;
    background-color: inherit !important;
    color: #A2A4B8 !important;
    border: 1px solid #2E3046;
  }

    .transaction-table-con table tbody tr  {
      height: inherit;
      font-size: 16px;
    }

  .transaction-table-con table th,
  .transaction-table-con table td {
    padding-left: .625em;
  }
  .transaction-table-con table tr:nth-child(even) {
    background-color: inherit !important;
  }
  .transaction-table-con table td {
    border-bottom: 1px solid #2E3046;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  .transaction-table-con table td:before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    text-transform: uppercase;
  }
  .transaction-table-con table td:last-child {
    border-bottom: 0;
  }

    .transaction-table-con table th,
    .transaction-table-con table td {
      padding: .825em;
      padding-left: .625em;
    }

}
.photo-albums .v-cards .item .thumbnail {
  height: auto!important;
}
@media only screen and (min-width: 375px) {
  .v-cards {
    padding: 0 7.5px;
  }
  .v-cards .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 7.5px;
  }
  .v-cards .item .info ul {
    bottom: 13px;
  }
  .v-cards .item .thumbnail {
    height: 125px;
  }

  .v-cards.photos-album .item .thumbnail {
    height: 165px;
  }
}

@media only screen and (min-width: 576px) {
  .v-cards .item .info ul {
    bottom: 13px;
  }
  .v-cards .item .thumbnail {
    height: 145px;
  }

  .v-cards.photos-album .item .thumbnail {
    height: 185px;
  }
}

@media only screen and (min-width : 620px) {
  .v-cards .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    padding: 0 7.5px;
  }
  .v-cards .item .info ul {
    bottom: 13px;
  }

  .v-cards .item .info ul li {
    margin-right: 10px;
  }
  .v-cards .item .info ul li:last-child {
    display: none;
    visibility: hidden;
  }
  .v-cards .item .thumbnail {
    height: 115px;
  }


  .v-cards.photos-album .item .thumbnail {
    height: 235px;
  }

  .v-cards.photos-album .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 7.5px;
  }
}

@media only screen and (min-width : 768px) {
  .video-page .v-header .info.photo {
    margin-top: 5px;
  }

  .tags-page-content ul li {
    width: 33%;
  }

  .top-menu ul li:last-child {
    display: inline-block;
    visibility: visible;
  }

  .form-content {
    padding: 60px 60px 30px 60px;
  }

  .form-content.register {
    padding-top: 30px;
  }
  .video-page .v-header .info {
    margin-top: 15px;
  }

  .video-page .v-header h1 {
    width: calc(100% - 305px);
  }
  .video-page .img-content,
  .video-page .v-content {
    margin-bottom: 20px;
  }

  .video-page .v-header .info ul.data {
    padding: 0 20px 0 0;
    margin: 0 20px 0 0;
  }

  .video-page .v-header .info ul.data li {
    margin-right: 30px;
  }

  .video-page .v-header .functions {
    width: auto;
    float: right;
    margin-top: 0;
  }
  .video-page .v-header .functions ul.ibtns {
    width: auto;
  }
  .video-page .v-header .functions ul.ibtns li {
    width: auto;
    margin-right: 10px;
  }

  .v-cards .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 7.5px;
  }
  .v-cards .item .thumbnail {
    height: 125px;
  }
  .v-cards .item .info ul li {
    margin-right: 5px;
  }

  .v-cards.photos-album .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    padding: 0 7.5px;
  }
  .v-cards.photos-album .item .thumbnail {
    height: 165px;
  }
}

@media only screen and (min-width : 853px) {
  .videos-filter .sort {
    float: right;
    top: 2px;
    margin: 0 0 0 0;
  }
}

@media only screen and (max-width : 1024px) {
nav.header {
  display: none;
  visibility: hidden;
}
.categories ul li {
    margin-right: 10px;
    margin-top: 10px;
}
section.content-wrapper {
  width: 100%;
  padding: 0px 0px 0px 12px;
  margin-top: 110px;
  float: left;
  position: relative;
  left: 0;
}
.v-cards .item .thumbnail .sub-data {
  left: 18px;
  top: 10px;
}
.v-cards .item .info span.v-name {
  font-size: 14px;
  line-height: 21px;
  height: 25px;
}
.v-cards .item .info {
  position: absolute;
  padding: 0px 16px;
  bottom: 14px;
  color: white;
  transition: 0.3s ease;
  height: 22px;
  overflow: hidden;
  z-index: 999;
}
.v-cards .item:hover .info {
  height: 48px;
}
.v-cards .item .info {
  height: 22px;
}
.v-cards .item .thumbnail .sub-data span.duration {
  font-size: 12px;
  padding: 1px 7px;
}
header {
    left: 0px;
    right: 0px;
}
.guest {
    display: none;
}
}

@media only screen and (min-width : 992px) {

  .tags-page-content {
    width: 50%;
  }

  .form-content .video-upload-info .left {
    width: calc(100% - 125px);
    float: left;
  }

  .form-content .video-upload-info .left span.v-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .form-content .video-upload-info .right {
    float: right;
    width: 100px;
    margin-top: 3px;
  }

  .form-content .video-upload-info .right a {
    margin: 0;
    padding: 0 20px;
  }
}

@media only screen and (min-width : 1024px) {
  header .mobile-search  {
        display: none;
        visibility: hidden;
      }
      .toggle-menu {
    display: none;
}
    header .language {

      margin-top: 13px;
      top: inherit;
    }

    footer .language-dropdown {
    }

  .v-cards.photos-album .item .thumbnail {
    height: 175px;
  }
  header {
    height: 100px;
  }
  header .menu {
    display: none;
    visibility: hidden;
  }

  nav.header {
    width: 150px;
    visibility: visible;
    height: 100%;
    z-index: 1;
  }
  header .upload a {
    display: inline-block;
    visibility: visible;
  }
  main {
    min-height: calc(100% - 60px);
    top: 0px;
  }
  section.content-wrapper {
  }
  header .left {
    width: 250px;
    float: left;
    position: relative;
  }
  header .logo {
    width: 162px;
    height: 52px;
  }
  header .upload a {
    margin-right: 20px;
    margin-top: 12px;
  }
  header .search {
    height: auto;
    display: inline-block;
    visibility: visible;
    margin-left: 20px;
  }
  header .search i.fa-film {
    top: 9px;
    left: 15px;
  }
  header .search input {
  }
  nav .user .functions ul li {
    margin: 0 1px;
  }
  nav .mobile-upload-btn {
    display: none;
    visibility: hidden;
  }
  nav .menu ul {
    border-top: 0;
  }
  header .logo a {
    margin-top: 18px;
  }
  .v-cards .item .thumbnail {
    height: 125px;
  }

}

@media only screen and (min-width : 1200px) {
  header .search input {
  }
  header .language {
    margin-top: 22px;
  }
  .v-cards.photos-album .item .thumbnail {
    height: 195px;
  }
  .tags-page-content {
    width: 33%;
  }
  .tags-page-content ul li {
    width: 25%;
  }

  .user-profile .content .left-column {
    width: 250px;
    margin-right: 40px;
  }

  .user-profile {
    padding: 30px 0;
  }

  .user-profile .main-column {
    width: calc(100% - 290px);
  }
  .user-profile .main-column .cover .desk {
    display: inline-block;
    visibility: visible;
  }
  .user-profile .content .left-column .mobile-info {
    display: none;
    visibility: hidden;
  }
  .n-pagination ul li {
    display: inline-block;
    visibility: visible;
  }

  .video-page .main {
    width: calc(100% - 330px);
  }
  .video-page.photo .main {
    width: 100% !important;
  }

  .video-page aside .related-videos .v-cards .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0;
  }

  .video-page aside .related-videos .v-cards .row {
    padding: 0;
    margin: 0;
  }

  .video-page aside .related-videos .v-cards {
    padding: 0;
  }

  .video-page aside .related-videos .v-cards .item {
    margin-bottom: 30px;
  }

  .video-page aside {
    width: 240px;
    margin-left: 30px;
    margin-top: 0;
  }
  .video-page {
    padding-top: 30px;
  }

  section.content-wrapper {
  }

  header .left {
    width: 300px;
  }

  nav.header {
  }

  header .upload a {
    margin-right: 30px;
  }

  header .search {
    margin-left: 30px;
  }

  header {
    height: 80px;
  }

  main {
    min-height: calc(100% - 80px);
    top: 0px;
  }

  nav.header {
  }
  .logo {
    flex-shrink: 0;
        align-self: center;
  }
  header .logo a {
    margin-top: 28px;
  }
  header .search {
    width: 365px;
    height: auto;
    margin-right: 20px;
  }
  header .search i.fa-film {
    top: 13px;
  }
  header .upload a {
    height: 43px;
    line-height: 43px;
    margin-top: 18px;
  }

  header .trending-searches ul li {
    margin-right: 8px;
  }
  header .trending-searches ul li:nth-child(4),
  header .trending-searches ul li:nth-child(5),
  header .trending-searches ul li:nth-child(6),
  header .trending-searches ul li:nth-child(7),
  header .trending-searches ul li:nth-child(8),
  header .trending-searches ul li:nth-child(9),
  header .trending-searches ul li:nth-child(10),
  header .trending-searches ul li:nth-child(11) {
    display: none;visibility: hidden;
  }
  header .trending-searches span.head {
    position: relative;
    top: 2px;
  }
  .v-cards .item .thumbnail {
    height: 125px;
  }
  .video-page .img-content img {
    width: auto;
  }
  footer .language-dropdown {
  }

}

@media only screen and (min-width : 720px) {
.videos-filter .sort-mobile {
  display: none;
}
.primary-head .filter .quality {
display:none;
}
}
@media only screen and (max-width : 720px) {
.videos-filter .sort {
  display: none;
}
.videos-filter .filter .toggle.categories {
    left: 80px;
}
.videos-filter .filter .toggle.timeline {
    left: 0px;
}
.videos-filter .filter .quality {
    margin-right: 6px;
    display:none;
}
.videos-filter .filter .dropdown {
    margin-right: 6px;
}
}
@media only screen and (min-width : 1300px) {



    .user-profile .main-column .stats ul {
      text-align: left;
    }



    .user-profile .main-column .stats ul li span.data {
      text-align: unset;
    }


  header .trending-searches ul li:nth-child(4) {
    display: inline-block;
    visibility: visible;
  }

  header .search {
    margin-right: 30px;
  }
  .v-cards .item .info ul li {
    margin-right: 10px;
  }
  .v-cards .item .info ul li:last-child {
    display: inline-block;
    visibility: visible;
  }

  section.content-wrapper .photo-container {
    width: 924px;
    margin: 0 auto;
  }
}


@media only screen and (min-width : 1400px) {
  .v-cards.photos-album .item .thumbnail {
    height: 220px;
  }
  header .search {
    width: 435px;
  }
  .v-cards .item .thumbnail {
    height: 130px;
  }
  .home-ad-content .content img {
    width: auto;
  }
  .primary-head {
    margin-bottom: 15px;
  }

  header .trending-searches {
    display: inline-block;
    visibility: visible;
  }

  section.content-wrapper {
  }

  header .left {
    width: 350px;
  }

  nav.header {
  }
}
  .video-page .vertical-ads {
    display: none;
    visibility: hidden;
  }

@media only screen and (min-width : 1600px) {
  .video-page .vertical-ads {
    width: 160px;
    height: 600px;
    padding: 0 0 0 16px;
    float: left;
	    display: inline-block;
    visibility: visible;
  }
  .video-page .main {
    width: calc(100% - 330px);
  }
  .video-page.photo .main {
    width: 100% !important;
  }
  .video-page .vertical-ads .content {
    width: 100%;
    height: 600px;
    float: left;
    background-color: #000;
  }
  .video-page aside {
    width: 240px;
  }
}

@media only screen and (min-width : 1500px) {
  .v-cards.photos-album .item .thumbnail {
    height: 235px;
  }

  section.content-wrapper {
  }

  header .upload a {
    margin-right: 45px;
  }

  header .search {
    margin-left: 45px;
  }
  header .trending-searches ul li:nth-child(5) {
    display: inline-block;
    visibility: visible;
  }
  .v-cards .item .thumbnail {
    height: 145px;
  }
  .v-cards.scroll .row {
    padding-top: 40px;
  }
  .primary-head.featured {
    top: 30px;
  }
}

@media only screen and (min-width : 1580px) {
  .v-cards .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 10px;
  }

  .v-cards.profile .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
  }
  .v-cards.photos-album .col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 10px;
  }

  .v-cards.photos-album .item .thumbnail {
    height: 195px;
  }

  .v-cards .item {
    margin-bottom: 20px;
  }

  .discover-videos .v-cards .col-12:nth-child(11),
  .discover-videos .v-cards .col-12:nth-child(12),
  .recent-videos .v-cards .col-12:nth-child(11),
  .recent-videos .v-cards .col-12:nth-child(12){
    display: none;
    visibility: hidden;
  }

  header .trending-searches ul li {
    margin-right: 15px;
  }

  header .trending-searches ul li:nth-child(4),
  header .trending-searches ul li:nth-child(5) {
    display: inline-block;
    visibility: visible;
  }
  .v-cards .item .info span.v-name {
    font-size: 18px;
  }

}
@media only screen and (min-width : 1860px) {
  .v-cards .item .thumbnail {
    height: 155px;
  }
  .v-cards.profile .item .thumbnail {
    height: 180px;
  }

  .v-cards.photos-album .item .thumbnail {
    height: 225px;
  }

}
@media only screen and (min-width : 1920px) {
  .video-page .v-comments {
    width: 70%;
  }
  .form-content.comment {
    width: 980px;
  }
  section.content-wrapper.notice .form-content.comment,
  section.content-wrapper .video-page.photo .form-content.comment {
    width: 100%;
  }
  .form-content.comment .subbtn {
    width: 120px;
  }
  .video-page .v-content .video-container .vjs-poster {
    height: 100%;
  }
  .video-js.vjs-16-9 {
    padding-top: 0 !important;
    height: 600px !important;
  }
  .video-page .vertical-ads {
    width: 190px;
    height: 600px;
    padding: 0 0 0 30px;
    float: left;
  }
  .video-page .main {
    width: calc(100% - 330px);
  }
  .video-page.photo .main {
    width: 100% !important;
  }
  .v-cards.photos-album .item .thumbnail {
    height: 245px;
  }
  .video-page aside {
    width: 300px;
  }
  .v-cards .item .thumbnail {
    height: 175px;
  }

}
@media only screen and (min-width : 2100px) {
  .v-cards .item .thumbnail {
    height: 180px;
  }
  .v-cards.profile .item .thumbnail {
    height: 240px;
  }
  .v-cards.photos-album .item .thumbnail {
    height: 280px;
  }
  .v-cards .item .thumbnail {
    height: 200px;
  }

}
@media only screen and (min-width : 2300px) {
  .v-cards .item .thumbnail {
    height: 230px;
  }
}
@media only screen and (min-width : 2800px) {
  .v-cards .item .thumbnail {
    height: 270px;
  }
}
@media only screen and (min-width : 3500px) {
  .v-cards .item .thumbnail {
    height: 330px;
  }
}
@media only screen and (min-width : 4000px) {
  .v-cards .item .thumbnail {
    height: 370px;
  }
}
.visible-xs {
  display: inline-block;
  visibility: visible;
      width: 100%;
}
.hidden-xs {
  display: none;
      width: 100%;
  visibility: hidden;
}
@media only screen and (min-width: 992px) {
  .hidden-xs {
    visibility: visible;
    display: inline-block;
  }
}
@media only screen and (min-width: 992px) {
  .visible-xs {
    display: none;
    visibility: hidden;
  }
}
.visible-videoplayer-xs {
  display: inline-block;
  visibility: visible;
}
.hidden-videoplayer-xs {
  display: none;
  visibility: hidden;
}
@media only screen and (min-width: 1440px) {
  .hidden-videoplayer-xs {
    visibility: visible;
    display: inline-block;
  }
}
@media only screen and (min-width: 1440px) {
  .visible-videoplayer-xs {
    display: none;
    visibility: hidden;
  }
}
.ipprtcnt {
  margin-top: 100px;
}
.ipprtcnt {
  top: 47px!important;
  z-index: 999!important;
}
.row {
  min-width: 1px;
}
.drts {
  margin-top: 50px!important;
}
a.image_block {
  margin-top: 50px!important;
}
.embed {
  height: 100%;
}
iframe.eww {
  margin-top: 75px;
}
#jerky-im #jerky-im-messages {
  position: absolute!important;
}
.video-container, .video-js {
min-height: 70vh;
width: 100%;
}
@media only screen and (min-width: 1919px) {
  ul.video-vl {
    position: absolute;
    right: 10px;
    font-size: 15px;
    color: rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    list-style: none;
    width: auto;
    top: 12px;
    text-shadow: 0px 2px 4px #253d46c4;
    color: white;
  }
}
@media only screen and (max-width: 1918px) {
  ul.video-vl {
    position: absolute;
    left: 12px;
    font-size: 14px;
    color: rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
    padding: 0px;
    list-style: none;
    width: 100%;
    bottom: 0px;
    text-shadow: 0px 2px 4px #253d46c4;
    color: white;
  }
}
ul.video-vl li i {
  padding-right: 5px;
}
ul.video-vl li {
  float: left;
  margin-right: 10px;
}
.thumbnail:hover ul.video-vl {
  visibility: hidden;
}
.homed ul.grid {
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-rows: auto;
  grid-template-columns: repeat(6,1fr);
  grid-row-gap: 10px;
  grid-column-gap: 20px;
  padding: 0;
}
ul.grid {
    display: grid;
    justify-content: center;
    align-content: center;
    grid-template-rows: auto;
    grid-template-columns: repeat(5,1fr);
    grid-row-gap: 10px;
    grid-column-gap: 20px;
    padding: 0;
}
.homed ul.grid>li {
  width: 100%;
  display: block;
}
.homed ul.grid>li:first-child {
  grid-row: 1/span 2;
  grid-column: 3/span 2;
  align-self: center;
  width: 100%;
  margin: 0;
}
.homed ul.grid>li:first-child .thumbnail {
  height: 490px;
}
.cust_video {
  position: relative;
  padding-bottom: 456px;
}
.cust_video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media only screen and (min-width : 1024px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 270px;
  }
  .cust_video {
    padding-bottom: 345px;
  }

}
@media only screen and (min-width : 1200px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 270px;
  }
  .cust_video {
    padding-bottom: 350px;
  }

}
@media only screen and (min-width : 1400px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 300px;
  }
  .cust_video {
    padding-bottom: 360px;
  }

}
@media only screen and (min-width : 1500px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 320px;
  }
  .cust_video {
    padding-bottom: 390px;
  }

}
@media only screen and (min-width : 1860px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 410px;
  }
  .cust_video {
    padding-bottom: 336px;
  }

}
@media only screen and (min-width : 1920px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 376px;
  }
  .cust_video {
    padding-bottom: 450px;
  }

}
@media only screen and (min-width : 2100px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 426px;
  }
  .cust_video {
    padding-bottom: 500px;
  }

}
@media only screen and (min-width : 2300px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 489px;
  }
  .cust_video {
    padding-bottom: 560px;
  }

}
@media only screen and (min-width : 2800px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 565px;
  }
  .cust_video {
    padding-bottom: 640px;
  }

}
@media only screen and (min-width : 3500px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 682px;
  }
  .cust_video {
    padding-bottom: 760px;
  }

}
@media only screen and (min-width : 4000px) {
  .homed ul.grid>li:first-child .thumbnail {
    height: 764px;
  }
  .cust_video {
    padding-bottom: 840px;
  }

}
@media screen and (max-width:1580px){
  .homed ul.grid {grid-template-columns: repeat(6,1fr);}
}
@media screen and (max-width:1024px){
  .homed ul.grid>li:first-child .thumbnail {
    height: 345px;
  }
  .cust_video {
    padding-bottom: 345px;
  }
  .v-cards .item .info span.v-name {
      font-size: 15px;
  }
  .v-cards .item .info {
    bottom: 12px;
    height: 26px;
}
.v-cards .item .thumbnail .sub-data span.duration {
    font-size: 12px;
    padding: 2px 10px;
}
}
@media screen and (max-width:767px){
  .homed ul.grid {grid-template-columns: repeat(3,1fr);}
  .homed ul.grid>li:first-child .thumbnail {
    height: 325px;
  }
  ul.grid {
grid-template-columns: repeat(3,1fr)
}
  .video-container, .video-js {
    min-height: auto;
}
  .cust_video {
    padding-bottom: 325px;
  }
}
@media screen and (max-width:500px){
  .cust_video {
    padding-bottom: 200px;
  }
}
@media screen and (max-width:640px){
  .homed ul.grid {grid-template-columns: repeat(2,1fr);}
ul.grid {grid-template-columns: repeat(2,1fr);}
  .homed ul.grid>li:first-child {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width:400px){
  .homed ul.grid {grid-template-columns: repeat(2,1fr);}
  ul.grid {grid-template-columns: repeat(2,1fr);}
  .homed ul.grid>li:first-child {
    grid-column: 1/span 2;
  }
}
.cust_video video::-webkit-media-controls {
    display: none;
}
@media screen and (min-width:800px){
#popuptext {  margin-top: -11%;
    font-size: 20px;}
    .popimg {
    margin-top: 3.3%;
    margin-left: 5%;
    height: 55px;
}
#popup {
    width: 360px;
    height: 80px;
  }
}

/*----FLOATY----*/
.ad-display-unit{
  background-color: black;
  max-width: 1320px;
 }
 .container-fluid.ad-display-unit.animate__animated.animate__slideInUp {
    padding: 0px;
}
.pl-1{
  padding-left:22px;
}
.img-height{
  height: 200px;
}
.color-background{
background: linear-gradient(to right, rgba(190,64,48,1) 0%, rgba(190,64,48,1) 55%, rgba(198,69,97,1) 100%);;
}
.d-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ad-display-section {
    z-index: 999;
}
.pl-3{
  padding-left: 40px;
}
.pl h4{
  color: white;
  margin-bottom: 0;
  font-size: 34px;
}
.pl p{
  font-size: 23px;
  color: #fff;
  line-height: 28px;
  margin-top: 7px;
}
.pl{
  padding-left: 3%;
}
.pl-2 a {
    padding: 13px 22px;
    margin-right: 20px;
    font-size: 28px;
    background-image: -webkit-linear-gradient(right, #C32963 0%, #EF3E93 100%);
        background-image: -o-linear-gradient(right, #C32963 0%, #EF3E93 100%);
        background-image: linear-gradient(to left, #C32963 0%, #EF3E93 100%);
    width: 240px;
        border-radius: 3px;
        transition: ease 0.5s;
    color: #fff!important;
}
.pl-2 a:hover {
    transform: scale(1.1);
}
.pl-2{
  padding-left: 20px;
}
.img-width{
  width: 32px;
}
.img-game{
  width: 40px;
}
a.ad-display-close-button-action {
    position: absolute;
    right: 0px;
    top: -15px;
}


@media screen and (min-device-width: 768px) and (max-device-width: 991px) {
  /* STYLES HERE */

  .pl-2 a {
    padding: 15px 22px;
    font-size: 14px;
    background-color: red;
    color: #fff!important;
    width: auto;
  }
  .pl p{
    font-size: 13px;
    color: #fff;
    line-height: 25px;
    margin-top: 7px;
  }
  .pl-2{
    padding-left: 4%;
  }

}
@media screen and (min-device-width: 490px) and (max-device-width: 768px) {

.pl-2 a {
  padding: 8px 18px;
  font-size: 26px;
  background-color: red;
  width: 170px;
  color: #fff!important;
  }
.pl p{
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    margin-top: 5px;
  }
  .pl-2{
    padding-left: 2%;
  }
  .pl-1 {
    padding-left: 4px;
}
.pl h4 {
  color: white;
    margin-bottom: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
}

.img-height{
  height: 160px;
}
.img-width {
  width: 32px;
  padding-left: 4px;
}
.img-game{
  width: 18px;
}
.pl-3 {
  padding-left: 13px;
}
}

@media screen and (min-device-width: 320px) and (max-device-width: 600px) {

  .pl-2 a {
    padding: 5px 5px 5px 8px;
    font-size: 13px;
    background-color: red;
    width: 85px;
    color: #fff!important;

  }
  .pl p{
    font-size: 9px;
    color: #fff;
    line-height: 11px;
    margin-top: 5px;
  }
  .pl-2{
    padding-left: 2%;
  }
  .pl-1 {
    padding-left: 3px;
}
.pl h4 {
  color: white;
    margin-bottom: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.pl{
  padding-left: 2%;
}

.img-height{
  height: 88px;
}
.img-width {
  width: 18px;
  padding-left: 0px;
}
.img-game{
  width: 18px;
}
.pl-3 {
  padding-left: 13px;
}


}

@media only screen and (max-width: 600px) {
  .ad-display-section {
    position: fixed;
    z-index: 9999;
  }

  .ad-display-left-bottom, .ad-display-right-bottom {
    bottom: 0;
  }

  .ad-display-left-top, .ad-display-right-top {
    top: 0;
  }
}

@media only screen and (min-width: 600px) {
  .ad-display-left-bottom {
    transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -webkit-transform-origin: 0 100%;
    left: 5%;
    bottom: 0;
  }

  .ad-display-left-top {
    transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    left: 5%;
    top: 70px;
  }

  .ad-display-right-top {
    transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    -webkit-transform-origin: 100% 0;
    top: 70px;
    right: 5%;
  }

  .ad-display-right-bottom {
    transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
    top: 0;
    right: 0%;
  }

  .ad-display-section {
    min-width: 1150px; /* needs to be so position fixed doesnt mess with flexbox - change accordingly */
    position: fixed;
    transform: scale(0.5, 0.5);
    -ms-transform: scale(0.5, 0.5); /* IE 9 */
    -webkit-transform: scale(0.5, 0.5); /* Safari and Chrome */
    -o-transform: scale(0.5, 0.5); /* Opera */
    -moz-transform: scale(0.5, 0.5); /* Firefox */
  }
}


/*----FLOATY END----*/

span.mod {
    background: #c72b67;
    color: white;
    font-size: 10px;
    margin-right: 10px;
    margin-left: -7px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 2px 7px;
}
.btn-secondary {
    color: #fff;
    background-color: #373444;
    border: none;
}
.btn-secondary:hover {
    color: white;
    background-color: #373444;
}

#floating-iframe-container {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 99999;
}

#floating-iframe-container iframe {
  height: 500px;
      width: 500px;
}

#close-iframe {
    position: absolute;
    top: 0;
    right: 20px;
    cursor: pointer;
}
#floating-iframe-container img {
    max-width: 70vw;
}

ins#revive-0-1 {
    color: white;
    width: 49px;
    font-size: 14px;
    height: 100px;
    text-align: center;
    font-weight: 500;
    font-family: 'Roboto';
}
a.hhztz.show {
    max-height: 70px;
    transition: max-height .25s ease-in;
}

.hhzt {
    line-height: 15px;
    padding: 1.4em;
    font-size: 0.9em;
    font-weight: 700;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 150px;
    text-align: center;
    border-radius: 10px;
    background: none;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbca27;
    color: #000;
}
.hhzt:hover {
    background: white;
    color: black;
}
span.hhct {
    text-align: center;
    width: 100%;
}


@media (max-width: 768px) {
#floating-iframe-container iframe {
    height: 300px;
    width: 300px;
}
.hhzt {
    max-height: 50px;
    left: 0px;
    right: 0px;
    font-size: 0.8em;
}
}
