/* ==========================================================================
   #Custom HTML5 Video Player
   ========================================================================== */

   
  /* 
  html {
    box-sizing: border-box;
    font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
    height: 100%;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  }
  
  body {
    height: 100%;
  }
  */

  :root {
    --youtube-red: #fe0900;
  }
  
  .blue-text {
    color: #002f6d;
  }

  .cursor-default {
    cursor: default;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .font-bold {
    font-weight: 600;
  }

  .webinar-title-text {
    font-weight: 400;
    font-size: 30px;
    position: relative;
  }

  .insequence-title-text {
    font-weight: 400;
    font-size: 22px;
  }

  @media(max-width: 1536px) {
    .webinar-title-text {
      font-size: 26px;
    }

    .insequence-title-text {
      font-size: 20px;
    }
  }

  @media(max-width: 991.98px) {
    .webinar-title-text {
      font-size: 22px;
    }

    .insequence-title-text {
      font-size: 18px;
    }
  }

  .container-center {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-container {
    width: 100%;
    height: 520px;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: contain;
  }
  
  .video-controls {
    right: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    bottom: 0;
    transition: all 0.2s ease;
    background-image: linear-gradient(to bottom,rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.5));
  }
  
  .video-controls.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  .video-control-icons {
    font-size: 16px;
    padding: 3px;
    color: white;
    cursor: pointer;
  }

  .video-controls-disabled {
    color: #808080 !important;
    cursor: none !important;
  }
  
  .video-progress {
    position: relative;
    height: 8.4px;
    margin-bottom: 10px;
  }
  
  .video-container progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    width: 100%;
    height: 8.4px;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
  
  .video-container progress::-webkit-progress-bar {
    background-color: #474545;
    border-radius: 2px;
  }
  
  .video-container progress::-webkit-progress-value {
    background: var(--youtube-red);
    border-radius: 2px;
  }
  
  .video-container progress::-moz-progress-bar {
    border: 1px solid var(--youtube-red);
    background: var(--youtube-red);
  }
  
  .seek {
    position: absolute;
    top: 0;
    width: 100%;
    cursor: pointer;
    margin: 0;
    padding-left: 0;
    padding-right: 0;    
  }
  
  .seek:hover + .seek-tooltip {
    display: block;
  }
  
  .seek-tooltip {
    display: none;
    position: absolute;
    top: -50px;
    margin-left: -20px;
    font-size: 12px;
    padding: 3px;
    content: attr(data-title);
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.left-controls {
    display: flex;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
}
  
  .center-controls {
    display: flex;
    justify-content: center;
  }
  
  .right-controls {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
  }

.time {
    margin-right: 10px;
}

.volume-controls {
    display: flex;
    align-items: center;
    margin-left: 0 !important;
}
  
  .volume-button {
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .volume-controls input {
    width: 100px;
    opacity: 1;
    transition: all 0.4s ease;
  }
  
  .volume-controls:hover input,
  .volume-controls input:focus {
    width: 100px;
    opacity: 1;
  }
  
  .video-container button {
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    font-size: 18px;
    padding: 3px;
    border: none;
    outline: none;
    background-color: transparent;
  }
  
  .video-container button * {
    pointer-events: none;
  }
  
  .video-container button::before {
    content: attr(data-title);
    position: absolute;
    display: none;
    right: 0;
    top: -50px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: bold;
    padding: 4px 6px;
    word-break: keep-all;
    white-space: pre;
  }
  
  .video-container button:hover::before {
    display: inline-block;
  }
  
  .fullscreen-button {
    margin-right: 0;
  }
  
  .pip-button svg {
    width: 26px;
    height: 26px;
  }
  
  .playback-icons {
    width: 30px !important;
    height: 35px !important;
  }
  
  .playback-animation {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
  }
  
  .video-container input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 8.4px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .video-container input[type="range"]:focus {
    outline: none;
  }
  
  .video-container input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    cursor: pointer;
    border-radius: 1.3px;
    -webkit-appearance: none;
    transition: all 0.4s ease;
  }
  
  .video-container input[type="range"]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: var(--youtube-red);
    cursor: pointer;
    -webkit-appearance: none;
    margin-left: -1px;
  }
  
  .video-container input[type="range"]:focus::-webkit-slider-runnable-track {
    background: transparent;
  }
  
  .video-container input[type="range"].volume {
    height: 5px;
    background-color: #fff;
  }
  
  .video-container input[type="range"].volume::-webkit-slider-runnable-track {
    background-color: transparent;
  }
  
  .video-container input[type="range"].volume::-webkit-slider-thumb {
    margin-left: 0;
    height: 14px;
    width: 14px;
    background: #fff;
  }
  
  .video-container input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 1.3px;
  }
  
  .video-container input[type="range"]::-moz-range-thumb {
    height: 14px;
    width: 14px;
    border-radius: 50px;
    border: 1px solid var(--youtube-red);
    background: var(--youtube-red);
    cursor: pointer;
    margin-top: 5px;
  }
  
  .video-container input[type="range"]:focus::-moz-range-track {
    outline: none;
  }
  
  .video-container input[type="range"].volume::-moz-range-thumb {
    border: 1px solid #fff;
    background: #fff;
  }
  
  .hidden {
    display: none;
  }
  
  .video-container svg {
    width: 24px;
    height: 28px;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
  }
  
  .skip-button {
    background: none;
    border: 0;
    line-height: 1;
    color: white;
    text-align: center;
    outline: 0;
    padding: 0;
    cursor: pointer;
    max-width: 50px;
  }
  
  .skip-button:focus {
    border-color: #ffc600;
  }
  .ondemand_main_container{
    padding: 0 3rem;
    width:100%;
  }
  
  /* ==========================================================================
     #Insequence Videos
     ========================================================================== */
  
  .insequence-video {
    width: 100%;
    margin: auto;
  }


  .insequence-video-head-wrap{
    width:100%;
  }

  /* ==========================================================================
     #header-blue
     ========================================================================== */

  .insequence-video.page-top-head-blue{
    position: relative;
    background-image: linear-gradient(to right,rgba(0,113,128,0) -1%,rgba(41,171,189,.397) 65%,#00e1ff5b 100%);
    -webkit-mask: linear-gradient(290deg,transparent 27%,#fff 27%) top right;
    -webkit-mask-size: 2000px 2000px;
    -webkit-mask-repeat: no-repeat;
    mask: linear-gradient(290deg,transparent 27%,#fff 27%) top right;
    mask-size: 2000px 2000px;
    mask-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem 5rem;
    margin-bottom:30px;
  }
  .insequence-video.page-top-head-blue:before {
    content: "";
    background-image: url("/-/media/Feature/Page Content/images/banner-bg.png");
    background-size: 100%;
    position: absolute;
    top: 0;
    background-position: 0 40%;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .5;

  }
  .insequence-video.page-top-head-blue .page-top-head-date{
      position:relative;
  }

  /* ==========================================================================
     #header-black
     ========================================================================== */
     .insequence-video.page-top-head-black{
          position: relative;
          background-image: linear-gradient(to right,rgba(0,113,128,0) -1%,rgba(41,171,189,.397) 65%,#00e1ff5b 100%);
          -webkit-mask: linear-gradient(290deg,transparent 27%,#fff 27%) top right;
          -webkit-mask-size: 2000px 2000px;
          -webkit-mask-repeat: no-repeat;
          mask: linear-gradient(290deg,transparent 27%,#fff 27%) top right;
          mask-size: 2000px 2000px;
          mask-repeat: no-repeat;
          z-index: 1;
          display: flex;
          justify-content: space-between;
          padding: 1rem 5rem;
          margin-bottom: 30px;
          align-items: center;
     }
     .insequence-video.page-top-head-black:before {
          content: "";
          background-image: url("/-/media/Feature/Page Content/images/banner-bg.png");
          background-size: 100%;
          position: absolute;
          top: 0;
          background-position: 0 40%;
          right: 0;
          bottom: 0;
          left: 0;
          opacity: .5;
    }
  .insequence-video.page-top-head-black .left-section {
        display: flex;
        align-items: flex-start;
        flex-basis: 85%;
    }
.insequence-video.page-top-head-black .divider{
  border-right: 2px solid #00a0c8;
  min-height: 35px;
}
.page-top-head-date{
  position: relative;
}

.insequence-video .h1 {
    font-size: 28px;
    font-weight: 500;
}
@media(max-width: 767.98px) {
    .author-list {
        padding-left: 0;
        padding-right: 0;
    }
    .insequence-video .h1 {
        font-size: 25px;
        text-align: center !important;
    }
}

#ondemand-webinar .cstm-pd {
    padding-top: 0;
}
  
  .insequence-video-header {
    padding-bottom: 0.5rem;
    padding-top: 0;
  }
  
  .insequence-card {
    /* height: 300px; */
    height: max-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    font-size: smaller;
    box-shadow:0 3px 6px 0 rgba(0, 0, 0, .16);
    transition: all .3s cubic-bezier(.25,.8,.25,1); 
  }

  .insequence-card:hover,
  .insequence-card:active {
    box-shadow:0 4px 12px rgba(0,0,0,.3) !important;
  }
  
  .insequence-header {
    color: #444444; 
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: medium;
    font-size: 18px;
  }

  .insequence-details {
    font-size: 16px;
  }
  
  .insequence-image {
    /* height: 140px; */
    height: 80px;
    width: 100%;
    flex-grow: 1;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }
  
  
@media (max-width: 1116px) {
  .insequence-video {
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 1536px) {
  .insequence-header {
    font-size: 16px;
  }
  .insequence-details {
    font-size: 14px;
  }
  .video-container{
    height: 480px;
  }
}

@media (max-width:1366px){
  .insequence-video.page-top-head-black .left-section {
    flex-basis: 71%;
  }
}

@media (max-width:1199.98px){
  .insequence-details.mt-3{
    margin-top: 0rem !important;
  }
  .insequence-header {
    font-size: 14px;
  }
  .insequence-video.page-top-head-black .left-section {
    flex-basis: 81%;
  }
  .video-container {
    height:480px !important;
  }

    .video-container button {
        margin-right: 6px;
    }
}

@media (max-width:991.98px){
  .insequence-card{
    padding: 10px !important;
  }
  .insequence-video.page-top-head-black{
    padding:1rem 2rem;
  }
  .insequence-video.page-top-head-black .left-section{
    flex-basis: 70%;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .video_left_ipad.col-md-9{
    flex: 0 0 65%;
    max-width: 65%;
  }
  .video_right_ipad.col-md-3{
    flex: 0 0 35%;
    max-width: 35%;
  }
  .volume-controls input {
    width: 50px;
  }
  .volume-controls:hover input, 
  .volume-controls input:focus {
    width: 50px;
  }
  .video_left_ipad .pr-4{
    padding-right: 0 !important;
  }
  .video-container button{
    font-size: 15px;
  }
  .ondemand_main_container {
    padding: 0 15px;
  }
  .video-container {
    height: 360px !important;
  }
}

@media (max-width:767.98px){
  .pr-4.video-main-wrap{
    padding-right: 0 !important;
  }
  #ondemand-webinar .cstm-pd {
    padding-top: 20px;
  }
  .webinar-title-text {
    font-size: 18px;
    margin-right: 30px;
  }
  .insequence-video.page-top-head-black{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem .70rem;
  }
  .ml-1.page-top-head-date{
    margin-left: 0 !important;
  }
  .ondemand_main_container{
    padding:0 15px;
  }
}
  
  /* ==========================================================================
     #Summary and Author Description
     ========================================================================== */

.ondemand-webinar-tab {
    padding-top: 8px;
}

.insequence-video .nav-tabs .nav-link,
.ondemand-webinar-tab .nav-tabs .nav-link {
    color: #929292;
    background-color: #fff;
    border: #fff;
    margin-right: 1rem;
}

  .ondemand-webinar-tab .nav-tabs p {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

.ondemand-webinar-tab .nav-item > a {
    font-weight: 600;
    color: #929292;
}

.insequence-video .nav .active,
.ondemand-webinar-tab .nav .active {
    border-bottom: 3px solid var(--primary-green);
    background-color: #f7f8fc;
    border-color: #f7f8fc #f7f8fc var(--primary-green) #f7f8fc;
    color: var(--primary-green);
    font-weight: 600;
}

  #webinarTabContent ul ,
  .insequence-video ul {
    padding-left: 20px;
  }
  
  .speaker-image {
    display: block;
    margin-right: auto;
    margin-left: auto;
    border-radius: 50%;
    width: 120px;
    height: 120px;
  }
  
  .speaker-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .insequence-speakers {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 12px;
  }

  
  #speakerModule p.collapse[aria-expanded="false"] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #speakerModule p.collapsing[aria-expanded="false"] {
      height: 68px ;
  }

  #speakerModule a.collapsed:after  {
      content: '+ See More';
  }

  #speakerModule a:not(.collapsed):after {
      content: '- See Less';
  }
  
  #speakerModule .collapse.show {
    display: block !important;
    height: auto !important;
  }

  /* ==========================================================================
     #MOBILE VERSION
     ========================================================================== */
  

  @media (max-width: 991.98px) {
    .insequence-header {
      font-size: 14px;
    }
    .insequence-details {
      font-size: 12px;
    }

    .insequence-video .nav-tabs .nav-link,
    .ondemand-webinar-tab .nav-tabs .nav-link {
        margin-right: 0.5rem;
    }
  }

  @media (max-width: 767.98px) {

    .video-container {
      height: 300px !important;
    }

    .video-row {
      margin-left: -15px;
      margin-right: -15px;
    }

    .insequence-video-header .insequence-title-text.blue-text {
      text-align: center;
    }

    .insequence-card {
      background-color: #f7f7f7;
      margin: 0;
    }
  
    .left-controls {
      padding-left: 0;
      padding-right: 0;
      margin-right: 1rem;
    }
  
    .center-controls {
      padding-right: 0;
      padding-left: 0;
    }
  
    .right-controls {
      padding-right: 0;
      padding-left: 1rem;
    }
  
    .time {
      font-size: 8px;
    }
  
    .video-container button {
      font-size: 12px;
      margin-right: 3px;
    }
  
    .video-container svg {
      width: 18px;
      height: 20px;
    }
  
    .volume {
      width: 40px !important;
    }
  
    .playback-icons {
      width: 30px !important;
      height: 28px !important;
    }
  
    .insequence-video-header {
      padding-bottom: 0;
      padding-top: 1.5rem;
    }

    .ondemand-webinar-tab {
        padding-top: 0;
    }

    .insequence-video .nav-tabs .nav-link,
    .ondemand-webinar-tab .nav-tabs .nav-link {
        margin-right: 0rem;
    }
  }
  