/* =========================================
   FEBSPOT PREROLL
   ========================================= */

.fs-preroll{
  position:absolute;
  inset:0;
  z-index:100;
  width:100%;
  height:100%;
  overflow:hidden;
  background:#000;
}


/* =========================================
   AD VIDEO
   ========================================= */

.fs-preroll__video{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  object-fit:contain;
  object-position:center;
  background:#000;
  border:0;
}


/* =========================================
   CLICK AREA
   ========================================= */

.fs-preroll__click{
  position:absolute;
  inset:0;
  z-index:2;
  display:block;
  background:transparent;
  cursor:pointer;
}


/* =========================================
   SPONSORED
   ========================================= */

.fs-preroll__label{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:4;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:6px 9px;

  color:#fff;
  background:rgba(0,0,0,.72);
  border:1px solid rgba(255,255,255,.15);
  border-radius:5px;

  font-size:12px;
  line-height:1;
  font-weight:600;

  pointer-events:none;
  user-select:none;
}


/* =========================================
   CTA BUTTON
   ========================================= */

.fs-preroll__cta{
  position:absolute;
  left:50%;
  bottom:14px;
  z-index:6;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:40px;
  padding:0 18px;

  transform:translateX(-50%);

  color:#fff;
  background:#168df2;

  border:1px solid rgba(255,255,255,.22);
  border-radius:6px;

  font-size:13px;
  line-height:1;
  font-weight:700;

  text-decoration:none;
  white-space:nowrap;

  cursor:pointer;
  user-select:none;

  -webkit-tap-highlight-color:transparent;

  box-shadow:0 4px 18px rgba(0,0,0,.28);

  transition:
    background .15s ease,
    transform .15s ease;
}

.fs-preroll__cta:hover{
  background:#0f7fdd;
  transform:translateX(-50%) translateY(-1px);
}


/* =========================================
   SKIP BUTTON
   ========================================= */

.fs-preroll__skip{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:7;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:38px;
  padding:0 14px;

  color:#fff;
  background:rgba(0,0,0,.78);

  border:1px solid rgba(255,255,255,.35);
  border-radius:5px;

  font-size:13px;
  line-height:1;
  font-weight:600;

  cursor:pointer;
  user-select:none;

  -webkit-tap-highlight-color:transparent;

  transition:
    background .15s ease,
    border-color .15s ease,
    opacity .15s ease;
}

.fs-preroll__skip:hover:not(:disabled){
  background:rgba(20,20,20,.95);
  border-color:rgba(255,255,255,.65);
}

.fs-preroll__skip:disabled{
  opacity:.75;
  cursor:default;
}


/* =========================================
   MOBILE
   ========================================= */

@media(max-width:640px){

  .fs-preroll__label{
    left:10px;
    bottom:10px;

    padding:6px 8px;

    font-size:11px;
  }


  .fs-preroll__cta{
    bottom:10px;

    min-height:36px;

    max-width:52%;

    padding:0 11px;

    font-size:11px;

    overflow:hidden;
    text-overflow:ellipsis;
  }


  .fs-preroll__skip{
    right:10px;
    bottom:10px;

    min-height:36px;

    padding:0 11px;

    font-size:11px;
  }

}


/* =========================================
   VERY SMALL MOBILE
   ========================================= */

@media(max-width:420px){

  .fs-preroll__label{
    left:8px;
    bottom:8px;

    padding:5px 7px;

    font-size:10px;
  }


  .fs-preroll__cta{
    bottom:8px;

    min-height:34px;

    max-width:50%;

    padding:0 9px;

    font-size:10px;
  }


  .fs-preroll__skip{
    right:8px;
    bottom:8px;

    min-height:34px;

    padding:0 9px;

    font-size:10px;
  }

}