/* ==========================================================================
   #Custom HTML5 Video Player
   ========================================================================== */

   :root {
    --youtube-red: #ffffff;
  }
  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%;
  }
  body .modal-backdrop{
  display: none!important;
  }
  .btn-primary {
    color: #fff;
    background-color: #68236D;
    border-color: #68236D;
  }
  .btn-primary:hover {
    color: #fff;
    background-color: #490e4c;
    border-color: #490e4c;
  }
  
  .list-simple { list-style: none; margin: 0 0 15px 0; width:100%; display:inline-block; }
  .list-simple li {
    color: #0f0b1f;
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
  }
  .list-simple li:before {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background-color: #0f0b1f;
    color: #1f295d;
    content: "";
  }
  .modal-para {
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
  }
  .container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-container {
    /* width: 800px; */
    /* height: 100%;
    min-height: 627px;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; */
    width: 100%;
    height: 100%;
    /* min-height: 627px; */
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }
  .start-button-main {
    width: 100%;
    position: absolute;
    margin: 0;
    bottom: 16%;
  }
  .start-button {
      width: 73.5%;
      padding: 10px 10px;
      transition: all 0.2s ease;
      margin-left: auto;
      text-align: center;
  }
      .start-btn {     
          background-color: #68236D;
          color: white;
          padding: 5px 15px;
          border: 2px solid white;
          border-radius: 50px;
          font-weight: 700;
          font-size: 18px;
          margin: 0 0 0 7px;
      }
  
      .why-focus-btn .start-button{
        text-align: right;
      }
      .why-focus-btn .start-button .start-btn{
        max-width: 150px;
        line-height: 20px;
        margin: 0 38px 0 7px;
      }
  video {
    width: 100%;
    height: 100%;
    border-radius: 4px;
  }
  .video-controls-main {
    width: 100%;
    position: relative;
    margin: -8% 20px 0 0;
  }
  .video-controls {
    /* right: 2.5%;
    left: inherit;
    width: 69.5%;
    padding: 10px 10px;
    position: absolute;
    bottom: 6%;
    transition: all 0.2s ease; */
      width: 71%;
      padding: 10px 10px;
      transition: all 0.2s ease;
      margin-left: auto;
  }
  
  .video-controls.hide {
    opacity: 0;
    pointer-events: none;
  }
  .video-progress {
    position: relative;
    height: 1.4px;
    flex-grow: 1;
    left: 0px;
    /* margin-bottom: 10px; */
  }
  progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    width: 99%;
    /* width: 93.5%; */
    height: 1.4px;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
  progress::-webkit-progress-bar {
    background-color: white;
    border-radius: 2px;
  }
  progress::-webkit-progress-value {
    background: var(--youtube-red);
    border-radius: 2px;
  }
  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;
  }
  .seek.slide9 {
    width: 100%;
  }
  
  .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;
    gap: 10px;
  }
  .left-controls {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: #fff;
    flex-grow: 1 !important;
    background: #68236D;
    border-radius: 50px;
    padding: 0 0px 0 7px;
  }
  .volume-controls {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .volume-controls input {
    width: 50px;
    opacity: 1;
    transition: all 0.4s ease;
  }
  .volume-controls:hover input,
  .volume-controls input:focus {
    width: 50px;
    opacity: 1;
  }
  button {
    cursor: pointer;
    position: relative;
    margin-right: 7px;
    font-size: 12px;
    padding: 3px;
    border: none;
    outline: none;
    background-color: transparent;
  }
  button * {
    pointer-events: none;
  }
  button::before {
    content: attr(data-title);
    position: absolute;
    display: none;
    right: 0;
    top: -38px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: bold;
    padding: 4px 6px;
    word-break: keep-all;
    white-space: pre;
  }
  button:hover::before {
    display: inline-block;
  }
  button.no-tooltip:hover::before {
    display: none;
  }
  .fullscreen-button {
    margin-right: 0;
  }
  .pip-button svg {
    width: 26px;
    height: 26px;
  }
  .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;
  }
  input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 8.4px;
    background: transparent;
    cursor: pointer;
    top: -3px;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    cursor: pointer;
    border-radius: 1.3px;
    -webkit-appearance: none;
    transition: all 0.4s ease;
  }
  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;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: transparent;
  }
  input[type=range].volume {
    height: 2px;
    background-color: #68236D;
  }
  input[type=range].volume::-webkit-slider-runnable-track {
    background-color: transparent;
  }
  input[type=range].volume::-webkit-slider-thumb {
    margin-left: 0;
    height: 14px;
    width: 14px;
    background: #68236D;
  }
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 1.3px;
  }
  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;
  }
  input[type=range]:focus::-moz-range-track {
    outline: none;
  }
  input[type=range].volume::-moz-range-thumb {
    border: 1px solid #fff;
    background: #fff;
  }
  .hidden {
    display: none;
  }
  svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    stroke: #68236D;
    cursor: pointer;
  }
  .next-prev-btns {
    background-color: #68236D;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 0 7px;
  }
  .right-controls {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    color: #68236D;
    /* flex-grow: 1!important; */
    /* background: black; */
    border-radius: 50px;
  }
  .white-icon svg {
    fill: white;
    stroke: white;
  }
  .play-button svg {
    width: 25px;
    height: 25px;
    /* top: 2px; */
    position: relative;
  }
  .replay-icon {
    margin-left: 5px;
  }
  .replay-icon svg {
    width: 20px;
    height: 20px;
  }
  .responsive-style {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
  /* @media only screen and (max-width: 1640px) {
    .video-container{
      max-width: 800px;
    }
  } */
  @media only screen and (min-width: 1400px) {
    .responsive-style {
      max-width: 1320px !important;
    }
  }
  @media only screen and (min-width: 1200px) {
    .video-container {
      min-width: 1140px;
      min-height: 627px;
    }
    .responsive-style {
      max-width: 1140px !important;
    }
  }
  @media only screen and (max-width: 1199px) {
    .video-container {
      min-width: 1024px;
      min-height: 568px;
    }
  }
  @media only screen and (max-width: 1024px) {
    .video-container {
      min-width: 1007px;
      min-height: 568px;
      padding: 0;
    }
  }
  @media only screen and (max-width: 991px) {
    .video-container {
      min-width: 974px;
      min-height: 568px;
      padding: 0;
    }
    .why-focus-btn .start-button .start-btn {
      line-height: 15px;
      margin: 0 38px 0 0px;
      font-weight: 600;
      font-size: 14px;
  }
  }
  
  @media only screen and (max-width: 912px) {
    .video-container {
      min-width: 904px;
      min-height: 532px;
      padding: 0;
    }
  
  }
  
  @media only screen and (max-width: 820px) {
    .video-container {
      min-width: 813px;
      min-height: 485px;
      padding: 0;
    }
  
  }
  
  @media only screen and (max-width: 768px) {
    .video-container {
      min-width: 745px;
      min-height: 425px;
      padding: 0;
    }
    .video-controls {
      bottom: 3%;
    }
    .start-button-main {
      bottom: 18%;
  }
    .why-focus-btn .start-button .start-btn {
      margin: 0 25px 0 0px;
      font-size: 12px;
      max-width: 120px;
  }
  .next-prev-btns {
    padding: 4px 10px;
    font-weight: 600;
    font-size: 12px;
    margin: 0 0 0 5px;
  }
  
  .start-btn {
    padding: 2px 10px;
    font-weight: 600;
    font-size: 11px;
  }
  
  }
  
  @media only screen and (max-width: 576px) {
    .video-container {
      min-width: 559px;
      min-height: 293px;
      padding: 0;
    }
    .video-controls {
      /* bottom: 0%; */
      padding: 0px 10px;
    }
    .bottom-controls {
      gap: 5px;
    }
    .bottom-controls .left-controls {
      width: 100%;
    }
  
    .next-prev-btns {
      padding: 2px 7px;
      font-size: 10px;
      margin: 0 0 0 3px;
    }
    .volume-controls {
      display: none;
    }
    .play-button svg {
      width: 15px;
      height: 15px;
    }
    .replay-icon svg {
      width: 15px;
      height: 15px;
    }
    button {
      font-size: 11px;
    }
    .start-button-main {
      bottom: 12%;
  }
  .why-focus-btn .start-button .start-btn {
    margin: 0 15px 0 0px;
  }
  .video-controls-main {
    margin: -8% 5px 0 0;
  }
  }
  
  @media only screen and (max-width: 440px) {
    .modal-para {
      line-height: 14px;
      font-size: 11px;
    }
  .video-container {
      min-width: 423px;
      min-height: 227px;
      padding: 0;
  }
  .why-focus-btn .start-button .start-btn {
    margin: 0 5px 4px 0px;
    font-size: 10px;
    line-height: 12px;
    max-width: initial;
  }
  }
  
  @media only screen and (max-width: 414px) {
  .video-container {
    min-width: 398px;
    min-height: 216px;
    padding: 0;
  }
  }
  @media only screen and (max-width: 393px) {
    .video-container {
      min-width: 376px;
      min-height: 204px;
      padding: 0;
    }
    }
  @media only screen and (max-width: 375px) {
    .video-container {
      min-width: 359px;
      min-height: 196px;
    }
    }
  
    .modal-content button:before {
      display: none;
    }
    @media only screen and (max-width: 360px) {
      .video-container {
        min-width: 344px;
        min-height: 189px;
        padding: 0;
      }
      }