/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  box-sizing: border-box;
  font-family: "ThaiSansNeue", sans-serif;
}

button, a {
  cursor: pointer;
  text-decoration: none;
  font-family: "ThaiSansNeue", sans-serif;
}

button {
  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */ /* IE 10+ */
  user-select: none; /* Likely future */
}

button:focus {
  outline: 0;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box;
}

h1, h2, h3, h4, p, span {
  margin: 0;
  font-family: "ThaiSansNeue", sans-serif;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

p {
  margin: 0;
}

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

.vibie-logo-link {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: left;
  margin-left: 285px;
  transition: margin-left 0.4s;
}
.vibie-logo-link img.vibie-nav-logo-img {
  height: 100%;
  padding: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.vibie-nav {
  position: relative;
}
.vibie-nav .vibie-logo {
  display: block;
  width: 100%;
  height: 65px;
  position: absolute;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vibie-nav .vibie-logo .vibie-menu-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 65px;
  width: 65px;
  visibility: visible;
}
.vibie-nav .vibie-logo .vibie-menu-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
}
.vibie-nav .vibie-nav-content {
  margin-top: 65px;
  height: calc(100vh - 65px);
  overflow-y: hidden;
  position: relative;
  transition: all 0.4s;
}
.vibie-nav .vibie-nav-content:hover {
  overflow-y: overlay;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel {
  position: relative;
  display: block;
  width: 100%;
  padding: 25px 25px 0;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .page-title {
  font-size: 0.8rem;
  margin-bottom: 25px;
  color: #616161;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .img-group {
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  display: block;
  margin: 0 auto;
  position: relative;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .img-group .profile-img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  background: #b3b3b3;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .img-group .status-profile-img {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: block;
  background: rgb(221, 0, 0);
  right: 0;
  bottom: 0;
  border: 2px solid #dadada;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .img-group .status-profile-img.online {
  background: rgb(5, 175, 5);
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .profile-name {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .profile-details {
  width: 100%;
  display: block;
  position: relative;
  display: flex;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .profile-details .profile-content {
  flex: 1;
  text-align: center;
  height: 65px;
  position: relative;
  margin-top: 5px;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .profile-details .profile-content label.content-title {
  font-size: 0.7rem;
  font-weight: normal;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  color: #7c7c7c;
}
.vibie-nav .vibie-nav-content .vibie-nav-my-channel .profile-details .profile-content p.text-num {
  font-size: 1rem;
  font-weight: bold;
}
.vibie-nav .vibie-nav-content hr {
  border-width: 0px;
  height: 2px;
  display: block;
  width: 100%;
  background: #c8c8c8;
  margin-bottom: 0;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list {
  padding: 25px 25px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list h3.vibie-nav-title {
  font-size: 0.9rem;
  font-weight: bold;
  color: #8c8c8c;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li {
  padding: 10px 0;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li a {
  width: 100%;
  display: block;
  color: #282828;
  font-size: 1rem;
  position: relative;
  padding-left: 45px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li a .icon {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li a:hover {
  color: #7e66ff;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.active a:before {
  content: " ";
  width: 4px;
  height: 100%;
  display: block;
  background: #7e66ff;
  position: absolute;
  left: -25px;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel {
  height: 60px;
  display: block;
  position: relative;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel a {
  height: 100%;
  padding-left: 0;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel a:hover {
  color: #7e66ff;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel img,
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel p {
  display: inline-block;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel img.subscription-user-img {
  height: 35px;
  width: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  float: left;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel .channel-name {
  width: calc(100% - 35px);
  height: 100%;
  float: right;
  padding: 0;
  padding-left: 12px;
  padding-right: 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vibie-nav .vibie-nav-content ul.vibie-nav-menu-list li.subscription-channel .alert-channel {
  position: absolute;
  right: -15px;
  top: 8px;
  width: 18px;
  height: 18px;
  display: block;
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
}

.vibie-main-nav .vibie-menu-btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  visibility: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.vibie-main-nav .vibie-menu-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
}
.vibie-main-nav ul.vibie-main-nav-right {
  position: absolute;
  right: 35px;
  top: 0px;
  display: block;
  height: 100%;
  height: 100%;
}
.vibie-main-nav ul.vibie-main-nav-right li {
  height: 100%;
}
.vibie-main-nav ul.vibie-main-nav-right li a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.vibie-main-nav ul.vibie-main-nav-right li a p {
  font-size: 1.1rem;
  color: #7e66ff;
  background: #fff;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 5px 25px;
}
.vibie-main-nav ul.vibie-main-nav-right li a p:hover {
  background: #e0e0e0;
}

@font-face {
  font-family: "ThaiSansNeue";
  src: url("/fonts/ThaiSansNeueV1/TrueType/ThaiSansNeue-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "ThaiSansNeue";
  src: url("/fonts/ThaiSansNeueV1/TrueType/ThaiSansNeue-Bold.ttf");
  font-weight: bold;
}
a {
  color: #282828;
}

html {
  overflow-x: hidden;
}

* {
  font-family: "ThaiSansNeue", sans-serif;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: top;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
  position: absolute;
  right: -5px;
}
*::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
*::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
}

html, body {
  font-size: 160%;
  margin: 0;
}

#VibieApp {
  width: 100vw;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
}
#VibieApp .vibie-nav, #VibieApp .vibie-main {
  margin-right: 0;
  vertical-align: top;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
#VibieApp .vibie-nav {
  width: 260px;
  background: #f8f8f8;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  height: 100%;
  display: block;
}
#VibieApp .vibie-main {
  width: 100%;
  background: #fff;
  z-index: 1;
  padding-top: 65px;
  display: block;
  margin-left: 260px;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  #VibieApp .vibie-main {
    padding: 15px !important;
  }
}
#VibieApp .vibie-main .vibie-main-nav {
  height: 65px;
  width: 100%;
  display: block;
  position: fixed;
  z-index: 9999;
  background: #fff;
  left: 0;
  top: 0;
  border-bottom: 1px solid #dfdfdf;
}
#VibieApp .vibie-main .vibie-main-nav .vibie-menu-btn {
  position: absolute;
  left: 0;
  top: 0;
  height: 65px;
  width: 65px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
#VibieApp .vibie-main .vibie-main-nav .vibie-menu-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 20px;
}
#VibieApp.disable-nav {
  overflow-x: hidden;
  overflow-y: overlay;
}
#VibieApp.disable-nav .vibie-logo-link {
  margin-left: 75px;
}
#VibieApp.disable-nav .vibie-nav {
  left: -260px;
}
#VibieApp.disable-nav .vibie-nav .vibie-menu-btn {
  opacity: 0 !important;
  visibility: hidden !important;
}
#VibieApp.disable-nav .vibie-nav .vibie-menu-btn .vibie-logo-img {
  visibility: hidden !important;
}
#VibieApp.disable-nav .vibie-main {
  margin-left: 0px;
}
@media only screen and (min-width: 1280px) {
  #VibieApp.disable-nav .vibie-main {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1600px) {
  #VibieApp.disable-nav .vibie-main {
    margin-left: 0;
  }
}
#VibieApp.disable-nav .vibie-main .vibie-main-nav .vibie-menu-btn {
  opacity: 1;
}
#VibieApp.disable-nav .vibie-main .vibie-main-nav .vibie-menu-btn img {
  visibility: visible !important;
}
#VibieApp.disable-nav .vibie-main .item-sample-7 {
  visibility: visible !important;
  opacity: 1;
}

.scrollingPanel {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

img {
  display: block;
  font-size: 0.9rem;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.3s;
}
img.lazy {
  visibility: hidden;
}
img.loaded {
  visibility: visible;
}

.container {
  padding: 15px;
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 1000px;
  }
}
@media only screen and (min-width: 1440px) {
  .container {
    width: 1000px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    width: 1400px;
  }
}

.container-fluid {
  display: flex;
  margin: 0 auto;
  width: 100%;
}
.container-fluid.with-main-sub .main-content {
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 65px);
  padding: 0 25px;
  transition: all 0.4s;
}
.container-fluid.with-main-sub .sub-content {
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  border-left: 1px solid #dfdfdf;
  background: #fff;
  z-index: 9;
}
@media only screen and (min-width: 1024px) {
  .container-fluid.with-main-sub .main-content {
    width: calc(100% - 250px);
  }
  .container-fluid.with-main-sub .sub-content {
    width: 250px;
  }
}
@media only screen and (min-width: 1280px) {
  .container-fluid.with-main-sub .main-content {
    width: calc(100% - 300px);
  }
  .container-fluid.with-main-sub .sub-content {
    width: 300px;
  }
}
@media only screen and (min-width: 1440px) {
  .container-fluid.with-main-sub .main-content {
    width: calc(100% - 280px);
    padding: 0 0;
  }
  .container-fluid.with-main-sub .sub-content {
    width: 280px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-fluid.with-main-sub .main-content {
    width: calc(100% - 320px);
    padding: 0 2%;
  }
  .container-fluid.with-main-sub .sub-content {
    width: 320px;
  }
}
.container-fluid .content-space {
  margin-top: 8px;
  padding: 17px 17px 0;
}
.container-fluid .wrapper {
  width: 100%;
  display: block;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.animated-background {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

.flex-body {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.login-wrapper {
  width: 400px;
  display: block;
  padding: 25px;
  border: 1px solid #dadada;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.login-wrapper h2.login-word {
  font-size: 1.3rem;
  text-align: center;
}
.login-wrapper .app-thumbnail {
  margin-top: 15px;
}
.login-wrapper .app-thumbnail img {
  width: 40%;
  margin: 0 auto;
}
.login-wrapper .app-logo {
  margin-top: 15px;
}
.login-wrapper .app-logo img {
  height: 40px;
  margin: 0 auto;
}
.login-wrapper .login-area {
  margin-top: 25px;
  padding-left: 7px;
}
.login-wrapper .login-area img {
  width: 100%;
}

.has-shadow {
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}

.vibie-app-page .title-name {
  color: #4b4b4b;
  font-size: 1.2rem;
  padding: 8px 8px 5px;
}
.vibie-app-page .content-list-wrapper {
  width: 100%;
  display: block;
}
.vibie-app-page .content-list-wrapper .item-sample-7 {
  visibility: hidden !important;
  opacity: 0;
  transition: all 0.3s;
}
.vibie-app-page .content-list-wrapper .live-list-content {
  display: inline-block;
  width: 200px;
  padding: 8px;
  margin-right: -13px;
}
@media only screen and (min-width: 1280px) {
  .vibie-app-page .content-list-wrapper .live-list-content {
    width: 12.8571428571%;
  }
}
@media only screen and (min-width: 1600px) {
  .vibie-app-page .content-list-wrapper .live-list-content {
    width: 13.8571428571%;
  }
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper {
  width: 100%;
  height: 300px;
  display: block;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper {
    height: 213px;
  }
}
@media only screen and (min-width: 1600px) {
  .vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper {
    height: 300px;
  }
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper img.user-thumbmail {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper span.family-name {
  position: absolute;
  left: 5px;
  bottom: 5px;
  font-size: 0.6rem;
  padding: 0px 10px;
  background: #7e66ff;
  color: #fff;
  border-radius: 12px;
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper .live-score-num {
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 0.7rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
  padding-left: 30px;
  color: #fff;
  font-weight: normal;
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .img-thumbnail-wrapper .live-score-num .live-icon {
  width: 23px;
  height: 23px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0px;
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .infomation-wrapper {
  width: 100%;
  height: 80px;
  display: block;
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .infomation-wrapper .live-user-name {
  font-weight: normal;
  font-size: 0.8rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 8px 0;
  display: block;
  color: #757575;
}
@media only screen and (max-width: 1600px) {
  .vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .infomation-wrapper .live-user-name {
    font-size: 0.7rem;
  }
}
.vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .infomation-wrapper .live-title {
  font-size: 0.8rem;
  height: 1.5rem;
  line-height: 0.8rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  -webkit-line-clamp: 2;
  white-space: normal;
}
@media only screen and (max-width: 1600px) {
  .vibie-app-page .content-list-wrapper .live-list-content.use-profile-caster .infomation-wrapper .live-title {
    font-size: 0.6rem;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content {
  display: inline-block;
  width: 100%;
  height: 237.5px;
  margin-right: -13px;
  padding: 8px;
}
@media only screen and (min-width: 1280px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content {
    width: 12.8571428571%;
  }
}
@media only screen and (min-width: 1600px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content {
    width: 13.8571428571%;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .img-thumbnail-wrapper {
  width: 100%;
  height: 112.5px;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .img-thumbnail-wrapper {
    height: 79.875px;
  }
}
@media only screen and (min-width: 1280px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .img-thumbnail-wrapper {
    height: 79.875px;
  }
}
@media only screen and (min-width: 1600px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .img-thumbnail-wrapper {
    height: 112.5px;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .img-thumbnail-wrapper img.user-thumbmail {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .result-wrapper {
  width: 100%;
  display: block;
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .result-wrapper span {
  font-size: 0.7rem;
  color: #777777;
}
@media only screen and (min-width: 1280px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .result-wrapper span {
    font-size: 0.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .result-wrapper span {
    font-size: 0.7rem;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper {
  width: 100%;
  display: block;
  position: relative;
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper .live-user-name {
  font-weight: normal;
  font-size: 0.8rem;
  width: 100%;
  height: 50px;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  color: #787878;
  padding-top: 18px;
  vertical-align: baseline;
  padding-bottom: 5px;
}
@media only screen and (max-width: 1600px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper .live-user-name {
    font-size: 0.7rem;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper .live-title {
  font-size: 0.8rem;
  color: #282828;
  height: 1.6rem;
  line-height: 0.8rem;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  -webkit-line-clamp: 2;
  white-space: normal;
}
@media only screen and (max-width: 1600px) {
  .vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper .live-title {
    font-size: 0.6rem;
  }
}
.vibie-app-page .content-list-wrapper .tv-video-list-content.use-video-thumbnail .infomation-wrapper img.user-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 0px;
  top: -20px;
  background: #dadada;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
}

.alert-text {
  color: red;
  font-size: 14px;
}
