html {
    --plyr-color-main: #c70e31;
}

.hidden {
    display: none;
}


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

    .heading {
        height: auto;
    }
}

.strikethrough {
    text-decoration: line-through;
}

.tabNoHover:hover{
   color: #919197 !important;
}

.defaultCursor {
    cursor: default;
}

.plyr__poster {
    transform: scale(1.2) !important;
}

.skeleton {
    box-shadow: 0 4px 10px 0 rgba(33, 33, 33, 0.15);
    position: relative;
    overflow: hidden;
}

.skeleton::before {
    content: '';
    display: block;
    position: absolute;
    left: -150px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, #E8E8E8 50%, transparent 100%);
    animation: load-shine 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.skeleton-video {
    box-shadow: 0 4px 10px 0 rgba(33, 33, 33, 0.15);
    overflow: hidden;
}

.skeleton-video::before {
    content: '';
    display: block;
    position: absolute;
    left: -150px;
    top: 0;
    height: 100%;
    width: 150px;
    background: linear-gradient(to right, transparent 0%, #E8E8E8 50%, transparent 100%);
    animation: load-shine 1s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes load-shine {
    from {
        left: -150px;
    }
    to   {
        left: 100%;
    }
}


.marquee-horizontal {
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 40px;
    margin-top: 1em;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f46b14;
  }
  .marquee-horizontal._2.dark {
    margin-top: 0em;
    background-color: #000000;
  }
  
  .track-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .marquee-text {
    margin-right: 8vw;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    color: #fff;
    text-transform: uppercase;
  }
  
  .marquee-text._2 {
    color: #c60c31;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
  }
  
  .center {
    text-align: center;
  }