body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  color: #fff;
}
p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 30px;
}
a {
  color: inherit;
  text-decoration: none !important;
}
a:hover,
a:focus,
a:active {
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

a.filled-button {
  background-color: #ed3130;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s;
}

a.filled-button:hover {
  background-color: #fff;
  color: #050505;
}

a.subs-button {
  background-color: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s;
  border: 1px solid #fff;
}

a.subs-button:hover {
  background-color: #ed3130;
  color: #fff;
  border: 1px solid #ed3130;
}

a.border-buttons {
  background-color: #242424;
  color: #fff;
  border: 1px solid #fff;
  font-size: 13px;
  text-transform: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 9px;
  display: inline-block;
  transition: all 0.3s;
}

a.border-buttons:hover {
  background-color: #ed3130;
  color: #fff;
}

a.border-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s;
}

a.border-button:hover {
  background-color: #fff;
  color: #050505;
}

a.view-more .chevron-right {
  margin-left: 18px;
  font-size: 26px;
  font-family: "FontAwesome";
  color: #666;
}

a.view-more .chevron-right::after {
  content: "\f105";
}

.alert-darks {
  color: #ffff;
  background-color: #343434;
  border-color: #343434;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1e1e1e;
}

.section-heading em {
  font-style: normal;
  color: #ed3130;
}

.section-heading span {
  display: block;
  margin-top: 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #666;
  letter-spacing: 1px;
}
.auth-modal .modal-dialog {
  max-width: 450px;
}
.auth-modal .modal-dialog .modal-header {
  background-color: #343434;
  color: #fff;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}
.auth-modal .modal-dialog .modal-header button.close {
  color: #fff;
  opacity: 0.7;
}
.auth-modal .modal-dialog p {
  font-size: 13px;
}
.auth-modal .modal-dialog .modal-body .header-modal {
  text-align: center;
}
.auth-modal .modal-dialog .modal-body .header-modal h4 {
  font-weight: 700;
}
.auth-modal .modal-dialog .modal-body .header-modal .modal-logo {
  width: 75px;
  margin: 0 auto;
}
.auth-modal .modal-dialog .modal-body .header-modal .modal-logo img {
  width: 100%;
}

#preloader {
  overflow: hidden;
  background: #ed3130;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Sub Header Style */

.sub-header {
  background-color: #ed3130;
  height: 46px;
  line-height: 46px;
}

.sub-header ul li {
  display: inline-block;
}

.sub-header ul.left-info li {
  border-left: 1px solid rgba(250, 250, 250, 0.3);
  padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.left-info li i {
  margin-right: 10px;
  font-size: 18px;
}

.sub-header ul.left-info li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.sub-header ul.right-icons {
  float: right;
}

.sub-header ul.right-icons li {
  margin-right: -4px;
  width: 46px;
  display: inline-block;
  text-align: center;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li:first-child {
  border-left: 1px solid rgba(250, 250, 250, 0.3);
}

.sub-header ul.right-icons li a {
  color: #fff;
  transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
  opacity: 0.75;
}

/* Header Style */
header {
  position: absolute;
  z-index: 999;
  width: 100%;
  background-color: transparent !important;
  height: 88px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header .navbar {
  padding: 20px 0px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.55)),
    to(transparent)
  );
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.55), transparent);
  background: linear-gradient(rgba(0, 0, 0, 0.55), transparent);
}
header .navbar-brand img {
  height: 60px;
  width: 125px;
}
.background-header .navbar {
  padding: 10px 0px;
  background-color: #000;
}
.background-header {
  top: 0;
  position: fixed;
  background-color: #000 !important;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}
.background-header .navbar-brand h2 {
  color: #ffbc00 !important;
}
.background-header .navbar-nav a.nav-link {
  color: #ffff !important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active > .nav-link,
.background-header .navbar-nav .nav-link.current,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show > .nav-link {
  color: #ffbc00 !important;
}
.no-background-header {
  top: 0;
  position: sticky;
  background-color: #000 !important;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
}
.no-background-header .navbar {
  padding: 10px 0px;
  background-color: #000;
}
.navbar .navbar-brand {
  float: left;
  outline: none;
}
.navbar .navbar-brand h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.navbar .navbar-brand h2 em {
  font-style: normal;
  font-size: 16px;
}
#navbarResponsive {
  z-index: 999;
}
.navbar-collapse {
  text-align: center;
}
.navbar .navbar-nav .nav-item {
  margin: 0px 12px;
}
.navbar .navbar-nav a.nav-link {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #fff;
  transition: all 0.5s;
  margin-top: 5px;
  margin-bottom: 5px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}
.navbar .navbar-nav a.nav-link:first-letter,
.navbar .navbar-nav a.nav-link:first-line {
  text-transform: capitalize;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link {
  color: #ffbc00;
}
.nav-link img {
  height: 12px !important;
  vertical-align: baseline !important;
  margin-right: 4px;
}
.navbar .navbar-toggler-icon {
  background-image: none;
}
.navbar .navbar-toggler {
  border-color: #ffff;
  background-color: transparent;
  height: 36px;
  outline: none;
  border-radius: 5px;
  position: absolute;
  right: 30px;
  top: 20px;
}
.navbar .navbar-toggler-icon:after {
  content: "\f0c9";
  color: #ffff;
  font-size: 18px;
  line-height: 26px;
  font-family: "FontAwesome";
}
.navbar .dropdown-menu {
  border-radius: 8px;
  border: 0px;
}
.navbar .dropdown-download:hover .dropdown-menu {
  display: block;
}
.navbar button.btn-back {
  border: 0 none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.navbar button.btn-back::before {
  content: url("../images/icon/arrow-prev.svg");
}

/* Custom Accordion */

.accordion .card {
  border: 0;
  border-radius: 10px !important;
  margin-bottom: 0.5rem;
  color: #242424;
  background-color: #fff;
}
.accordion .card-header {
  background-color: #242424;
}
.accordion .card-header {
  border-radius: 8px !important;
}
.accordion .card-header .text-title {
  padding: 1rem 0 1rem 0;
  color: #ffffff;
}
.accordion .card-header .text-title[aria-expanded="true"] {
  color: #fdd669;
}
.accordion .card-header .text-title:hover {
  cursor: pointer;
  color: #fdd669;
}

/* Custom Header Avatar */

.navbar .navbar-profile .profile-photo {
  display: inline-block;
  height: 40px;
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
}
.navbar .navbar-profile .profile-photo img {
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: 300ms ease;
}
.navbar .navbar-profile .profile-photo img,
.navbar .navbar-profile .profile-photo span {
  margin-right: 8px;
  color: #fff;
}
.navbar .navbar-profile .dropdown-menu a {
  padding: 6px 20px;
}
.navbar .navbar-profile .dropdown-menu .dropdown-item i {
  padding-right: 2rem;
}
.navbar-profile.show .profile-photo {
  background-color: rgba(0, 0, 0, 0.25);
}
.background-header .navbar-profile.show .profile-photo,
.no-background-header .navbar-profile.show .profile-photo {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Modal Custom Style */

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.modal-content {
  background-color: #242424;
  border-radius: 8px !important;
}

.modal-header {
  position: relative;
  border-bottom: none !important;
  padding: 0 !important;
  overflow: hidden;
}
.modal-header a.close {
  top: 1.5rem;
  right: 1.5rem;
  display: block;
  position: absolute;
  background-image: url("../images/icon/close-on-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  z-index: 99;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}
.modal-header img {
  width: 100%;
  height: 260px; /* 360px */
  object-fit: cover;
  object-position: top;
}
.modal-header a.close:hover {
  opacity: 1 !important;
}
.modal-header .content-overlay {
  border-radius: 0 !important;
  backdrop-filter: blur(10px);
  opacity: 1;
}

.modal-content .owl-carousel .prev-arrow {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    color-stop(#2424247c, #242424ea)
  );
  background: -webkit-linear-gradient(right, transparent, #2424247c, #242424ea);
  background: -o-linear-gradient(right, transparent, #2424247c, #242424ea);
  background: linear-gradient(to left, transparent, #2424247c, #242424ea);
}

.modal-content .owl-carousel .next-arrow {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(#2424247c, #242424ea)
  );
  background: -webkit-linear-gradient(left, transparent, #2424247c, #242424ea);
  background: -o-linear-gradient(left, transparent, #2424247c, #242424ea);
  background: linear-gradient(to right, transparent, #2424247c, #242424ea);
}

.modal-content .list-group-item {
  background-color: transparent;
  border-color: transparent;
  border-radius: 8px;
}
.modal-content .list-group-item:hover {
  background-color: rgba(255, 255, 255, 0.28);
}
.modal-content .list-group-item.active {
  background-color: #ed3130;
  border-color: transparent;
}
.modal-body input {
  border-radius: 8px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 15px;
  color: #aaa !important;
  background-color: #343434;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 15px;
}
.modal-body input.form-control {
  margin-bottom: 0;
}
.modal-body input:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #343434;
}

/* Episode Item */

li.episode-item {
  border-radius: 8px;
  padding: 1rem 3.5rem;
}
.episode-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.episode-item.active {
  border: 1px solid #6d6d6d;
}
.episode-item .portrait-item {
  width: auto;
  height: auto;
  margin-right: 2rem;
}
.episode-item .portrait-item img {
  width: 112px;
  height: 168px;
}
.episode-item:hover {
  background: #6d6d6d;
}

.num {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  margin-right: 3.5rem;
  flex: none;
}

/* Search Box */

.search-box {
  width: fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
}
.input-search {
  border-style: none;
  font-size: 15px;
  outline: none;
  transition: all 0.5s ease-in-out;
  padding-right: 32px;
  color: #fff;
}
.input-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
}
.btn-search {
  width: 40px;
  height: auto;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color: #ffffff;
  background-color: transparent;
  pointer-events: painted;
}
.btn-search:focus {
  border: none !important;
  outline: none !important;
}

/* Scrollbar Custom Style */

.custom-vertical-scrollbar {
  overflow: hidden;
  overflow-y: auto;
}
/* .custom-vertical-scrollbar {
  overflow-y: hidden;
}
.custom-vertical-scrollbar:hover,
.custom-vertical-scrollbar:active,
.custom-vertical-scrollbar:focus {
  overflow-y: auto;
} */
.custom-vertical-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-vertical-scrollbar::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.custom-vertical-scrollbar::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.38);
}
.custom-vertical-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #242424;
  border-radius: 4px;
}

/* Button Custom Style */

.btn-outline-primary-indihome {
  color: #ed3130;
  background-color: transparent;
  background-image: none;
  border-color: #ed3130;
}

.btn-outline-primary-indihome:hover {
  color: #fff;
  background-color: #ed3130;
  border-color: #ed3130;
}

.btn-outline-primary-indihome:focus,
.btn-outline-primary-indihome.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-primary-indihome.disabled,
.btn-outline-primary-indihome:disabled {
  color: #ed3130;
  background-color: transparent;
}

.btn-outline-primary-indihome:not(:disabled):not(.disabled):active,
.btn-outline-primary-indihome:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary-indihome.dropdown-toggle {
  color: #fff;
  background-color: #ed3130;
  border-color: #ed3130;
}

.btn-outline-primary-indihome:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary-indihome:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary-indihome.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.white-button {
  color: #000 !important;
  background-color: #fff !important;
}
.icon-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
i.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
i.icon::before {
  content: "";
  display: inline-block;
  background-size: contain;
  height: 24px;
  width: 65px;
}
i.icon.useetv::before {
  background: url("../images/icon/useetv-logo-small.png") no-repeat;
}
i.icon.indihome::before {
  background: url("../images/icon/icon-telkomsel.png") no-repeat;
}

/* Tab Chips Custom Style */

.tab-chips {
  /* position: sticky; */
  /* top: 88px; */
  background-color: #000 !important;
  z-index: 99;
}

.tab-chips .nav {
  flex-wrap: nowrap !important;
  padding-bottom: 0.4em;
}

.tab-chips .nav-pills {
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
}

.tab-chips .nav-pills > li {
  float: none;
}

.tab-chips .nav-chip-tabs {
  display: flex !important;
  flex-basis: auto;
  padding-bottom: 0.6em;
}

.tab-chips .nav-chip-tabs a.active {
  text-decoration: none !important;
}

.tab-chips .nav-chip-tabs .nav-pills .nav-link {
  color: white;
}

.tab-chips .nav-chip-tabs .nav-link {
  background-color: #242424;
  border-radius: 1.5em;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
}

.tab-chips .nav-chip-tabs .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.28);
}

.tab-chips .nav-chip-tabs .nav-pills .nav-link.active {
  background-color: rgba(255, 255, 255, 0.38);
  border-radius: 1.5em;
}

.tab-chips .nav::-webkit-scrollbar {
  height: 8px;
}

.tab-chips .nav::-webkit-scrollbar-thumb {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.tab-chips .nav::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.4);
}

/* Tab Fill and Justify Custom Style */

.nav-fill .nav-link {
  background-color: #242424;
  border-radius: 8px;
  padding: 0.8rem 0rem;
}

.nav-fill .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.28);
}

.nav-fill .nav-link p {
  line-height: normal;
}

.nav-fill li.nav-item {
  background-color: #242424;
  border-radius: 8px;
  margin-right: 16px;
}

.nav-fill li.nav-item:last-child {
  margin-right: 0 !important;
}

.nav-fill .nav-link.active,
.nav-fill .show > .nav-link {
  background-color: #ed3130;
}

/* Schedule List */

.schedule-list {
  min-height: 400px;
}
.schedule-list .schedule-item {
  padding: 1rem 1rem;
  border-radius: 8px;
}
.schedule-list .schedule-item.live {
  border-width: 2px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.schedule-list .schedule-item.active:hover {
  background-color: #242424;
}

.schedule-list .schedule-item b,
.schedule-list .schedule-item p {
  line-height: 35px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.schedule-list .schedule-item p {
  width: 20%;
  margin-left: 16px;
}
.schedule-list .schedule-item p.date {
  width: 20%;
  margin-left: 16px;
}
.tab-content.schedule-list .schedule-item p {
  width: 30%;
  margin-left: 16px;
}
.schedule-list .schedule-item b {
  width: 60%;
  margin-left: 8px;
  text-align: left;
}
.tab-content.schedule-list .schedule-item b {
  width: 70%;
  margin-left: 8px;
  text-align: left;
}
.schedule-list .schedule-item.disabled b,
.schedule-list .schedule-item.disabled p {
  color: rgba(255, 255, 255, 0.5);
}

.replay {
  width: 4rem;
  height: 26px;
  display: block;
  background-image: url("../images/icon/replay.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.waiting {
  width: 4rem;
  height: 26px;
  display: block;
  background-image: url("../images/icon/access_time.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.schedule-list .schedule-item .badge {
  width: 3.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .tab-content.schedule-list .tab-pane a.schedule-item::before {
  content: url("../images/icon/replay.svg");
  display: block;
  position: absolute;
  left: 0px;
  text-align: center;
  font-size: 36px;
  line-height: 0 !important;
} */

/* Bootstrap Custom Style */

section#top {
  padding-top: 40px !important;
}

.bg-indihome {
  background-color: #ed3130 !important;
}

.bg-gold {
  background-color: #fdd669 !important;
  color: #000 !important;
}

.bg-secondary {
  background-color: rgba(255, 255, 255, 0.87) !important;
  color: #000;
}

.bg-dark {
  background-color: rgba(255, 255, 255, 0.38) !important;
}

.btn-dark {
  background-color: #242424;
  border-color: #242424;
}

.btn-dark:hover {
  color: #fff;
  background-color: #0f1218;
  border-color: #0f1218;
}

.dropdown-toggle::after {
  margin-left: 0.5em;
  vertical-align: 0.1em;
  border-top: 0.4em solid;
}

.btnCollapse {
  margin-top: 1em;
  margin-bottom: 1em;
}

.badge {
  height: 30%;
  display: inline-block;
  padding: 0.5em 0.8em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
}

a.item-link {
  color: #343434;
  background-color: transparent;
}

/* Breadcrumb */

.breadcrumb-item.active {
  color: #ffffffb2;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffffb2;
}

/* Banner Style */

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  min-height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0 !important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.Modern-Slider .item .img-fill {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}

.Modern-Slider .item .img-fill img {
  object-fit: cover;
  width: 100%;
}

.Modern-Slider .NextArrow {
  position: absolute;
  top: 50%;
  right: 30px;
  border: 0 none;
  background-color: transparent;
  transform: scale(1.5);
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.Modern-Slider .NextArrow:before {
  content: url("../images/icon/right-arrow-on-circle-white.svg");
}

.Modern-Slider .PrevArrow {
  position: absolute;
  top: 50%;
  left: 30px;
  border: 0 none;
  background-color: transparent;
  transform: scale(1.5);
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.Modern-Slider .PrevArrow:before {
  content: url("../images/icon/right-arrow-on-circle-white.svg");
}

/* mirror the arrow for one time use assets */
.Modern-Slider .PrevArrow {
  -moz-transform: scale(-1.5, 1.5);
  -webkit-transform: scale(-1.5, 1.5);
  -o-transform: scale(-1.5, 1.5);
  -ms-transform: scale(-1.5, 1.5);
  transform: scale(-1.5, 1.5);
}

.Modern-Slider .NextArrow:hover,
.Modern-Slider .PrevArrow:hover {
  opacity: 1;
}

.Modern-Slider .NextArrow:focus,
.Modern-Slider .PrevArrow:focus {
  outline: 0 !important;
}

.Modern-Slider .text-content {
  text-align: left;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.Modern-Slider .item h6 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ed3130;
  animation: fadeOutRight 1s both;
}

.Modern-Slider .item h4 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  animation: fadeOutLeft 1s both;
}

.Modern-Slider .item p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.Modern-Slider .item.slick-active h6 {
  animation: fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4 {
  animation: fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active {
  animation: Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

.Modern-Slider {
  background: #000;
}

/* Promo Banner Styles */

.promo-banner {
  margin: 2vw 0 !important;
}

.large-leaderboard {
  width: 100%;
  margin: auto;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

.large-leaderboard img {
  width: 970px;
  height: 90px;
  margin: auto;
}

/* .promo-banner .thin-banner img {
  object-fit: cover;
  border-radius: 8px;
  max-height: 157px;
} */

.promo-banner img {
  object-fit: cover;
  border-radius: 8px;
}

/* ==== Slick Slider Css Ruls === */
.slick-slider {
  position: relative;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left /* If RTL Make This Right */;
  height: 100%;
  min-height: 1px;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-dots {
  bottom: 14px !important;
}

.slick-dots li button::before {
  color: white !important;
}

.slick-dots li.slick-active button::before {
  color: white !important;
  opacity: 1 !important;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slick-dots li {
  margin: 0 !important;
}

/* Overlay */

.content-overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 30px;
  z-index: 10;
  background: -webkit-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0,
    rgba(0, 0, 0, 0.6)
  );
  background: -o-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0,
    rgba(0, 0, 0, 0.6)
  );
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0,
    rgba(0, 0, 0, 0.6)
  );
  transition: all 0.3s ease;
}
.content-overlay .fa {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: white !important;
}

/* Main Banner */

.Modern-Slider {
  display: none;
}
.Modern-Slider.slick-initialized {
  display: block;
}

.main-banner .slider-nav {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 5;
}

.main-banner .slider-dots {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 5;
}

/* Section */

.live-streaming,
.live-tv,
.trending,
.sport,
.movie-package,
.my-kids,
.video-pilihan,
.artikel-terbaru,
.aniplus,
.highlight-this-month,
.live-tv-channels,
.tv-lokal,
.berita-terkini,
.religi,
.player,
.artikel-highlight,
.rekomendasi,
.left-content,
.right-content,
section.movies,
.medium-content {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Live TV */
/* 
.live-tv h4 {
  font-size: 22px;
  font-weight: 600;
}

.live-tv a.border-button {
  margin-top: 12px;
  float: right;
} */

/* .live-tv {
  overflow: hidden;
}
.live-tv .owl-carousel .owl-stage {
  padding-left: 0 !important;
}
.live-tv .owl-carousel .owl-stage-outer {
  overflow: unset;
} */

/* Trending */

/* Sport */

/* Movie Packages */

/* Kid Packages */

/* Video Pilihan */

/* Video Pilihan */

/* Highlight This Month */

.newslight-this-month img.image-content {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  margin: auto;
}


.highlight-this-month img.image-content {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  width: 50%;
  margin: auto;
}

.highlight-this-month .text-content > p {
  margin: 12px 0;
}

.highlight-this-month .text-content > a {
  margin: 16px 0;
}

/* Live TV Channels */

.channel-item {
  background-color: transparent;
  border: 0px !important;
  width: 88px;
  height: 88px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.channel-item img {
  width: 100% !important;
  object-fit: cover;
  object-position: center center;
  margin: auto;
}
.channel-item .tv-overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 30px;
  background-color: rgba(200, 0, 6, 0.5);
  transition: all 0.3s ease;
}
.channel-item .tv-overlay .fa {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: white !important;
}
.channel-item .tv-overlay:hover {
  opacity: 1;
  cursor: pointer;
}
.col-channel {
  padding: 0.5rem 1rem;
}

.search-form .form-control {
  background-color: transparent !important;
  padding-right: 2.375rem;
  border-radius: 8px;
  color: white;
}

.search-form .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  right: 1rem;
  line-height: 2.4rem;
  text-align: center;
  pointer-events: none;
  color: #fff;
}

/* Player */

.player .left-content .video-schedule,
.player .left-content .video-description,
.player .left-content .channel-tv,
.player .left-content .jadwal-acara,
.player .right-content .rekomendasi {
  padding-top: 12px;
}

.player .left-content .video-schedule-time {
  padding-top: 0.5em;
}

.player .left-content .tab-content {
  max-height: 16em;
  overflow: hidden;
  overflow-y: scroll;
  text-align: center;
}

.player .left-content .tab-content::-webkit-scrollbar {
  width: 12px;
}

.player .left-content .tab-content::-webkit-scrollbar-thumb {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.player.left-content .tab-content::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(255, 255, 255, 0.4);
}

.player .rekomendasi img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  /*min-width: 176px;*/
  height: 100px;
}
/* .player .right-content .rekomendasi .text-content {
  padding: 0.5rem 0;
  color: #777777;
  font-size: 12px;
}
.player .rekomendasi .text-content > p {
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #fff;
} */

/* Nano Scroller */

.nano {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.nano .nano-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: scroll;
    overflow-x: hidden;
}
.nano .nano-content:focus {
    outline: thin dotted;
}
.nano .nano-content::-webkit-scrollbar {
    display: none;
}
.nano > .nano-pane {
    width: 10px;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.2s;
    border-radius: 5px;
    visibility: hidden\9;
    opacity: 0.01;
}
.nano > .nano-pane > .nano-slider {
    background: #444;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0 1px;
    border-radius: 3px;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
    display: block;
}
.nano-pane.active,
.nano-pane.flashed,
.nano:hover > .nano-pane {
    visibility: visible\9;
    opacity: 0.99;
}

/* Payment */

.payment {
  color: black !important;
}
.payment.container {
  position: relative;
  width: auto;
  max-width: 600px;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.payment .card {
  max-width: 600px;
  border: 0px !important;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(20, 20, 20, 0.2);
  overflow: hidden;
}

.payment-content .list-group-item {
  background-color: transparent;
  border-color: transparent;
  border-radius: 8px;
}
.payment-content .list-group-item:hover {
  background-color: #0000001e;
}
.payment-content .list-group-item.active {
  background-color: #00000042;
  border-color: transparent;
}
.payment-header img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.payment-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

a.filled-button.on-white {
  background-color: #ed3130;
  color: #fff;
}
a.filled-button.on-white:hover {
  background-color: #242424;
  color: #ffffff;
}
a.border-button.on-white {
  color: #000;
  border: 2px solid #242424;
}
a.border-button.on-white:hover {
  background-color: #242424;
  color: #ffffff;
}

/* Premium Content */

.premium-content .card {
  border: 0px !important;
  border-radius: 12px;
  background-color: #242424;
  margin-bottom: 2rem;
  width: 100% !important;
}
.premium-content .card .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
}
.premium-content .card .text-content a.link-voucher:hover,
.premium-content .card .text-content a.link-voucher:focus {
  text-decoration: underline !important;
}

/* Artikel */

#article-body {
  background-color: #fff;
  color: #000;
}

.artikel-highlight .highlight-this-month img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  height: 368px;
}

.artikel-highlight a.carousel-control-next,
.artikel-highlight a.carousel-control-prev {
  background-image: url("../images/icon/controls_black.png");
}

.artikel-categories-header {
  background-color: #ffffff !important;
  top: 88px;
  z-index: 999;
}

.artikel-categories-header .box-shadow {
  -webkit-box-shadow: 0 8px 6px -6px rgba(66, 28, 28, 0.2);
  -moz-box-shadow: 0 8px 6px -6px rgba(33, 33, 33, 0.2);
  box-shadow: 0 8px 6px -6px rgba(33, 33, 33, 0.2);
}

.artikel-content {
  padding: 2rem 0 16rem 0;
}

.artikel-content img {
  border-radius: 8px;
}

.artikel-content .card {
  border: 0px !important;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(20, 20, 20, 0.05);
  margin-bottom: 2rem;
  width: 100% !important;
}

.artikel-content a .card {
  color: #000;
}

.artikel-content .large-item .text-content {
  padding: 0.5rem 1rem 2rem 1rem;
}

.artikel-content .card > .text-content p {
  color: rgba(54, 54, 54, 0.65) !important;
}

.artikel-content .promo-banner {
  margin: 12px 0 12px 0 !important;
}

.artikel-content .rekomendasi .text-content {
  padding: 0.5rem 0;
  color: #777777;
  font-size: 12px;
}

.artikel-content .rekomendasi .text-content > p {
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

.artikel-content .artikel-paragraph p {
  margin-bottom: 1.5rem;
}

.artikel-content .share-item ul.social-icons li {
  display: inline-block;
  margin-right: 12px;
}

.artikel-content .share-item ul.social-icons li:last-child {
  margin-right: 0px;
}

.artikel-content .share-item ul.social-icons li a {
  width: 24px;
  height: 24px;
  text-align: center;
  color: #3c3c3c;
  transition: all 0.3s;
}

.artikel-content .share-item ul.social-icons li a:hover {
  color: #ed3130;
}

.artikel-content .share-item .icon {
  display: inline-block;
  width: 27px;
  height: 28px;
  background-size: cover;
}
.artikel-content .share-item .icon-facebook {
  background-image: url(../images/icon/facebook.svg);
}
.artikel-content .share-item .icon-twitter {
  background-image: url(../images/icon/twitter.svg);
}
.artikel-content .share-item .icon-instagram {
  background-image: url(../images/icon/instagram.svg);
}
.artikel-content .share-item .icon-whatsapp {
  background-image: url(../images/icon/whatsapp.svg);
}

.artikel-content .share-item .icon-facebook:hover,
.artikel-content .share-item .icon-facebook:focus,
.artikel-content .share-item .icon-twitter:hover,
.artikel-content .share-item .icon-twitter:focus,
.artikel-content .share-item .icon-instagram:hover,
.artikel-content .share-item .icon-instagram:focus,
.artikel-content .share-item .icon-whatsapp:hover,
.artikel-content .share-item .icon-whatsapp:focus {
  filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg)
    brightness(104%) contrast(97%);
}

.artikel-content .recomend-list .card {
  height: 108px;
}

.artikel-content .recomend-list .card img {
  border-radius: 12px;
  width: 180px;
  height: 108px;
}

/* Article Custom Tab Navigation */

.nav-article-tabs {
  display: flex !important;
  flex-basis: auto;
}

.nav-article-tabs a.active {
  border-bottom: 4px solid #ed3130;
}

.nav-article-tabs .nav-link {
  color: rgb(110, 110, 110);
  font-weight: 500;
  padding: 1rem 1rem;
}

.nav-article-tabs .nav-link:hover {
  color: #ed3130;
}

.nav-article-tabs .nav-pills .nav-link.active {
  color: black;
  background-color: white;
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 600;
}

/* Tags Custom Style */

.tags ul li {
  position: relative;
  display: inline-block;
  padding: 4px 14px;
  background: #141414;
  border-radius: 25px;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 8px;
}

/* Card Item Styles */

.card:hover a {
  cursor: pointer;
}

/* medium-item */
.medium-item {
  background-color: transparent;
  border-color: transparent;
  width: 252px;
}

.medium-item img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  min-height: 142px;
}

.owl-carousel .medium-item img {
  height: 142px !important;
}

.medium-item .text-content p {
  font-size: 12px;
}

.medium-item .text-content p span.strong {
  font-weight: bolder;
}

.medium-item .text-content p span.white {
  color: #fff;
}

.medium-item .image-content {
  position: relative;
  overflow: hidden;
  border: 0px !important;
  border-radius: 8px;
}
.medium-item .image-content:hover .content-overlay {
  opacity: 1;
}
.medium-item .image-content:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease 0s;
}

.medium-item .content-duration {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  right: 8px;
  bottom: 8px;
  text-align: center;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px;
  border-radius: 4px;
}

/* large-item */
.large-item {
  background-color: transparent;
  border-color: transparent;
}

.large-item img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  height: 243px;
}

.large-item img {
  object-fit: cover;
  border-radius: 8px;
  height: 243px;
}

.large-item .image-content {
  position: relative;
  overflow: hidden;
  border: 0px !important;
  border-radius: 8px;
}
.large-item .text-content {
  padding: 1rem 0 1rem 0;
}

.large-item > .text-content h4 {
  padding: 0.25rem 0 0.25rem 0;
}

.large-item > .text-content p {
  font-size: 12px;
}

.large-item .text-content p > span.strong {
  font-weight: bolder;
  text-transform: uppercase;
}

.large-item .text-content p > span.red {
  color: #ed3130;
}

.large-item .top-left {
  color: #fff;
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
}

/* portrait-item */
.portrait-item {
  position: relative;
  background-color: transparent;
  border-color: transparent;
  overflow: hidden;
  border: 0px !important;
  border-radius: 8px;
  width: 176px;
  height: 264px;
}
.portrait-item:hover .content-overlay {
  cursor: pointer;
  opacity: 1;
}
.portrait-item:hover img {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.3s ease 0s;
}

.responsive .portrait-item {
  width: auto !important;
  height: auto !important;
  height: 264px;
  margin: auto auto 1.8rem auto;
}
.responsive .portrait-item img {
  height: auto !important;
}

.portrait-item img {
  object-fit: cover;
  object-position: center;
  height: 264px;
}

.portrait-item .nomo {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.portrait-item .nomo:before {
  content: url("../images/icon/crown-icon.svg");
  display: flex;
  margin-top: 2px;
  height: 32px;
  width: 32px;
  transform: scale(0.8);
  justify-content: center;
  align-items: center;
}

.portrait-item .indihome {
  position: absolute;
  background: transparent;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  z-index: 2;
  content: url("../images/icon/useetv-logo-medium.png");
}

.portrait-item .caption {
  color: #fff;
  width: 100%;
  line-height: 1;
  position: absolute;
  bottom: 0px;
  text-align: center;
  z-index: 2;
  background: -webkit-linear-gradient(
    top,
    transparent,
    rgba(14, 14, 14, 0.65),
    rgba(14, 14, 14, 0.8)
  );
  padding: 24px 2px 16px 2px;
}
.portrait-item.caption:hover .caption {
  padding-bottom: 24px;
  transition: all 0.3s ease 0s;
}
.portrait-item.caption:hover img {
  transform: none;
}

/* landscape-item */
.landscape-item {
  position: relative;
  background-color: transparent;
  border-color: transparent;
  overflow: hidden;
  border: 0px !important;
  border-radius: 8px;
  width: 164px;
  height: 50%;
}

.responsive .landscape-item {
  width: 164px !important;
  height: 50% !important;
  width: 164px;
  margin: auto auto 1.8rem auto;
}
.responsive .landscape-item img {
  width: 164px !important;
}

.landscape-item img {
  object-fit: cover;
  object-position: center;
  width: 164px;
}


/* card */
.card > .text-content p,
.card > a .text-content p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.card.info-dark {
  background-color: transparent;
  padding: 1rem 1rem 0rem 1rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(214, 214, 214, 0.2);
  margin-bottom: 2rem;
  width: 100% !important;
}
.card.info-dark .close-btn:hover {
  color: #ffbc00 !important;
  cursor: pointer;
}

/* Heading Styles */

.heading-badge {
  display: flex;
  align-items: center;
  margin: auto;
}

.heading-badge.gold {
  color: #fdd669;
}

.heading-badge.indihome {
  color: #ed3130;
}

.heading-badge > img {
  height: 0.8em;
  margin-right: 8px;
}

.heading-badge > .badge {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  margin: 0px 8px 0px 8px;
}

/* Text Styles */

.text-icon {
  display: flex;
  align-items: center;
  margin: auto;
}

p.text-icon > img {
  object-fit: fill;
  width: 22px !important;
  height: 20px !important;
  border-radius: 0 !important;
  margin-right: 12px;
}

/* Owl Carousel */

/* .owl-carousel .owl-stage-outer {
  overflow: unset !important;
} */
.owl-nav {
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  -o-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
.owl-carousel .next-arrow {
  position: absolute;
  top: 0%;
  right: -0px;
  height: 100%;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: llinear-gradient(
    to right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}
.owl-carousel .next-arrow:before {
  content: "\f105";
}
.owl-carousel .prev-arrow {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: linear-gradient(
    to left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}
.owl-carousel .prev-arrow:before {
  content: "\f104";
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  visibility: hidden;
}

/* Owl Content Medium*/

.owl-content-medium .next-arrow {
  position: absolute;
  top: 0%;
  right: -0px;
  height: 142px;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: llinear-gradient(
    to right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}

.owl-content-medium .prev-arrow {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 142px;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: linear-gradient(
    to left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}

/* Owl Content Large*/

.owl-content-large .next-arrow {
  position: absolute;
  top: 0%;
  right: -0px;
  height: 243px;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: llinear-gradient(
    to right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}

.owl-content-large .prev-arrow {
  position: absolute;
  top: 0%;
  left: 0px;
  height: 243px;
  border: 0 none;
  text-align: center;
  font-size: 36px;
  font-family: "FontAwesome";
  color: #fff;
  z-index: 5;
  outline: none;
  cursor: pointer;
  width: calc(calc(100vw - 165px) / 50);
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    color-stop(rgba(14, 14, 14, 0.4)),
    to(rgba(14, 14, 14, 0.6))
  );
  background: -webkit-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: -o-linear-gradient(
    right,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
  background: linear-gradient(
    to left,
    transparent,
    rgba(14, 14, 14, 0.4),
    rgba(14, 14, 14, 0.6)
  );
}

/* Owl Content Large*/

/* Owl Content Portrait*/

/* Bootstrap Carousel Styles */

.custom-controller a.carousel-control-next-black {
  background-position: -32px 0;
  width: 32px;
  display: block;
  height: 32px;
  background-image: url("../images/icon/controls_black.png");
  cursor: pointer;
  position: unset;
  z-index: 99;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}
.custom-controller a.carousel-control-prev-black {
  width: 32px;
  display: block;
  height: 32px;
  background-image: url("../images/icon/controls_black.png");
  cursor: pointer;
  position: unset;
  z-index: 99;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}



.custom-controller a.carousel-control-next,
.custom-controller a.carousel-control-prev {
  width: 32px;
  display: block;
  height: 32px;
  background-image: url("../images/icon/controls.png");
  cursor: pointer;
  position: unset;
  z-index: 99;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.custom-controller a.carousel-control-next {
  background-position: -32px 0;
  margin-left: 4px;
}

.custom-controller a.carousel-control-prev {
  background-position: 0 0;
  margin-right: 4px;
}

.custom-controller .carousel-control-next-icon,
.custom-controller .carousel-control-prev-icon {
  background-image: none !important;
}

.custom-controller .carousel-control-next:hover,
.custom-controller .carousel-control-prev:hover {
  opacity: 1;
}

.carousel-indicators {
  position: unset;
  justify-content: flex-start;
  bottom: 99999;
  margin-right: auto;
  margin-left: 0;
  margin-bottom: 0;
}

.carousel-indicators li {
  width: 6px;
  height: 6px;
  opacity: 0.25;
  background-color: white;
  margin-right: 10px;
  border-radius: 100%;
}

.carousel-indicators .active {
  opacity: 1 !important;
}

.carousel-indicators li:hover {
  opacity: 1 !important;
}

/* Footer Style */

footer {
  background-color: #232323;
  padding: 80px 0px;
  color: #fff;
}

footer h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  margin-bottom: 35px;
}
footer p {
  color: #fff;
}

footer ul.social-icons {
  margin-top: 25px;
}

footer ul.social-icons li {
  display: inline-block;
  margin-right: 5px;
}

footer ul.social-icons li:last-child {
  margin-right: 0px;
}

footer ul.social-icons li a {
  width: 34px;
  height: 34px;
  display: inline-block;
  line-height: 34px;
  text-align: center;
  background-color: #fff;
  color: #232323;
  border-radius: 50%;
  transition: all 0.3s;
}

footer ul.social-icons li a:hover {
  background-color: #ed3130;
}

footer ul.menu-list li {
  margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
  margin-bottom: 0px;
}

footer ul.menu-list li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s;
}

footer ul.menu-list li a:hover {
  color: #ed3130;
}

footer .contact-form input {
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  padding: 0px 15px;
  color: #aaa !important;
  background-color: #343434;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 15px;
}

footer .contact-form input:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #343434;
}

footer .contact-form textarea {
  border-radius: 20px;
  height: 120px;
  max-height: 200px;
  min-height: 120px;
  display: inline-block;
  padding: 15px;
  color: #aaa !important;
  background-color: #343434;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  border: none;
  margin-bottom: 15px;
}

footer .contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border: none;
  background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder {
  /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
  background-color: transparent;
  color: #fff;
  background-color: #ed3130;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  cursor: pointer;
}

footer .contact-form button.filled-button:hover {
  background-color: #fff;
  color: #ed3130;
}

/* Sub-footer Style */

.sub-footer {
  background-color: #343434;
  text-align: center;
  padding: 25px 0px;
}

.sub-footer p {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.sub-footer a {
  color: #fff;
}

.page-heading {
  text-align: center;
  background-image: url(https://images.useetv.com/useetv-com-revamp/assets/images/background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0px 10px 0px;
}

.page-heading-login {
  background-image: url(https://images.useetv.com/useetv-com-revamp/assets/images/banner-profile.png);
  background-position: center center;
  background-repeat: inherit;
  background-size: auto;
  padding: 200px 0px 150px 0px;
}

.page-heading h1 {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.page-heading span {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: block;
}

/* Responsive Style */
@media (max-width: 768px) {
  header {
    height: 68px;
  }
  header .navbar-brand img {
    height: 30px;
    width: 80px;
  }
  .sub-header {
    display: none;
  }
  .Modern-Slider .item h6 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .Modern-Slider .item h4 {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1px;
  }
  .Modern-Slider .item p {
    max-width: 570px;
    line-height: 25px;
    margin-bottom: 30px;
  }

  /* Request Form */

  .request-form {
    background-color: #ed3130;
    padding: 40px 0px;
    color: #fff;
  }

  .request-form h4 {
    font-size: 22px;
    font-weight: 600;
  }

  .request-form span {
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    margin-top: 10px;
  }

  .request-form a.border-button {
    margin-top: 12px;
    float: right;
  }

  /* Services */

  .services {
    margin-top: 140px;
  }

  .service-item img {
    width: 100%;
    overflow: hidden;
  }

  .service-item .down-content {
    background-color: #3c3c3c;
    padding: 30px;
  }

  .service-item .down-content h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.25px;
    margin-bottom: 15px;
  }

  .service-item .down-content p {
    margin-bottom: 20px;
  }

  .fun-facts .left-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .more-info .right-content {
    padding: 30px;
    
  }
  .ex1{
    height: 40px;
  width: 20px;
  overflow-y: scroll;  
  }
  footer {
    padding: 80px 0px 20px 0px;
  }
  footer .footer-item {
    border-bottom: 1px solid #343434;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  footer .last-item {
    border-bottom: none;
  }
  .about-info .right-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .team .team-item {
    margin-bottom: 30px;
  }
  .tabs-content {
    margin-left: 0px;
    margin-top: 30px;
  }
  .contact-item {
    margin-bottom: 30px;
  }
  .tab-chips .nav::-webkit-scrollbar {
    height: 0 !important;
  }
  .tab-chips .nav::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    -webkit-box-shadow: none !important;
  }
  .tab-chips .nav::-webkit-scrollbar-thumb:window-inactive {
    background: none !important;
  }
  .highlight-this-month img.image-content {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .owl-nav {
    display: none;
  }
  .navbar .navbar-brand {
    position: absolute;
    left: 30px;
    top: 10px;
  }
  .navbar .navbar-brand {
    width: auto;
  }
  .navbar:after {
    display: none;
  }
  #navbarResponsive {
    z-index: 999;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    text-align: left !important;
    background-color: #000;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  .navbar .navbar-nav .navbar-profile {
    margin: 0px 12px;
  }
  .navbar .navbar-nav a.nav-link,
  .navbar .navbar-nav .search-box {
    color: #fff !important;
    width: 100%;
    padding-left: 6px;
    padding-right: 6px;
  }
  .navbar .navbar-nav .border-button,
  .navbar .navbar-nav .search-box {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .active > .nav-link,
  .navbar .navbar-nav .nav-link.current,
  .navbar .navbar-nav .nav-link.show,
  .navbar .navbar-nav .show > .nav-link,
  .navbar .navbar-nav .search-box {
    color: #fff !important;
    border-bottom: none !important;
    background-color: #232323;
    border-radius: 4px;
  }
  .navbar-profile.show .profile-photo {
    background-color: rgba(255, 255, 255, 0.25) !important;
  }
  .custom-controller a.carousel-control-next,
  .custom-controller a.carousel-control-prev {
    position: absolute !important;
    top: 50%;
    transform: scale(1.5);
  }
  .custom-controller {
    height: 436px;
  }
  .input-search {
    height: 32px;
    width: 100%;
    background-color: transparent;
  }
  .input-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
  }
}

/* Extra large devices (mobile, 576px and up) */
@media only screen and (min-width: 576px) {
  .highlight-this-month .carousel-item {
    width: 540px;
  }
}

/* Extra large devices (large mobile and tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .highlight-this-month .carousel-item {
    width: 720px;
  }
}

/* Extra large devices (large laptops and desktops, 1100px and up) */
@media only screen and (min-width: 1100px) {
  .input-search {
    height: 32px;
    width: 32px;
    background-color: transparent;
  }
  .input-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
  }
  .btn-search:focus ~ .input-search {
    width: 12vw;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .input-search:focus {
    width: 12vw;
    border-radius: 0px;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .modal-content-detail {
    max-width: 1100px !important;
  }
  .highlight-this-month .carousel-item {
    width: 1080px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .main-banner .NextArrow,
  .main-banner .PrevArrow {
    border: 0 none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    top: 50%;
    position: absolute;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
  }
  .main-banner .NextArrow{
    transform: scale(1.5);
    right: 50px;
    
  }
  .main-banner .PrevArrow{
    left: 50px;
  }
  .main-banner .NextArrow:before,
  .main-banner .PrevArrow:before {
    content: url("../images/icon/right-arrow-on-circle-white.svg");
  }
  .main-banner .NextArrow:hover,
  .main-banner .PrevArrow:hover {
    opacity: 1;
  }
  /* mirror the arrow for one time use assets */
  .main-banner .PrevArrow {
    -moz-transform: scale(-1.5, 1.5);
    -webkit-transform: scale(-1.5, 1.5);
    -o-transform: scale(-1.5, 1.5);
    -ms-transform: scale(-1.5, 1.5);
    transform: scale(-1.5, 1.5);
  }
  .main-banner {
    position: relative;
  }
  .Modern-Slider .item h4 {
    -webkit-line-clamp: 2 !important; /* number of lines to show */
    line-clamp: 2 !important;
  }
  .Modern-Slider .item p {
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
  }
  .main-banner .text-content {
    top: 62%;
  }
  .main-banner .slider-nav {
    top: 50%;
  }
  .main-banner .slider-dots {
    bottom: 0%;
  }
  .slick-dots {
    width: auto !important;
  }
  .highlight-this-month .carousel-item {
    width: 1440px;
  }
}

/*Video js */

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button > .vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button > .vjs-icon-placeholder:before {
  text-align: center;
}
@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,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)
    format("woff");
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder,
.vjs-icon-play {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
  content: "\f101";
}
.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-play-circle:before {
  content: "\f102";
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,
.vjs-icon-pause {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
  content: "\f103";
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,
.vjs-icon-volume-mute {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
  content: "\f104";
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,
.vjs-icon-volume-low {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
  content: "\f105";
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
  content: "\f106";
}
.video-js .vjs-mute-control .vjs-icon-placeholder,
.vjs-icon-volume-high {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
  content: "\f107";
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-enter {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
  content: "\f108";
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-exit {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
  content: "\f109";
}
.vjs-icon-square {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-square:before {
  content: "\f10a";
}
.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-spinner:before {
  content: "\f10b";
}
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder,
.vjs-icon-subtitles {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js.video-js:lang(en-AU)
  .vjs-subs-caps-button
  .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB)
  .vjs-subs-caps-button
  .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE)
  .vjs-subs-caps-button
  .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ)
  .vjs-subs-caps-button
  .vjs-icon-placeholder:before,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
  content: "\f10c";
}
.video-js .vjs-captions-button .vjs-icon-placeholder,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-captions {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
  content: "\f10d";
}
.video-js .vjs-chapters-button .vjs-icon-placeholder,
.vjs-icon-chapters {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
  content: "\f10e";
}
.vjs-icon-share {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-share:before {
  content: "\f10f";
}
.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-cog:before {
  content: "\f110";
}
.video-js .vjs-play-progress,
.video-js .vjs-volume-level,
.vjs-icon-circle {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before {
  content: "\f111";
}
.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-circle-outline:before {
  content: "\f112";
}
.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}
.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-hd:before {
  content: "\f114";
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
  content: "\f115";
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
  content: "\f116";
}
.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-facebook:before {
  content: "\f117";
}
.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-gplus:before {
  content: "\f118";
}
.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-linkedin:before {
  content: "\f119";
}
.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-twitter:before {
  content: "\f11a";
}
.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-tumblr:before {
  content: "\f11b";
}
.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-pinterest:before {
  content: "\f11c";
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder,
.vjs-icon-audio-description {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
  content: "\f11d";
}
.video-js .vjs-audio-button .vjs-icon-placeholder,
.vjs-icon-audio {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
  content: "\f11e";
}
.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-next-item:before {
  content: "\f11f";
}
.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}
.vjs-icon-previous-item:before {
  content: "\f120";
}
.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: normal;
}
.video-js:-moz-full-screen {
  position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js[tabindex="-1"] {
  outline: none;
}
.video-js *,
.video-js :after,
.video-js :before {
  box-sizing: inherit;
}
.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin: 0;
}
.video-js.vjs-4-3,
.video-js.vjs-16-9,
.video-js.vjs-fluid {
  width: 100%;
  max-width: 100%;
  height: 0;
}
.video-js.vjs-16-9 {
  padding-top: 56.25%;
}
.video-js.vjs-4-3 {
  padding-top: 75%;
}
.video-js.vjs-fill,
.video-js .vjs-tech {
  width: 100%;
  height: 100%;
}
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
}
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}
.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.video-js.vjs-fullscreen {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
.vjs-hidden {
  display: none !important;
}
.vjs-disabled {
  opacity: 0.5;
  cursor: default;
}
.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0 auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66a8cc;
}
.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.5em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s;
}
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.75em;
  margin-left: -1.5em;
}
.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}
.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause
  .vjs-big-play-button {
  display: block;
}
.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}
.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2;
}
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), hsla(0, 0%, 100%, 0));
  overflow: auto;
}
.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}
.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}
.vjs-menu-button {
  cursor: pointer;
}
.vjs-menu-button.vjs-disabled {
  cursor: default;
}
.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}
.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto;
}
.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}
.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}
.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2b333f;
}
.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em;
  font-weight: 700;
  cursor: default;
}
.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup:hover .vjs-menu {
  display: block;
}
.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden;
}
.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}
.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s;
}
.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
  display: block;
  opacity: 1;
}
.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
  width: auto;
}
.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
}
.vjs-has-started .vjs-control-bar {
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s;
}
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
  display: none !important;
}
.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}
.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  -ms-flex: none;
  flex: none;
}
.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}
.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
  text-shadow: 0 0 1em #fff;
}
.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}
.video-js .vjs-custom-control-spacer {
  display: none;
}
.video-js .vjs-progress-control {
  cursor: pointer;
  -ms-flex: auto;
  flex: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-width: 4em;
  -ms-touch-action: none;
  touch-action: none;
}
.video-js .vjs-progress-control.disabled {
  cursor: default;
}
.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-no-flex .vjs-progress-control {
  width: auto;
}
.video-js .vjs-progress-holder {
  -ms-flex: auto;
  flex: auto;
  transition: all 0.2s;
  height: 0.3em;
}
.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666666666667em;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}
.video-js .vjs-play-progress {
  background-color: #fff;
}
.video-js .vjs-play-progress:before {
  font-size: 0.9em;
  position: absolute;
  right: -0.5em;
  top: -0.333333333333333em;
  z-index: 1;
}
.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}
.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}
.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}
.video-js
  .vjs-progress-control:hover
  .vjs-progress-holder:focus
  .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible;
}
.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}
.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}
.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}
.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s;
}
.video-js.vjs-user-inactive.vjs-no-flex
  .vjs-progress-control
  .vjs-mouse-display {
  display: none;
}
.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-slider.disabled {
  cursor: default;
}
.video-js .vjs-slider:focus {
  text-shadow: 0 0 1em #fff;
  box-shadow: 0 0 1em #fff;
}
.video-js .vjs-mute-control {
  cursor: pointer;
  -ms-flex: none;
  flex: none;
}
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: -ms-flexbox;
  display: flex;
}
.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}
.video-js .vjs-volume-panel {
  transition: width 1s;
}
.video-js .vjs-volume-panel .vjs-mute-control:hover ~ .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel .vjs-volume-control:hover,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control,
.video-js .vjs-volume-panel:hover .vjs-volume-control {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s,
    top 0s;
}
.video-js
  .vjs-volume-panel
  .vjs-mute-control:hover
  ~ .vjs-volume-control.vjs-volume-horizontal,
.video-js
  .vjs-volume-panel
  .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:hover.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:hover .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
  width: 9em;
  transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3.5em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s,
    top 1s 1s;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s,
    top 1s 1s;
}
.video-js.vjs-no-flex
  .vjs-volume-panel
  .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}
.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex
  .vjs-volume-panel
  .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em;
}
.video-js .vjs-volume-panel {
  display: -ms-flexbox;
  display: flex;
}
.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em;
}
.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em;
}
.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto;
}
.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: 0.9em;
}
.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
  top: -0.5em;
  left: -0.3em;
}
.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
  top: -0.3em;
  right: -0.5em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}
.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
}
.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}
.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.vjs-has-started .vjs-poster {
  display: none;
}
.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
.vjs-using-native-controls .vjs-poster {
  display: none;
}
.video-js .vjs-live-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex: auto;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}
.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}
.video-js .vjs-time-control {
  -ms-flex: none;
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}
.video-js .vjs-current-time,
.video-js .vjs-duration,
.vjs-live .vjs-time-control,
.vjs-no-flex .vjs-current-time,
.vjs-no-flex .vjs-duration {
  display: none;
}
.vjs-time-divider {
  display: none;
  line-height: 3em;
}
.vjs-live .vjs-time-divider {
  display: none;
}
.video-js .vjs-play-control .vjs-icon-placeholder {
  cursor: pointer;
  -ms-flex: none;
  flex: none;
}
.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
}
.vjs-subtitles {
  color: #fff;
}
.vjs-captions {
  color: #fc6;
}
.vjs-tt-cue {
  display: block;
}
video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}
.video-js.vjs-user-inactive.vjs-playing
  video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}
.video-js .vjs-fullscreen-control {
  cursor: pointer;
  -ms-flex: none;
  flex: none;
}
.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate > .vjs-menu-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}
.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0;
}
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}
.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}
.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}
.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: 0s linear 0.3s forwards c;
}
.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: #fff;
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
  animation: d 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite,
    e 1.1s linear infinite;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: #fff;
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: #fff;
  animation-delay: 0.44s;
}
@keyframes c {
  to {
    visibility: visible;
  }
}
@keyframes d {
  to {
    transform: rotate(1turn);
  }
}
@keyframes e {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: #fff;
  }
  60% {
    border-top-color: #73859f;
  }
  to {
    border-top-color: #73859f;
  }
}
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}
.video-js
  .vjs-subs-caps-button
  + .vjs-menu
  .vjs-captions-menu-item
  .vjs-menu-item-text
  .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js
  .vjs-subs-caps-button
  + .vjs-menu
  .vjs-captions-menu-item
  .vjs-menu-item-text
  .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\f10d";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js
  .vjs-audio-button
  + .vjs-menu
  .vjs-main-desc-menu-item
  .vjs-menu-item-text
  .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em;
}
.video-js
  .vjs-audio-button
  + .vjs-menu
  .vjs-main-desc-menu-item
  .vjs-menu-item-text
  .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \f11d";
  font-size: 1.5em;
  line-height: inherit;
}
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  -ms-flex: auto;
  flex: auto;
  display: block;
}
.video-js.vjs-layout-tiny:not(.vjs-fullscreen).vjs-no-flex
  .vjs-custom-control-spacer {
  width: auto;
}
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-audio-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-panel,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subs-caps-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-panel,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-mute-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subs-caps-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control,
.video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-panel {
  display: none;
}
.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}
.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}
.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
  display: table-cell;
}
.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}
@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
  }
  .vjs-text-track-settings .vjs-track-settings-colors {
    display: block;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .vjs-text-track-settings .vjs-track-settings-font {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .vjs-text-track-settings .vjs-track-settings-controls {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.vjs-track-setting > select {
  margin-right: 5px;
}
.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}
.vjs-text-track-settings fieldset span {
  display: inline-block;
}
.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px;
}
.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f);
}
.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}
.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f);
  color: #2b333f;
  cursor: pointer;
  border-radius: 2px;
}
.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}
@media print {
  .video-js > :not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

/* Extra large devices (large laptops and desktops, 1400px and up) */
@media only screen and (min-width: 1440px) {
  .Modern-Slider .item h4 {
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
  }
  .Modern-Slider .item p {
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
  }
  .main-banner .text-content {
    top: 56%;
  }
  .main-banner .slider-dots {
    bottom: 8%;
  }
  .slick-dots {
    width: auto !important;
  }

  .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
  }
  .pagination > li {
    display: inline;
  }
  .pagination > li > a,
  .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
  }
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
  }
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }
  .pagination > li > a:hover,
  .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
  }
  .pagination > .active > a,
  .pagination > .active > a:hover,
  .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #ed3130;
    border-color: #ed3130;
    cursor: default;
  }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
  }

  .pagination-lg > li > a,
  .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
  }

  .pagination-lg > li:first-child > a,
  .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }

  .pagination-lg > li:last-child > a,
  .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
  }

  .pagination-sm > li > a,
  .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .pagination-sm > li:first-child > a,
  .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
  }

  .pagination-sm > li:last-child > a,
  .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }

  .profile-header {
    min-height: 230px;
    background: url("https://images.useetv.com/useetv-com-revamp/assets/images/banner-profile.png");
    box-shadow: inset 0px 5px 10px rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .profile-header .profile-image {
    position: absolute;
    width: 180px;
    height: 180px;
    overflow: hidden;
    top: 60px;
    left: 30%;
    border: 2px solid #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  }
  .profile-header .profile-image img {
    width: 100%;
  }
  .profile-header .profile-name {
    position: initial;
  }
  .profile-header .profile-name h1 {
    color: #fff;
    position: absolute;
    bottom: 0px;
  }

  .profile-navbar .navbar-nav > li > a {
    padding-top: 20px;
    padding-bottom: 15px;
    border-bottom: 5px solid transparent;
  }

  .profile-navbar li.active a {
    border-bottom: 5px solid #343434;
  }

  .profile-body {
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.1);
    min-height: 300px;
  }

  .result-card {
    height: 150px;
    padding: 10px;
    margin-bottom: 25px;
  }
  .result-card img {
    float: left;
    margin-right: 10px;
    height: 100%;
    width: auto;
  }
  .result-card__title h4 {
    margin-top: 0px;
  }
  .result-card__type {
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    padding: 3px 12px;
    background-color: #c80006;
    color: #fff;
    border-radius: 3px;
  }
  .result-card__desc {
    font-size: 14px;
    margin-top: 5px;
  }

  .containers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}

.otp-input {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.otp-input input {
  width: 40px;
  height: 50px;
  background-color: transparent;
  border-bottom-color: #ffffff;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  margin: 0 2px;
}



  
}
