/**
 * Copyright 2016 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#bufferingSpinner {
  margin: auto;
  width: 50%;
  height: 50%;

  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

#controlsContainer {
  width: 100%;
  padding: 0;
  margin-top: -50px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  opacity: 0.9;
  z-index: 1;
  padding-left: 2vw;
  padding-right: 2vw;
  max-height: 100px;
}

#controls {
  width: 100%;
  padding: 1vw 2vw;
  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 5px;

  display: -ms-flexbox;

  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;

  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  margin-left: auto;
  margin-right: auto;
}

/* Show the controls when the mouse is over them.  This overrides the mouse
 * timeout logic in JS that is used to hide the controls when the mouse stops
 * moving over the video container.
 */
#controls:hover {
  opacity: 1;
}

/* NOTE: These fullscreen pseudo-classes can't be combined.  Browsers ignore
 * the rest of the list once they hit one prefix they don't support.
 */
#videoContainer { width: 100%; height: 100%; }
#videoContainer:-webkit-full-screen { width: 100%; height: 100%; }
#videoContainer:-moz-full-screen { width: 100%; height: 100%; }
#videoContainer:-ms-fullscreen { width: 100%; height: 100%; }
#videoContainer:fullscreen { width: 100%; height: 100%; }
#videoContainer:-webkit-full-screen { width: 100%; height: 100%; }
#videoContainer:-moz-full-screen { width: 100%; height: 100%; }
#videoContainer:-ms-fullscreen { width: 100%; height: 100%; }

#controls button {
  color: white;
//  height: 32px;
  width: 32px;
  padding: 0;
  margin: 0 7px 0 0;
  background: transparent;
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
}

#controls button:active {
  background: rgba(100, 100, 100, 0.4);
}

#controls button:disabled {
  color: rgba(255, 255, 255, 0.3);
}

#captionButton {
    margin-top: 8px !important;
}

#controls input[type="range"] {
  cursor: pointer;
}

#castReceiverName {
  display: none;

  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 150%;
  padding: 5px;

  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#giantPlayButtonContainer {
  margin: auto;
  width: 18%;
  height: 32%;

  top: 34%;
  left: 41.5%;
  position: absolute;
}

#giantPlayButton {
  width: 100%;
  height: 100%;
  font-size: 600%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20%;
  color: #fff;
}

#pauseButton, #unmuteButton,
#castButton, #castConnectedButton,
#rewindButton, #fastForwardButton,
#giantPlayButtonContainer, #bufferingSpinner {
  display: none;
}

#bufferingSpinner {
    position: absolute;
    opacity: 0.8;
    /*
    top: 150px;
    left: 300px;
    bottom: auto;
    right: auto;
    */
}

#currentTime {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
      flex-grow: 0;
  margin: 0 4px 0 0;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: white;

  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


/* Always show controls while casting */
#controls.casting {
  opacity: 1;
}

/* Hide fullscreen button while casting */
#controls.casting #fullscreenButton {
  display: none;
}


/* NOTE: pseudo-elements for different browsers can't be combined with commas.
 * Browsers will ignore styles if any pseudo-element in the list is unknown.
 */

/* range inputs, common style */
#seekBar, #volumeBar {
  display: -ms-flexbox;
  display: flex;
  height: 6px;
  margin: 0 12px 0 0;
  padding: 0;

  /* removes webkit default styling */
  -webkit-appearance: none;

  border-radius: 4px;
  background-color: black;
  outline: none;
  width: auto;
}
/* removes mozilla default styling */
#seekBar::-moz-range-track, #volumeBar::-moz-range-track {
  background-color: transparent;
  outline: none;
}
/* removes IE default styling */
#seekBar::-ms-track, #seekBar::-ms-fill-lower, #seekBar::-ms-fill-upper,
#volumeBar::-ms-track, #volumeBar::-ms-fill-lower, #volumeBar::-ms-fill-upper {
  background-color: transparent;
  outline: none;
}

/* per-instance styles */
#seekBar {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

#volumeBar {
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 15px;
  max-width: 70px;
}


/* thumb pseudo-element, common style */
#seekBar::-webkit-slider-thumb, #volumeBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: white;
  outline: none;
}
#seekBar::-moz-range-thumb, #volumeBar::-moz-range-thumb {
  background-color: white;
  outline: none;
}
#seekBar::-ms-thumb, #volumeBar::-ms-thumb {
  background-color: white;
  outline: none;
}

/* thumb pseudo-element, seek style */
#seekBar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
#seekBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
#seekBar::-ms-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

/* thumb pseudo-element, volume style */
#volumeBar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
#volumeBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
#volumeBar::-ms-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

/* turn off tooltips for the seekBar on IE */
#seekBar::-ms-tooltip {
  display: none;
}

/*
The SVG/CSS buffering spinner is based on http://codepen.io/jczimm/pen/vEBpoL
Some local modifications have been made.

Copyright (c) 2016 by jczimm

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

.spinnerSvg {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  margin: auto;
}

.spinnerPath {
  /* Fall back for IE 11, where the stroke properties are not animated,
     but the spinner still rotates. */
  stroke: #fff;
  stroke-dasharray: 20, 200;
  stroke-dashoffset: 0;

  animation:
    dash 1.5s ease-in-out infinite,
    color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}

.controlsContainer {
  width: 100%;
  padding: 0;
  margin-top: -50px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  opacity: 0.9;
  z-index: 1;
  padding-left: 2vw;
  padding-right: 2vw;
  max-height: 100px;
}

.controls {
  width: 100%;
  padding: 1vw 2vw;

  background-color: rgba(20, 20, 20, 0.8);
  border-radius: 5px;

  display: -ms-flexbox;

  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;

  opacity: 0;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
  margin-left: auto;
  margin-right: auto;
}

/* Show the controls when the mouse is over them.  This overrides the mouse
 * timeout logic in JS that is used to hide the controls when the mouse stops
 * moving over the video container.
 */
.controls:hover {
//  opacity: 1;
}

/* NOTE: These fullscreen pseudo-classes can't be combined.  Browsers ignore
 * the rest of the list once they hit one prefix they don't support.
 */
.videoContainer { width: 100%; height: 100%; }
.videoContainer:-webkit-full-screen { width: 100%; height: 100%; }
.videoContainer:-moz-full-screen { width: 100%; height: 100%; }
.videoContainer:-ms-fullscreen { width: 100%; height: 100%; }
.videoContainer:fullscreen { width: 100%; height: 100%; }
.videoContainer:-webkit-full-screen { width: 100%; height: 100%; }
.videoContainer:-moz-full-screen { width: 100%; height: 100%; }
.videoContainer:-ms-fullscreen { width: 100%; height: 100%; }

.controls button {
  color: white;
  height: 32px;
  width: 32px;
  padding: 0;
  margin: 0 16px 0 0;
  background: transparent;
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
}

.controls button:active {
  background: rgba(100, 100, 100, 0.4);
}

.controls button:disabled {
  color: rgba(255, 255, 255, 0.3);
}

.captionButton {
    margin-top: 8px !important;
}

.controls input[type="range"] {
  cursor: pointer;
}

.castReceiverName {
  display: none;

  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 150%;
  padding: 5px;

  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.giantPlayButtonContainer {
  margin: auto;
  width: 18%;
  height: 32%;

  top: 34%;
  left: 41.5%;
  position: absolute;
}

.giantPlayButton {
  width: 100%;
  height: 100%;
  font-size: 600%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20%;
  color: #fff;
}

.pauseButton, .unmuteButton,
.castButton, .castConnectedButton,
.rewindButton, .fastForwardButton,
.giantPlayButtonContainer, .bufferingSpinner,
.airPlayButton{
  display: none;
}

.bufferingSpinner {
  position: absolute;
  opacity: 0.8;
}

.currentTime {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 0;
      flex-grow: 0;
  margin: 0 4px 0 0;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: white;

  cursor: default;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.controls .fullscreenButton {
  margin: 0;
}
.controls .playPauseButton {
  height: 40px;
  width: 40px;
  min-width: 40px;
  border-radius: 50%;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 54%);
}

/* Always show controls while casting */
.controls.casting {
  opacity: 1;
}

/* Hide fullscreen button while casting */
.controls.casting #fullscreenButton {
  display: none;
}


/* NOTE: pseudo-elements for different browsers can't be combined with commas.
 * Browsers will ignore styles if any pseudo-element in the list is unknown.
 */

/* range inputs, common style */
.seekBar, .volumeBar {
  display: -ms-flexbox;
  display: flex;
  height: 6px;
  margin: 0 12px 0 0;
  padding: 0;

  /* removes webkit default styling */
  -webkit-appearance: none;

  border-radius: 4px;
  background-color: black;
  outline: none;
  width: auto;
}
/* removes mozilla default styling */
.seekBar::-moz-range-track, .volumeBar::-moz-range-track {
  background-color: transparent;
  outline: none;
}
/* removes IE default styling */
.seekBar::-ms-track, .seekBar::-ms-fill-lower, .seekBar::-ms-fill-upper,
.volumeBar::-ms-track, .volumeBar::-ms-fill-lower, .volumeBar::-ms-fill-upper {
  background-color: transparent;
  outline: none;
}

/* per-instance styles */
.seekBar {
  -ms-flex-positive: 1;
      flex-grow: 1;
}

.volumeBar {
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 15px;
  max-width: 70px;
}

/* thumb pseudo-element, common style */
.seekBar::-webkit-slider-thumb, .volumeBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: white;
  outline: none;
}
.seekBar::-moz-range-thumb, .volumeBar::-moz-range-thumb {
  background-color: white;
  outline: none;
}

.seekBar::-ms-thumb, .volumeBar::-ms-thumb {
  background-color: white;
  outline: none;
}

/* thumb pseudo-element, seek style */
.seekBar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.seekBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.seekBar::-ms-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

/* thumb pseudo-element, volume style */
.volumeBar::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.volumeBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

.volumeBar::-ms-thumb {
  width: 12px;
  height: 12px;
  border-radius: 12px;
}

/* turn off tooltips for the seekBar on IE */
.seekBar::-ms-tooltip {
  display: none;
}

.controls .seekBarContainer {
  width: 100%;
  min-height: 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}
.controls .controlsButtonsContainer {
  width: 100%;
  margin-top: 10px;
  max-height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.controls .controlsButtonsContainer .leftContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-align: center;
      align-items: center;
}
.controls .controlsButtonsContainer .centerContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.controls .controlsButtonsContainer .rightContainer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
.controls .controlsButtonsContainer .centerContainer span {
  font-size: 1.1vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 50%;
}
.controls .controlsButtonsContainer .centerContainer .controlsTitle {
  font-weight: 600;
}
.controls .controlsButtonsContainer .centerContainer .controlsDetails {
  margin-left: 4px;
  font-weight: 400;
  opacity: 0.86;
}
.controls .controlsButtonsContainer .seekBackButton,
.controls .controlsButtonsContainer .seekForwardButton {
  font-size: 30px;
}

/* Pulse animation */
.pulse {
  position: relative;
  display: block;
  cursor: pointer;
  animation: pulse-size 1.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pulse::before {
  content: '';
  display: inline-block;
  position: absolute;
  box-shadow: 0 0 0 0 rgba(255,255,255, .5);
  left: 50%;
  top: 50%; /* IE 9 */ /* Safari and Chrome */
  transform: translate(-50%,-50%);
  animation: pulse-shadow 1.5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

@keyframes pulse-size {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  70% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}

@keyframes pulse-shadow {
  0% {}
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}/*!
 * angular-confirm v1.1.0 (http://craftpip.github.io/angular-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2016-2017 angular-confirm
 * Licensed under MIT (https://github.com/craftpip/angular-confirm/blob/master/LICENSE)
 */
@keyframes ng-confirm-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body[class*=ng-confirm-no-scroll-] {
  overflow: hidden !important;
}
.ng-confirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}
.ng-confirm .ng-confirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .4s, background .4s;
}
.ng-confirm .ng-confirm-bg.ng-confirm-bg-h {
  opacity: 0 !important;
}
.ng-confirm .ng-confirm-scrollpane {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  perspective: 500px;
  perspective-origin: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ng-confirm .ng-confirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: none;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.ng-confirm .ng-confirm-box.ng-confirm-loading {
  min-height: 120px;
}
.ng-confirm .ng-confirm-box.ng-confirm-loading:before {
  content: '';
  position: absolute;
  left: 0;
  background: white;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1;
}
.ng-confirm .ng-confirm-box.ng-confirm-loading:after {
  opacity: 0.6;
  content: '';
  height: 30px;
  width: 30px;
  border: solid 3px transparent;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  border-radius: 50%;
  animation: ng-confirm-spin 1s infinite linear;
  border-bottom-color: dodgerblue;
  top: 50%;
  margin-top: -15px;
  z-index: 2;
}
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  opacity: .6;
  text-align: center;
  transition: opacity 0.3s ease-in;
  font-size: 27px !important;
  line-height: 14px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon:empty {
  display: none;
}
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon .fa,
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon .glyphicon,
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon .zmdi {
  font-size: 16px;
  line-height: 25px;
  vertical-align: bottom;
}
.ng-confirm .ng-confirm-box div.ng-confirm-closeIcon:hover {
  opacity: 1;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  padding-bottom: 15px;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
  font-size: inherit;
  display: inline-block;
  vertical-align: top;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c i {
  vertical-align: middle;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c:empty {
  display: none;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title {
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: initial;
     -moz-user-select: initial;
      -ms-user-select: initial;
          user-select: initial;
}
.ng-confirm .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title:empty {
  display: none;
}
.ng-confirm .ng-confirm-box div.ng-confirm-content-pane {
  margin-bottom: 15px;
  height: 0px;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ng-confirm .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content {
  width: 100%;
  height: auto;
  -webkit-user-select: initial;
     -moz-user-select: initial;
      -ms-user-select: initial;
          user-select: initial;
}
.ng-confirm .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content img {
  width: 100%;
  height: auto;
}
.ng-confirm .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content:empty {
  display: none;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons {
  padding-bottom: 11px;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons > button {
  margin-bottom: 4px;
  margin-left: 2px;
  margin-right: 2px;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  outline: 0;
  transition: opacity 0.1s ease, background-color 0.1s ease, color 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background-image: none;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-blue {
  background-color: #3498db;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-blue:hover {
  background-color: #2980b9;
  color: #FFF;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-green {
  background-color: #2ecc71;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-green:hover {
  background-color: #27ae60;
  color: #FFF;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-red {
  background-color: #e74c3c;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-red:hover {
  background-color: #c0392b;
  color: #FFF;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-orange {
  background-color: #f1c40f;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-orange:hover {
  background-color: #f39c12;
  color: #FFF;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-default:hover {
  background-color: #bdc3c7;
  color: #000;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-purple {
  background-color: #9b59b6;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-purple:hover {
  background-color: #8e44ad;
  color: #FFF;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-dark {
  background-color: #34495e;
  color: #FFF;
  text-shadow: none;
  transition: background .2s;
}
.ng-confirm .ng-confirm-box .ng-confirm-buttons button.btn-dark:hover {
  background-color: #2c3e50;
  color: #FFF;
}
@keyframes type-blue {
  1%,
  100% {
    border-color: #3498db;
  }
  50% {
    border-color: #5faee3;
  }
}
@keyframes type-green {
  1%,
  100% {
    border-color: #2ecc71;
  }
  50% {
    border-color: #54d98c;
  }
}
@keyframes type-red {
  1%,
  100% {
    border-color: #e74c3c;
  }
  50% {
    border-color: #ed7669;
  }
}
@keyframes type-orange {
  1%,
  100% {
    border-color: #f1c40f;
  }
  50% {
    border-color: #f4d03f;
  }
}
@keyframes type-purple {
  1%,
  100% {
    border-color: #9b59b6;
  }
  50% {
    border-color: #b07cc6;
  }
}
@keyframes type-dark {
  1%,
  100% {
    border-color: #34495e;
  }
  50% {
    border-color: #46627f;
  }
}
.ng-confirm.ng-confirm-type-animated .ng-confirm-box {
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.ng-confirm.ng-confirm-type-blue .ng-confirm-box {
  border-top: solid 7px #3498db;
  animation-name: type-blue;
}
.ng-confirm.ng-confirm-type-green .ng-confirm-box {
  border-top: solid 7px #2ecc71;
  animation-name: type-green;
}
.ng-confirm.ng-confirm-type-red .ng-confirm-box {
  border-top: solid 7px #e74c3c;
  animation-name: type-red;
}
.ng-confirm.ng-confirm-type-orange .ng-confirm-box {
  border-top: solid 7px #f1c40f;
  animation-name: type-orange;
}
.ng-confirm.ng-confirm-type-purple .ng-confirm-box {
  border-top: solid 7px #9b59b6;
  animation-name: type-purple;
}
.ng-confirm.ng-confirm-type-dark .ng-confirm-box {
  border-top: solid 7px #34495e;
  animation-name: type-dark;
}
.ng-confirm .ng-confirm-clear {
  clear: both;
}
.ng-confirm.ng-confirm-rtl {
  direction: rtl;
}
.ng-confirm .ng-confirm-box.ng-confirm-hilight.ng-confirm-hilight-shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}
.ng-confirm .ng-confirm-box.ng-confirm-hilight.ng-confirm-hilight-glow {
  animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-2px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(4px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-8px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(8px, 0, 0);
  }
}
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 3px red;
  }
  50% {
    box-shadow: 0 0 30px red;
  }
}
/*Transition rules*/
.ng-confirm {
  perspective: 400px;
}
.ng-confirm .ng-confirm-box {
  opacity: 1;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-top,
.ng-confirm .ng-confirm-box.ng-confirm-animation-left,
.ng-confirm .ng-confirm-box.ng-confirm-animation-right,
.ng-confirm .ng-confirm-box.ng-confirm-animation-bottom,
.ng-confirm .ng-confirm-box.ng-confirm-animation-opacity,
.ng-confirm .ng-confirm-box.ng-confirm-animation-zoom,
.ng-confirm .ng-confirm-box.ng-confirm-animation-scale,
.ng-confirm .ng-confirm-box.ng-confirm-animation-none,
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotate,
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotatex,
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotatey,
.ng-confirm .ng-confirm-box.ng-confirm-animation-scaley,
.ng-confirm .ng-confirm-box.ng-confirm-animation-scalex {
  opacity: 0;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotate {
  transform: rotate(90deg);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotatex {
  transform: rotateX(90deg);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotatexr {
  transform: rotateX(-90deg);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotatey {
  transform: rotatey(90deg);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-rotateyr {
  transform: rotatey(-90deg);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-scaley {
  transform: scaley(1.5);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-scalex {
  transform: scalex(1.5);
  transform-origin: center;
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-top {
  transform: translate(0px, -100px);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-left {
  transform: translate(-100px, 0px);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-right {
  transform: translate(100px, 0px);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-bottom {
  transform: translate(0px, 100px);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-zoom {
  transform: scale(1.2);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-scale {
  transform: scale(0.5);
}
.ng-confirm .ng-confirm-box.ng-confirm-animation-none {
  visibility: hidden;
}
.ng-confirm.ng-confirm-light .ng-confirm-bg,
.ng-confirm.ng-confirm-white .ng-confirm-bg {
  background-color: #444;
  opacity: .2;
}
.ng-confirm.ng-confirm-light .ng-confirm-icon-c,
.ng-confirm.ng-confirm-white .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-light.ng-confirm-rtl .ng-confirm-closeIcon,
.ng-confirm.ng-confirm-white.ng-confirm-rtl .ng-confirm-closeIcon {
  left: 5px !important;
  right: auto !important;
}
.ng-confirm.ng-confirm-light.ng-confirm-rtl .ng-confirm-icon-c,
.ng-confirm.ng-confirm-white.ng-confirm-rtl .ng-confirm-icon-c {
  margin-right: 0;
  margin-left: 8px;
}
.ng-confirm.ng-confirm-light .ng-confirm-box,
.ng-confirm.ng-confirm-white .ng-confirm-box {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.ng-confirm.ng-confirm-light .ng-confirm-box .ng-confirm-closeIcon,
.ng-confirm.ng-confirm-white .ng-confirm-box .ng-confirm-closeIcon {
  line-height: 20px;
}
.ng-confirm.ng-confirm-light .ng-confirm-box .ng-confirm-buttons,
.ng-confirm.ng-confirm-white .ng-confirm-box .ng-confirm-buttons {
  float: right;
}
.ng-confirm.ng-confirm-light .ng-confirm-box .ng-confirm-buttons button,
.ng-confirm.ng-confirm-white .ng-confirm-box .ng-confirm-buttons button {
  border: none;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  transition: background .1s;
  color: white;
}
.ng-confirm.ng-confirm-light .ng-confirm-box .ng-confirm-buttons button.btn-default,
.ng-confirm.ng-confirm-white .ng-confirm-box .ng-confirm-buttons button.btn-default {
  box-shadow: none;
  color: #333;
}
.ng-confirm.ng-confirm-light .ng-confirm-box .ng-confirm-buttons button.btn-default:hover,
.ng-confirm.ng-confirm-white .ng-confirm-box .ng-confirm-buttons button.btn-default:hover {
  background: #ddd;
}
.ng-confirm.ng-confirm-dark .ng-confirm-bg,
.ng-confirm.ng-confirm-black .ng-confirm-bg {
  background-color: darkslategray;
  opacity: .4;
}
.ng-confirm.ng-confirm-dark .ng-confirm-icon-c,
.ng-confirm.ng-confirm-black .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-dark.ng-confirm-rtl .ng-confirm-closeIcon,
.ng-confirm.ng-confirm-black.ng-confirm-rtl .ng-confirm-closeIcon {
  left: 5px !important;
  right: auto !important;
}
.ng-confirm.ng-confirm-dark.ng-confirm-rtl .ng-confirm-icon-c,
.ng-confirm.ng-confirm-black.ng-confirm-rtl .ng-confirm-icon-c {
  margin-right: 0;
  margin-left: 8px;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box,
.ng-confirm.ng-confirm-black .ng-confirm-box {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #444;
  border-radius: 5px;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-closeIcon,
.ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-closeIcon {
  line-height: 20px;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box.ng-confirm-loading:before,
.ng-confirm.ng-confirm-black .ng-confirm-box.ng-confirm-loading:before {
  background: #444;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box.ng-confirm-loading:after,
.ng-confirm.ng-confirm-black .ng-confirm-box.ng-confirm-loading:after {
  border-bottom-color: deepskyblue;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box *:not(input):not(textarea):not(select):not(option),
.ng-confirm.ng-confirm-black .ng-confirm-box *:not(input):not(textarea):not(select):not(option) {
  color: white;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box input,
.ng-confirm.ng-confirm-black .ng-confirm-box input,
.ng-confirm.ng-confirm-dark .ng-confirm-box textarea,
.ng-confirm.ng-confirm-black .ng-confirm-box textarea,
.ng-confirm.ng-confirm-dark .ng-confirm-box select,
.ng-confirm.ng-confirm-black .ng-confirm-box select,
.ng-confirm.ng-confirm-dark .ng-confirm-box option,
.ng-confirm.ng-confirm-black .ng-confirm-box option {
  color: initial;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-buttons,
.ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-buttons {
  float: right;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-buttons button,
.ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-buttons button {
  border: none;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  transition: background .1s;
  color: white;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-buttons button.btn-default,
.ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-buttons button.btn-default {
  box-shadow: none;
  color: #fff;
  background: none;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-buttons button.btn-default:hover,
.ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-buttons button.btn-default:hover {
  background: #666;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-bg {
  background: #36465D;
  opacity: 0.99;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-blue .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-blue .ng-confirm-bg {
  background: #217dbb;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-green .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-green .ng-confirm-bg {
  background: #25a25a;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-red .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-red .ng-confirm-bg {
  background: #d62c1a;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-orange .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-orange .ng-confirm-bg {
  background: #c29d0b;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-purple .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-purple .ng-confirm-bg {
  background: #804399;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-dark .ng-confirm-box {
  border: none;
}
.ng-confirm.ng-confirm-supervan.ng-confirm-type-dark .ng-confirm-bg {
  background: #222f3d;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box {
  background-color: transparent;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box.ng-confirm-loading:before {
  background: transparent;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box.ng-confirm-loading:after {
  border-bottom-color: transparent;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-closeIcon {
  color: white;
  border-radius: 50px;
  height: 26px;
  width: 26px;
  line-height: 26px;
  top: 2px;
  right: 2px;
  box-shadow: 0 0 0 2px #ddd;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box *:not(input):not(textarea):not(select):not(option) {
  color: white;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box input,
.ng-confirm.ng-confirm-supervan .ng-confirm-box textarea,
.ng-confirm.ng-confirm-supervan .ng-confirm-box select,
.ng-confirm.ng-confirm-supervan .ng-confirm-box option {
  color: initial;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-closeIcon {
  color: white;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-title-c {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  padding-bottom: 25px;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-title-c > * {
  display: block;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
  margin: 0 0 20px;
  font-size: 50px;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-content-pane {
  margin-bottom: 25px;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box div.ng-confirm-content {
  text-align: center;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box .ng-confirm-buttons {
  text-align: center;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box .ng-confirm-buttons button {
  font-size: 16px;
  border-radius: 2px;
  text-shadow: none;
  border: none;
  color: white;
  padding: 10px;
  min-width: 100px;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box .ng-confirm-buttons button.btn-default {
  background: #303f53;
}
.ng-confirm.ng-confirm-supervan .ng-confirm-box .ng-confirm-buttons button.btn-default:hover {
  background: #2f3c50;
  color: white;
}
.ng-confirm.ng-confirm-material .ng-confirm-bg {
  background: dimgray;
  opacity: .6;
}
.ng-confirm.ng-confirm-material .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-material .ng-confirm-box {
  background-color: white;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px;
}
.ng-confirm.ng-confirm-material .ng-confirm-box div.ng-confirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  line-height: 20px;
  top: 15px;
  right: 15px;
}
.ng-confirm.ng-confirm-material .ng-confirm-box div.ng-confirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
}
.ng-confirm.ng-confirm-material .ng-confirm-box div.ng-confirm-content {
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
}
.ng-confirm.ng-confirm-material .ng-confirm-box .ng-confirm-buttons {
  text-align: right;
}
.ng-confirm.ng-confirm-material .ng-confirm-box .ng-confirm-buttons button {
  text-transform: uppercase;
  font-weight: 500;
}
.ng-confirm.ng-confirm-material.ng-confirm-rtl .ng-confirm-closeIcon {
  left: 15px !important;
  right: auto !important;
}
.ng-confirm.ng-confirm-material.ng-confirm-rtl .ng-confirm-icon-c {
  margin-right: 0;
  margin-left: 8px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-bg {
  background-color: rgba(0, 0, 0, 0.21);
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box {
  background-color: white;
  box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0;
  border-radius: 6px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box div.ng-confirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  line-height: 20px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box div.ng-confirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box div.ng-confirm-content {
  text-align: left;
  color: rgba(0, 0, 0, 0.87);
  padding: 0px 15px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box .ng-confirm-buttons {
  text-align: right;
  padding: 15px;
  margin: -5px 0 0px;
  border-top: solid 1px #ddd;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box .ng-confirm-buttons button {
  font-weight: 500;
  border-radius: 0px;
  margin: 0;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box .ng-confirm-buttons button:first-child {
  border-radius: 4px 0 0 4px;
}
.ng-confirm.ng-confirm-bootstrap .ng-confirm-box .ng-confirm-buttons button:last-child {
  border-radius: 0 4px 4px 0;
}
.ng-confirm.ng-confirm-bootstrap.ng-confirm-rtl .ng-confirm-closeIcon {
  left: 5px !important;
  right: auto !important;
}
.ng-confirm.ng-confirm-bootstrap.ng-confirm-rtl .ng-confirm-icon-c {
  margin-right: 0;
  margin-left: 8px;
}
.ng-confirm.ng-confirm-modern .ng-confirm-bg {
  background-color: slategray;
  opacity: .6;
}
.ng-confirm.ng-confirm-modern .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box {
  background-color: white;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 25px 25px 10px 25px;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box div.ng-confirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 50px;
  height: 25px;
  width: 25px;
  line-height: 25px !important;
  top: 10px;
  right: 10px;
  box-shadow: 0 0 0 2px #ddd;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box div.ng-confirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
  display: block;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 10px;
  font-size: 69px;
  color: #aaa;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box div.ng-confirm-content {
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box .ng-confirm-buttons {
  text-align: center;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box .ng-confirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  transition: background .1s;
}
.ng-confirm.ng-confirm-modern .ng-confirm-box .ng-confirm-buttons button + button {
  margin-left: 4px;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-bg {
  background-color: rgba(255, 255, 255, 0.5);
}
.ng-confirm.ng-confirm-seamless .ng-confirm-bg:before {
  border-bottom-color: dodgerblue;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-icon-c {
  margin-right: 8px;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box {
  background-color: white;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 20px 0 10px 0;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box div.ng-confirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  border-radius: 50px;
  height: 25px;
  width: 25px;
  line-height: 25px !important;
  top: 10px;
  right: 10px;
  box-shadow: 0 0 0 2px #ddd;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box div.ng-confirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  text-align: center;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
  color: #aaa;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title {
  font-weight: bold;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box div.ng-confirm-content {
  text-align: center;
  font-size: 15px;
  color: #464646;
  margin-bottom: 25px;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box .ng-confirm-buttons {
  text-align: center;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box .ng-confirm-buttons button {
  font-size: 16px;
  font-weight: bold;
}
.ng-confirm.ng-confirm-seamless .ng-confirm-box .ng-confirm-buttons button + button {
  margin-left: 4px;
}
.ng-confirm-el-hide {
  display: none !important;
}

.ng-confirm.ng-confirm-abscbn,
.ng-confirm.ng-confirm-abscbn h5,
.ng-confirm.ng-confirm-abscbn span {
  color: #f8f8f8;
  text-shadow: none;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-bg {}

.ng-confirm.ng-confirm-abscbn h1 {
  margin-bottom: 40px;
}

.ng-confirm.ng-confirm-abscbn h1,
.ng-confirm.ng-confirm-abscbn h3 {
  width: 100%;
  text-align: center;
}
.ng-confirm.ng-confirm-abscbn a {
  font-weight: bold;
  color: #1269b5;
}
.ng-confirm.ng-confirm-abscbn a.helper-link {
  display: block;
}
.ng-confirm.ng-confirm-abscbn input {
  border-radius: 0;
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #7a7a7a;
  padding: 0;
  color: #ffffff;
  outline: none!important;
  box-shadow: none!important;
}
.ng-confirm.ng-confirm-abscbn input:focus {
  border-bottom: 2px solid #ffffff;
}
.ng-confirm.ng-confirm-abscbn button.primary {
  color: #ffffff;
  background-color: #283083;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  border: 0;
  line-height: 1;
}
.ng-confirm.ng-confirm-abscbn button.primary:disabled {
  opacity: .5;
}
.ng-confirm.ng-confirm-abscbn button.primary img {
  width: 20px!important;
}
.ng-confirm.ng-confirm-abscbn button.primary span {
  vertical-align: middle;
}
.ng-confirm.ng-confirm-abscbn .error {
  font-size: 14px;
  color: #f00 !important;
  font-weight: bold;
  position: unset;
  right: unset;
  bottom: unset;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-bg.ng-confirm-bg-h {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-scrollpane {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box {
  background-color: #121921;
}
.ng-confirm.ng-confirm-abscbn .form-group,
.ng-confirm.ng-confirm-abscbn-notify .form-group {
  margin-bottom: 20px;
}
.ng-confirm.ng-confirm-abscbn .form-group:last-child,
.ng-confirm.ng-confirm-abscbn-notify .form-group:last-child {
  margin-bottom: 0;
}
.ng-confirm.ng-confirm-abscbn .form-group.password-field,
.ng-confirm.ng-confirm-abscbn-notify .form-group.password-field {
  position: relative;
}
.ng-confirm.ng-confirm-abscbn .form-group.password-field input,
.ng-confirm.ng-confirm-abscbn-notify .form-group.password-field input {
  padding-right: 32px;
}
.ng-confirm.ng-confirm-abscbn .form-group.password-field .display-toggle,
.ng-confirm.ng-confirm-abscbn-notify .form-group.password-field .display-toggle {
  position: absolute;
  right: 6px;
  top: 0;
  font-size: 20px;
  cursor: pointer;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box.ng-confirm-loading {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box.ng-confirm-loading:before {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box.ng-confirm-loading:after {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box div.ng-confirm-closeIcon {
  top: 10px;
  color: #ffffff;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon:empty {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon .fa,
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon .glyphicon,
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon .zmdi {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-closeIcon:hover,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box div.ng-confirm-closeIcon:hover {
  color: #c0c5cd;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box div.ng-confirm-title-c {
  display: none;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c i {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c:empty {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title:empty {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-content-pane {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content img {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content:empty {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box .ng-confirm-buttons,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box .ng-confirm-buttons {
  display: none;
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box .ng-confirm-buttons button {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-clear {
}
.ng-confirm.ng-confirm-abscbn.ng-confirm-rtl {
}
.ng-confirm.ng-confirm-abscbn.ng-confirm-rtl .ng-confirm-closeIcon {
}
.ng-confirm.ng-confirm-abscbn .ng-confirm-box div.ng-confirm-content-pane,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box div.ng-confirm-content-pane {
  height: auto!important;
  margin-bottom: 10px;
}

.ng-confirm.ng-confirm-abscbn .ng-confirm-closeIcon,
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-closeIcon {
  z-index: 1000!important;
}

.ng-confirm.ng-confirm-abscbn-notify button {
  color: #111;
  border: none;
  padding: 5px 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ng-confirm.ng-confirm-abscbn-notify button:last-child {
  margin-bottom: 0;
}

.ng-confirm.ng-confirm-abscbn-notify a.btn {
  width: 100%;
  color: #111;
  border: none;
  padding: 5px 10px;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
  border-radius: 0;
}
.ng-confirm.ng-confirm-abscbn-notify button.default,
.ng-confirm.ng-confirm-abscbn-notify a.btn.default {
  background-color: #283083;
  color: #fff;
}
.ng-confirm.ng-confirm-abscbn-notify .ng-confirm-scrollpane {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.ng-confirm.ng-confirm-abscbn-notify .ng-bs3-container {
  margin: 0 auto;
}


@media screen and (max-width: 450px) {
  .ng-confirm.ng-confirm-abscbn .ng-confirm-box,
  .ng-confirm.ng-confirm-abscbn-notify .ng-confirm-box {
    margin-top: 10px!important;
    margin-bottom: 10px!important;
  }
  .ng-confirm.ng-confirm-abscbn h1,
  .ng-confirm.ng-confirm-abscbn-notify h1 {
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .ng-confirm.ng-confirm-abscbn .form-group__divider,
  .ng-confirm.ng-confirm-abscbn-notify .form-group__divider {
    padding: 15px 0;
  }
  .ng-confirm.ng-confirm-abscbn .form-group__divider > span,
  .ng-confirm.ng-confirm-abscbn-notify .form-group__divider > span {
    top: 4px;
  }
}

.ng-confirm.ng-confirm-loader .ng-confirm-box {
  background-color: #121921;
}
.ng-confirm.ng-confirm-loader .ng-confirm-box .ng-confirm-title-c {
  text-transform: none;
}
.ng-confirm.ng-confirm-loader .ng-confirm-box .modal-loader {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.ng-confirm.ng-confirm-loader .ng-confirm-box .modal-loader img {
  width: auto!important;
  max-height: 10vh;
}

.ng-confirm.ng-confirm-loader .ng-confirm-box div.ng-confirm-content-pane {
  min-height: 10vh;
}
/* Disabled purchase modal */
.ng-confirm.ng-confirm-purchase-info .ng-confirm-box .disabled-purchase-modal--actions {
  margin-top: 10px;
}.progress-circle {
   font-size: 20px;
   position: relative; /* so that children can be absolutely positioned */
   padding: 0;
   width: 5em;
   height: 5em;
   background-color: #777;
   border-radius: 50%;
   line-height: 5em;
   opacity: .8;
   box-shadow: 2px 2px 5px #111;
}

.progress-circle:after{
    border: none;
    position: absolute;
    top: 0.35em;
    left: 0.35em;
    text-align: center;
    display: block;
    border-radius: 50%;
    width: 4.3em;
    height: 4.3em;
    background-color: #222;
    content: " ";
}
/* Text inside the control */
.progress-circle span {
    position: absolute;
    line-height: 5em;
    width: 5em;
    text-align: center;
    display: block;
    color: #ddd;
    z-index: 2;
}
.left-half-clipper {
   /* a round circle */
   border-radius: 50%;
   width: 5em;
   height: 5em;
   position: absolute; /* needed for clipping */
   clip: rect(0, 5em, 5em, 2.5em); /* clips the whole left half*/
}
/* when p>50, don't clip left half*/
.progress-circle.over50 .left-half-clipper {
   clip: rect(auto,auto,auto,auto);
}
.value-bar {
   /*This is an overlayed square, that is made round with the border radius,
   then it is cut to display only the left half, then rotated clockwise
   to escape the outer clipping path.*/
   position: absolute; /*needed for clipping*/
   clip: rect(0, 2.5em, 5em, 0);
   width: 5em;
   height: 5em;
   border-radius: 50%;
   border: 0.45em solid #ddd; /*The border is 0.35 but making it larger removes visual artifacts */
   /*background-color: #4D642D;*/ /* for debug */
   box-sizing: border-box;
}
/* Progress bar filling the whole right half for values above 50% */
.progress-circle.over50 .first50-bar {
   /*Progress bar for the first 50%, filling the whole right half*/
   position: absolute; /*needed for clipping*/
   clip: rect(0, 5em, 5em, 2.5em);
   background-color: #ddd;
   border-radius: 50%;
   width: 5em;
   height: 5em;
}
.progress-circle:not(.over50) .first50-bar{ display: none; }


/* Progress bar rotation position */
.progress-circle.p0 .value-bar { display: none; }
.progress-circle.p1 .value-bar { transform: rotate(4deg); }
.progress-circle.p2 .value-bar { transform: rotate(7deg); }
.progress-circle.p3 .value-bar { transform: rotate(11deg); }
.progress-circle.p4 .value-bar { transform: rotate(14deg); }
.progress-circle.p5 .value-bar { transform: rotate(18deg); }
.progress-circle.p6 .value-bar { transform: rotate(22deg); }
.progress-circle.p7 .value-bar { transform: rotate(25deg); }
.progress-circle.p8 .value-bar { transform: rotate(29deg); }
.progress-circle.p9 .value-bar { transform: rotate(32deg); }
.progress-circle.p10 .value-bar { transform: rotate(36deg); }
.progress-circle.p11 .value-bar { transform: rotate(40deg); }
.progress-circle.p12 .value-bar { transform: rotate(43deg); }
.progress-circle.p13 .value-bar { transform: rotate(47deg); }
.progress-circle.p14 .value-bar { transform: rotate(50deg); }
.progress-circle.p15 .value-bar { transform: rotate(54deg); }
.progress-circle.p16 .value-bar { transform: rotate(58deg); }
.progress-circle.p17 .value-bar { transform: rotate(61deg); }
.progress-circle.p18 .value-bar { transform: rotate(65deg); }
.progress-circle.p19 .value-bar { transform: rotate(68deg); }
.progress-circle.p20 .value-bar { transform: rotate(72deg); }
.progress-circle.p21 .value-bar { transform: rotate(76deg); }
.progress-circle.p22 .value-bar { transform: rotate(79deg); }
.progress-circle.p23 .value-bar { transform: rotate(83deg); }
.progress-circle.p24 .value-bar { transform: rotate(86deg); }
.progress-circle.p25 .value-bar { transform: rotate(90deg); }
.progress-circle.p26 .value-bar { transform: rotate(94deg); }
.progress-circle.p27 .value-bar { transform: rotate(97deg); }
.progress-circle.p28 .value-bar { transform: rotate(101deg); }
.progress-circle.p29 .value-bar { transform: rotate(104deg); }
.progress-circle.p30 .value-bar { transform: rotate(108deg); }
.progress-circle.p31 .value-bar { transform: rotate(112deg); }
.progress-circle.p32 .value-bar { transform: rotate(115deg); }
.progress-circle.p33 .value-bar { transform: rotate(119deg); }
.progress-circle.p34 .value-bar { transform: rotate(122deg); }
.progress-circle.p35 .value-bar { transform: rotate(126deg); }
.progress-circle.p36 .value-bar { transform: rotate(130deg); }
.progress-circle.p37 .value-bar { transform: rotate(133deg); }
.progress-circle.p38 .value-bar { transform: rotate(137deg); }
.progress-circle.p39 .value-bar { transform: rotate(140deg); }
.progress-circle.p40 .value-bar { transform: rotate(144deg); }
.progress-circle.p41 .value-bar { transform: rotate(148deg); }
.progress-circle.p42 .value-bar { transform: rotate(151deg); }
.progress-circle.p43 .value-bar { transform: rotate(155deg); }
.progress-circle.p44 .value-bar { transform: rotate(158deg); }
.progress-circle.p45 .value-bar { transform: rotate(162deg); }
.progress-circle.p46 .value-bar { transform: rotate(166deg); }
.progress-circle.p47 .value-bar { transform: rotate(169deg); }
.progress-circle.p48 .value-bar { transform: rotate(173deg); }
.progress-circle.p49 .value-bar { transform: rotate(176deg); }
.progress-circle.p50 .value-bar { transform: rotate(180deg); }
.progress-circle.p51 .value-bar { transform: rotate(184deg); }
.progress-circle.p52 .value-bar { transform: rotate(187deg); }
.progress-circle.p53 .value-bar { transform: rotate(191deg); }
.progress-circle.p54 .value-bar { transform: rotate(194deg); }
.progress-circle.p55 .value-bar { transform: rotate(198deg); }
.progress-circle.p56 .value-bar { transform: rotate(202deg); }
.progress-circle.p57 .value-bar { transform: rotate(205deg); }
.progress-circle.p58 .value-bar { transform: rotate(209deg); }
.progress-circle.p59 .value-bar { transform: rotate(212deg); }
.progress-circle.p60 .value-bar { transform: rotate(216deg); }
.progress-circle.p61 .value-bar { transform: rotate(220deg); }
.progress-circle.p62 .value-bar { transform: rotate(223deg); }
.progress-circle.p63 .value-bar { transform: rotate(227deg); }
.progress-circle.p64 .value-bar { transform: rotate(230deg); }
.progress-circle.p65 .value-bar { transform: rotate(234deg); }
.progress-circle.p66 .value-bar { transform: rotate(238deg); }
.progress-circle.p67 .value-bar { transform: rotate(241deg); }
.progress-circle.p68 .value-bar { transform: rotate(245deg); }
.progress-circle.p69 .value-bar { transform: rotate(248deg); }
.progress-circle.p70 .value-bar { transform: rotate(252deg); }
.progress-circle.p71 .value-bar { transform: rotate(256deg); }
.progress-circle.p72 .value-bar { transform: rotate(259deg); }
.progress-circle.p73 .value-bar { transform: rotate(263deg); }
.progress-circle.p74 .value-bar { transform: rotate(266deg); }
.progress-circle.p75 .value-bar { transform: rotate(270deg); }
.progress-circle.p76 .value-bar { transform: rotate(274deg); }
.progress-circle.p77 .value-bar { transform: rotate(277deg); }
.progress-circle.p78 .value-bar { transform: rotate(281deg); }
.progress-circle.p79 .value-bar { transform: rotate(284deg); }
.progress-circle.p80 .value-bar { transform: rotate(288deg); }
.progress-circle.p81 .value-bar { transform: rotate(292deg); }
.progress-circle.p82 .value-bar { transform: rotate(295deg); }
.progress-circle.p83 .value-bar { transform: rotate(299deg); }
.progress-circle.p84 .value-bar { transform: rotate(302deg); }
.progress-circle.p85 .value-bar { transform: rotate(306deg); }
.progress-circle.p86 .value-bar { transform: rotate(310deg); }
.progress-circle.p87 .value-bar { transform: rotate(313deg); }
.progress-circle.p88 .value-bar { transform: rotate(317deg); }
.progress-circle.p89 .value-bar { transform: rotate(320deg); }
.progress-circle.p90 .value-bar { transform: rotate(324deg); }
.progress-circle.p91 .value-bar { transform: rotate(328deg); }
.progress-circle.p92 .value-bar { transform: rotate(331deg); }
.progress-circle.p93 .value-bar { transform: rotate(335deg); }
.progress-circle.p94 .value-bar { transform: rotate(338deg); }
.progress-circle.p95 .value-bar { transform: rotate(342deg); }
.progress-circle.p96 .value-bar { transform: rotate(346deg); }
.progress-circle.p97 .value-bar { transform: rotate(349deg); }
.progress-circle.p98 .value-bar { transform: rotate(353deg); }
.progress-circle.p99 .value-bar { transform: rotate(356deg); }
.progress-circle.p100 .value-bar { transform: rotate(360deg); }
/*
 *  growl-container styles
 */
.growl-container.growl-fixed {
  position: fixed;
  float: right;
  width: 90%;
  max-width: 400px;
  z-index: 9999;
}
.growl-container.growl-fixed.top-right {
  top: 10px;
  right: 15px;
}
.growl-container.growl-fixed.bottom-right {
  bottom: 10px;
  right: 15px;
}
.growl-container.growl-fixed.middle-right {
  top: 49%;
  right: 15px;
}
.growl-container.growl-fixed.top-left {
  top: 10px;
  left: 15px;
}
.growl-container.growl-fixed.bottom-left {
  bottom: 10px;
  left: 15px;
}
.growl-container.growl-fixed.middle-left {
  top: 49%;
  left: 15px;
}
.growl-container.growl-fixed.top-center {
  top: 10px;
  left: 50%;
  margin-left: -200px;
}
.growl-container.growl-fixed.bottom-center {
  bottom: 10px;
  left: 50%;
  margin-left: -200px;
}
.growl-container.growl-fixed.middle-center {
  top: 49%;
  left: 50%;
  margin-left: -200px;
}

/*
 * growl-item styles
 */
.growl-container > .growl-item {
  padding: 10px;
  padding-right: 35px;
  margin-bottom: 10px;
  cursor: pointer;
}

.growl-container > button {
  border: none;
  outline:none;
}
.growl-container > .growl-item.ng-enter,
.growl-container > .growl-item.ng-leave {
  transition:0.5s linear all;
}

.growl-container > .growl-item.ng-enter,
.growl-container > .growl-item.ng-leave.ng-leave-active {
  opacity:0;
}
.growl-container > .growl-item.ng-leave,
.growl-container > .growl-item.ng-enter.ng-enter-active {
  opacity:1;
}

.growl-container > div.growl-item {
  background-position: 12px center;
  background-repeat: no-repeat;
}

/*
 * growl-title styles
 */
.growl-title {
  font-size: 16px;
}
.growl-item.icon > .growl-title {
  margin: 0 0 0 40px;
}

/*
 * growl-message styles
 */
.growl-item.icon > .growl-message {
  margin: 0 0 0 40px;
}

/*
 * growl background images
 */
.growl-container > .alert-info.icon {
  /* for the white images
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=");
  */
  background-image: url("data:image/png;base64,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");
}
.growl-container > .alert-error.icon {
  /* for the white images
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=");
  */
  background-image: url("data:image/png;base64,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");
}
.growl-container > .alert-success.icon {
  /* for the white images
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==");
  */
  background-image: url("data:image/png;base64,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");
}
.growl-container > .alert-warning.icon {
  /* for the white images
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=");
  */
  background-image: url("data:image/png;base64,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");
}
.card-js input.card-number{padding-right:48px}.card-js .card-number-wrapper .card-type-icon{height:23px;width:32px;position:absolute;display:block;right:8px;top:7px;background:url(https://cardjs.co.uk/img/cards.png) 0 23px no-repeat;pointer-events:none;opacity:0;transition:opacity .15s linear}.card-js .card-number-wrapper .show{opacity:1}.card-js .card-number-wrapper .card-type-icon.visa{background-position:0 0}.card-js .card-number-wrapper .card-type-icon.master-card{background-position:-32px 0}.card-js .card-number-wrapper .card-type-icon.american-express{background-position:-64px 0}.card-js .card-number-wrapper .card-type-icon.discover{background-position:-96px 0}.card-js .card-number-wrapper .card-type-icon.diners{background-position:-128px 0}.card-js .card-number-wrapper .card-type-icon.jcb{background-position:-160px 0}.card-js .cvc-container{width:50%;float:right}.card-js .cvc-wrapper{box-sizing:border-box;margin-left:5px}.card-js .cvc-wrapper .cvc{display:block;width:100%}.card-js .expiry-container{width:50%;float:left}.card-js .expiry-wrapper{box-sizing:border-box;margin-right:5px}.card-js .expiry-wrapper .expiry{display:block;width:100%}.card-js .expiry-wrapper .expiry-month{border-top-right-radius:0;border-bottom-right-radius:0;padding-left:30px}.card-js .expiry-wrapper .expiry-year{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0}.card-js .expiry-wrapper .expiry-month,.card-js .expiry-wrapper .expiry-year{display:inline-block}.card-js .expiry-wrapper .expiry{padding-left:38px}.card-js .icon{position:absolute;display:block;width:24px;height:17px;left:8px;top:10px;pointer-events:none}.card-js .icon.right{right:8px;left:auto}.card-js .icon.popup{cursor:pointer;pointer-events:auto}.card-js .icon .svg{fill:#888}.card-js .icon.popup .svg{fill:#aaa!important}.card-js .card-number-wrapper,.card-js .name-wrapper{margin-bottom:15px;width:100%}.card-js .card-number-wrapper,.card-js .cvc-wrapper,.card-js .expiry-wrapper,.card-js .name-wrapper{-ms-box-shadow:0 1px 0 rgba(255,255,255,.7),inset 0 1px 0 rgba(255,255,255,.7);-o-box-shadow:0 1px 0 rgba(255,255,255,.7),inset 0 1px 0 rgba(255,255,255,.7);box-shadow:0 1px 0 rgba(255,255,255,.7),inset 0 1px 0 rgba(255,255,255,.7);position:relative}.card-js .card-number-wrapper,.card-js .cvc-container,.card-js .expiry-container,.card-js .name-wrapper{display:inline-block}.card-js::after{content:' ';display:table;clear:both}.card-js input,.card-js select{color:#676767;font-size:15px;font-weight:300;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;height:36px;border:1px solid #d9d9d9;border-radius:4px;box-shadow:none;background-color:#FDFDFD;box-sizing:border-box;padding:0;transition:border-color .15s linear,box-shadow .15s linear}.card-js select{-moz-appearance:none;text-indent:.01px;text-overflow:''}.card-js input[disabled],.card-js select[disabled]{background-color:#eee;color:#555}.card-js select option[hidden]{color:#ABA9A9}.card-js input:focus,.card-js select:focus{background-color:#fff;outline:0;border-color:#66afe9;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.card-js input[readonly=readonly]:not([disabled]),.card-js input[readonly]:not([disabled]){background-color:#fff;cursor:pointer}.card-js .has-error input,.card-js .has-error input:focus{border-color:#F64B2F;box-shadow:none}.card-js input.card-number,.card-js input.cvc,.card-js input.name{padding-left:38px;width:100%}.card-js.stripe .icon .svg{fill:#559A28}/**
 * selectize.default.css (v0.8.5) - Default Theme
 * Copyright (c) 2013 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */

.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  visibility: visible !important;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  background: #f8f8f8;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  top: 50%;
  right: 8px;
  margin-top: -12px;
  font-size: 20px !important;
  line-height: 20px;
  color: #303030;
  opacity: 0.4;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  float: left;
  border-top: 0 none;
  border-right: 1px solid #f2f2f2;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 17px;
  padding: 2px 0 0 0;
  font-size: 12px;
  font-weight: bold;
  color: inherit;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border-left: 1px solid #0073bb;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaaaaa;
}

.selectize-control {
  position: relative;
  color: #bbb;
  background: rgba(33, 33, 33, .95);
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  font-family: inherit;
  font-size: 13px;
  -webkit-font-smoothing: inherit;
  line-height: 18px;
/*  color: #303030; */
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  display: inline-block;
  cursor: text;
/*  background: #ffffff; */
}

.selectize-input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  padding: 8px 8px;
  overflow: hidden;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}

.selectize-input.full {
  /* background-color: #ffffff; */
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  display: -moz-inline-stack;
  display: inline-block;
  *display: inline;
  vertical-align: baseline;
  zoom: 1;
}

.selectize-control.multi .selectize-input > div {
  padding: 2px 6px;
  margin: 0 3px 3px 0;
  color: #ffffff;
  cursor: pointer;
  background: #1da7ee;
  border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
  color: #ffffff;
  background: #92c836;
  border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}

.selectize-input > input {
  max-width: 100% !important;
  max-height: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 1px !important;
  line-height: inherit !important;
  text-indent: 0 !important;
  background: none !important;
  border: 0 none !important;
  box-shadow: none !important;
  -webkit-user-select: auto !important;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  display: block;
  clear: left;
  content: ' ';
}

.selectize-input.dropdown-active::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 1px;
  background: #f0f0f0;
  content: ' ';
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  margin: -1px 0 0 0;
/*  background: #ffffff; */
  background: rgba(33, 33, 33, .9);
  border: 1px solid #d0d0d0;
  border-top: 0 none;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.selectize-dropdown [data-selectable] {
  overflow: hidden;
  cursor: pointer;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
/*  color: #303030; */
  cursor: default;
  background: #ffffff;
}

.selectize-dropdown .active {
  color: #eee;
  background-color: rgba(77, 77, 77);
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-color: #808080 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  content: ' ';
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-color: transparent transparent #808080 transparent;
  border-width: 0 5px 5px 5px;
}

.selectize-control.rtl.single .selectize-input:after {
  right: auto;
  left: 15px;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  background-color: #fafafa;
  opacity: 0.5;
}

.selectize-control.multi .selectize-input.has-items {
  padding-right: 5px;
  padding-left: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  box-shadow: none;
}

.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: none;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  background-color: #1b9dec;
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
}

.selectize-control.single .selectize-input {
/*  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
*/
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #333;
}

.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-size: 0.85em;
  font-weight: bold;
}

.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.3 - 2016-08-17T06:16:42.140Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}


.ui-select-choices-row:hover {
  color: #eee;
  background-color: #4d4d4d;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}
@font-face {
    font-family: "bahijnazanin";
    src: url("//flixforge.b-cdn.net/common/fonts/BahijNazanin/BahijNazanin.woff") format('woff');
    unicode-range: U+0600-06FF;
}
@font-face {
    font-family: "bahijnazanin";
    src: url("//flixforge.b-cdn.net/common/fonts/BahijNazanin/BahijNazanin-Bold.woff") format('woff');
    font-weight: bold;
    unicode-range: U+0600-06FF;
}

html {
  min-height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #eee;
  overflow-x: hidden;
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
}

body.body-scroll-disabled {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body.body-scroll-disabled-ios {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
}

#txt {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  overflow: hidden;
  z-index: -10000;
}


:focus {
  outline: none !important;
}

app {
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.body-scroll-disabled-ios app {
  overflow: visible;
}

main {
  overflow: visible;
  -ms-flex: 1;
      flex: 1;
}

a, a:hover, a:focus {
  color: #eee;
  cursor: pointer;
}

pre {
  color: #333 !important;
}

h2 {
  margin-top: 20px;
  font-size: 1.5vw;
  font-weight: bold;
  position: relative;
  text-shadow: 2px 2px 5px #111;
  display: inline-block;
}

.carousel-title {
  margin-top: 20px;
  font-size: 1.5vw;
  font-weight: bold;
  position: relative;
  text-shadow: 2px 2px 5px #111;
  display: inline-block;
  width: 100%;
}

h5 {
  margin-bottom: 0px;
}

input.field.left {
  background-color: #ccc;
}

input.field.left:focus {
  border-color: rgba(0, 0, 0, 0);
}

.noClick {
  cursor: default;
}

.clear {
  clear: both;
}

.faded {
  opacity: .3;
}

.editing h2 {
  cursor: pointer;
  z-index: 1000;
  min-width: 4vw;
  min-height: 1vw;
}

.editing h2:hover::after {
  content: '';
  width: calc(100% + 2vw);
  height: calc(100% + 2vw);
  border-color: #5af;
  border-style: solid;
  opacity: 0.4;
  position: absolute;
  top: -1vw;
  left: -1vw;
}

nav {
  margin: 15px;
}

footer {
  text-align: center;
  font-size: 0.8em;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

footer a {
  margin-left: 3px;
  margin-right: 3px;
  opacity: .7;
  transition: opacity .3s ease;
}

footer span {
  opacity: .7
}

footer a:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

footer .social {
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

footer .social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 6px;
  font-size: 15px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

footer .watchon {
  margin-bottom: 20px;
}
footer .watchon a {
  border-style: solid;
  border-width: 1px;
  padding: 3px;
  border-radius: 6px;
}

editor {
  z-index: 6000;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}

editor video {
  display: none;
}

editor #edit-btn {
  position: absolute;
  top: 45px;
  right: 110px;
  width: 64px;
  height: 64px;
  border: 0px;
  border-radius: 32px;
  background-color: #fdbc1b;
  color: #eee;
  box-shadow: 2px 2px 5px #111;
  font-size: 28px;
}
editor[dir='rtl'] #edit-btn {
  right: auto;
  left: 110px;
  z-index: 100;
}

editor #edit-btn:hover {
  background-color: #fc1;
}

editor #edit-btn:active {
  top: 46px;
  right: 109px;
  background-color: #fc1;
  color: #eee;
  box-shadow: 2px 2px 1px #111;
}
editor[dir='rtl'] #edit-btn:active {
  right: auto;
  left: 110px;
  z-index: 100;
}

editor #processing {
  position: absolute;
  top: 0px;
  right: 170px;
  width: 64px;
  height: 64px;
  border: 0px;
  border-radius: 32px;
  background-color: rgba(64, 64, 64, 0.6);
  padding: 8px;
  box-shadow: 2px 2px 5px #111;
}

editor #publish-btn {
  position: absolute;
  top: 45px;
  right: 195px;
  width: 64px;
  height: 64px;
  border: 0px;
  border-radius: 32px;
  background-color: #018786;
  color: #eee;
  box-shadow: 2px 2px 5px #111;
  font-size: 28px;
}
editor[dir='rtl'] #publish-btn {
  right: auto;
  left: 195px;
  z-index: 100;
}


editor #publish-btn.highlight {
  border: 2px;
  border-style: solid;
  border-color: #f1f7f6;
}

editor #publish-btn:hover {
  background-color: #119796;
}

editor #publish-btn:active {
  top: 46px;
  right: 194px;
  background-color: #119796;
  box-shadow: 2px 2px 1px #111;
}
editor[dir='rtl'] #publish-btn:active {
  right: auto;
  left: 195px;
}


editor #admin_menu {
  position: absolute;
  top: 45px;
  right: 25px;
}

[dir='rtl'] .admin-menu-rtl {
  right: auto;
  left: 25px;
  text-align: left;
}

editor #admin_menu .dropdown-menu {
  top: calc(100% + 10px);
  left: -95px;
  width: 95px;
  background-color: rgba(32, 32, 32, .7);
  color: #eee;
}
editor[dir='rtl'] #admin_menu .dropdown-menu {
  left: 0px;
}

editor #admin_menu .dropdown-menu .dropdown-item {
  display: block;
  padding: 5px 20px;
  cursor: pointer;
}

editor #admin_menu .dropdown-menu .dropdown-item:hover {
  background-color: rgba(128, 128, 128, .7);
  text-decoration: none !important;
}

editor #admin_menu .dropdown-divider {
  border-width: 1px;
  border-style: dashed;
  border-color: rgba(128, 128, 128, .7);
  margin: 10px 0px;
}

editor #admin-btn {
  width: 64px;
  height: 64px;
  border: 0px;
  border-radius: 32px;
  background-color: #556;
  color: #eee;
  box-shadow: 2px 2px 5px #111;
  font-size: 28px;
}

editor #admin-btn:hover {
  background-color: #667;
}

editor #admin-btn:active {
  top: 26px;
  right: 24px;
  background-color: #667;
  box-shadow: 2px 2px 1px #111;
}

.panel-btn {
  background: linear-gradient(to top, #333, #222, #333);
  border-color: #111;
  border-radius: 6px;
  color: #aaa;
}

.panel-btn:active {
  background: linear-gradient(to top, #333, #333, #333);
  color: #aaa;
}

.edit-btn:hover {
  color: #eee;
}

.btn-disabled {
  cursor: not-allowed;
  color: #555;
}

.btn-disabled:hover {
  color: #555;
}

.bottom-border {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #444;
}

.container-fluid {
  padding-left: 5vw;
  padding-right: 5vw;
  font-size: 0px;
  position: relative;
  top: -7vw;
  overflow: visible;
}

.thumbnail {
  text-align: center;
  color: #eee;
  display: inline;
  background-color: rgba(0, 0, 0, 0.0);
  border: none;
}

#tab-videos .input-group {
  margin-top: 20px;
}

.loader {
  width: 100%;
}

#carousel .slick-list {
  overflow: visible;
}

#carousel .slick-slide {
  transform: scale(1);
  transition: transform .3s ease;
  transition-delay: .2s;
  border: 0px;
  padding-right: 8px;
}

.browse-page-grid #carousel .slick-slide:last-child,
.library-page-grid #carousel .slick-slide:last-child {
  padding-right: 8px;
}

#carousel .slick-slide:last-child {
  padding-right: 0;
}

#carousel .slick-slide:hover {
  overflow: visible;
}

#carousel .slick-track {
  margin-left: 0px;
  margin-right: 0px;
}

#carousel .shift-left {
  transform: translate3d(-50%, 0px, 0px);
  transition-delay: .2s;
}

#carousel .shift-right {
  transform: translate3d(50%, 0px, 0px);
  transition-delay: .2s;
}

#carousel .shift-extra-left {
  transform: translate3d(-100%, 0px, 0px);
  transition-delay: .2s;
}

#carousel .shift-extra-right {
  transform: translate3d(100%, 0px, 0px);
  transition-delay: .2s;
}

#carousel .slick-track .tile {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 20px;
}

#carousel .slick-track .tile .tile-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(32, 32, 32, .7);
  z-index: 100;
}

#carousel .slick-track .tile .tile-loader img {
  position: relative;
  top: calc(50% - 3vw);
  width: 6vw;
  height: 6vw;
}
#carousel .slick-track .tile .tile-loader-ltr img {
  left: calc(50% - 3vw);
}
#carousel .slick-track .tile .tile-loader-rtl img {
  left: calc(3vw - 50%);
}

#carousel .editing .slick-track .tile-outer img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  padding: 20% 41%;
  background-color: rgba(32, 32, 32, .6);
  z-index: 1000;
}

#carousel .editing .slick-track .tile {
  cursor: auto;
}

#carousel .slick-track .tile-inner-spacer {
  box-sizing: border-box;
}

#carousel .slick-track .tile-selected {
  border-color: #eee;
  border-style: solid;
  border-width: 5px;
  font-size: 0;
  border-radius: 12px;
}

#carousel .slick-track .fader {
  background-color: #111;
  width: 102%;
  height: 102%;
  opacity: 0.6;
}

#carousel .slick-track .tile-selected .fader {
  opacity: 0.01;
}

#carousel .tile-selected:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -13px;
  border-style: solid;
  border-width: 10px 13px 0 13px;
  margin-top: 0px;
  border-color: #eee transparent transparent transparent;
}

#carousel .slick-track .tile-inner {
  box-sizing: border-box;
  transform: scale(1);
  transition: .3s transform;
  transition-delay: .2s;
  display: block;
  transform-origin: center center;
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}

#carousel .slick-track .tile-inner.hover {
  transform: scale(2);
  transition-delay: .2s;
  z-index: 20;
}

#carousel .slick-track .tile-inner.mobile:hover {
  transform: scale(1);
  transition-delay: .2s;
  z-index: 20;
}

#carousel .editing .slick-track .tile-inner:hover {
  transform: scale(1);
}
.favourite-item-placeholder-wrapper .tile-inner {
  border: none!important;
  background-color: rgba(0,0,0,.2)!important;
}
.favourite-item-placeholder-wrapper .tile-inner .favourite-item-placeholder p {
  margin: 0;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5vw;
}
.btn.add-to-favourites-btn {
  padding: 0 0.5vw;
  margin-left: 1vw;
  margin-top: 10px;
  margin-bottom: 10px;
  background: none;
  border: 1px solid #fff;
}
.btn.add-to-favourites-btn > span {
  font-size: 1.5vw;
  text-shadow: none;
}
.btn.add-to-favourites-btn.remove {
  background-color: #fff;
}
.btn.add-to-favourites-btn.remove > span {
  color: #222!important;
}
.favourites-list-btn__loader {
  width: 1.5vw;
  height: 1.5vw;
  display: inline-block;
  padding: 0.25vw 0;
}

#carousel .slick-track .content {
  width: 200%;
  height: 200%;
  transform: scale(.5) translateZ(0);
  transform-origin: top left;
  transition-delay: .2s;
  position: absolute;
}
#carousel .slick-track .channel-icon {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 15%;
  overflow: hidden;
  margin: 2vh 2vh 0;
  box-sizing: border-box;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.5);
}
#carousel .slick-track .channel-progress,
#carousel .slick-track .channel-progress-value  {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  height: 3px;
  width: 100%;
}
#carousel .slick-track .channel-progress{
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 3;

}
#carousel .slick-track .channel-progress-value {
  background-color: #ff0000;
  width: 100%;
  z-index: 5;
  transform-origin: left;
}

[dir='rtl'] .slick-track .content {
  transform-origin: top right!important;
}


#carousel .slick-track .tile-inner .overlay {
  cursor: auto;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  padding: 10px;
  transition: opacity .3s;
  transition-delay: .2s;
  background-size: cover !important;
  background-position: center !important;
}

#carousel .slick-track .tile-inner:hover .overlay {
  cursor: pointer;
}

#carousel .slick-track .overlay .overlay-gradient {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -2px;
  left: -1px;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 5%, transparent 35%);
}

#carousel .slick-track .overlay-meta {
  cursor: pointer;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
}

#carousel .slick-track .tile h4 {
  margin: 0;
  font-size: 2vw;
  font-weight: 700;
  color: #eee;
  line-height: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

#carousel .slick-track .play-pos {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 5vw;
  height: 5vw;
  margin-left: -2.5vw;
  margin-top: -2.5vw;
}

#carousel .slick-track .play-ring {
  background: none repeat scroll 0 0 rgba(0, 0, 0, .5);
  width: 5vw;
  height: 5vw;
  border: .19vw solid #eee;
  border-radius: 50%;
  position: absolute;
  display: block;
  font-size: 5.8vw;
  color: #eee;
  cursor: pointer;
}

#carousel .slick-track .play-icon {
  line-height: 4.6vw;
  width: 100%;
  color: #eee;
  font-size: 46%;
  left: 6%;
  text-align: center;
  position: absolute;
  transition: color .3s ease;
}

#carousel .slick-track .play-icon:hover {
  color: #f00;
}

#carousel .slick-track .play-pos-lg {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 10vw;
  height: 10vw;
  margin-left: -5vw;
  margin-top: -5vw;
  transition: opacity .3s ease;
  transition-delay: .3s;
  opacity: 0;
}

#carousel .slick-track .tile-selected:hover .play-pos-lg {
  opacity: 1;
  transition: opacity .3s ease;
  transition-delay: .3s;
}

#carousel .slick-track .play-pos-lg .play-ring {
  background: none repeat scroll 0 0 rgba(0, 0, 0, .5);
  position: absolute;
  width: 10vw;
  height: 10vw;
  border: .4vw solid #eee;
  border-radius: 50%;
  display: block;
  font-size: 13.4vw;
  color: #eee;
  cursor: pointer;
}

#carousel .slick-track .play-pos-lg .play-icon {
  line-height: 9vw;
  width: 100%;
  color: #eee;
  font-size: 46%;
  left: 6%;
  text-align: center;
  position: absolute;
  transition: color .3s ease;
}

#carousel .slick-track .play-pos-lg .play-icon:hover {
  color: #f00;
}

#carousel .slick-track .tile-meta-more-info {
  width: 100%;
  text-align: center;
  display: block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transform: scale(1);
  transition: transform .3s ease;
  transition-delay: .3s;
  color: #eee !important;
}

#carousel .slick-track .tile-meta-more-info:hover {
  color: #f00;
  transform: scale(1.25);
  transition-delay: .2s;
}

#carousel .slick-track .tile-meta-more-info .glyphicon {
  font-size: 2vw;
}

#carousel .slick-prev {
  position: absolute;
  left: -5.2vw;
  top: 0px;
  height: 101%;
  width: 5.2vw;
  margin: 0px;
  padding: 0px;
  z-index: 1;
  font-size: 0px;
  border: none;
  background: linear-gradient(to right, rgba(0, 0, 0, .9) 0, transparent 100%);
}

#carousel .slick-prev:before {
  opacity: 0;
  content: '\2039';
  font-size: 10vw;
  line-height: 50%;
  transition: opacity .3s ease
}

#carousel .slick-prev:hover {
  background: linear-gradient(to right, rgba(0, 0, 0, .9) 0, transparent 100%);
}

#carousel .slick-prev:hover:before {
  opacity: .8;
}

#carousel .slick-next {
  position: absolute;
  right: -5.2vw;
  top: 0px;
  height: 101%;
  width: 5.2vw;
  margin: 0px;
  padding: 0px;
  z-index: 1;
  font-size: 0px;
  border: none;
  background: linear-gradient(to left, rgba(0, 0, 0, .9) 0, transparent 100%);
}

[dir='rtl']#carousel  .slick-prev {
  right: -5.2vw;
  left: auto;
}

[dir='rtl']#carousel  .slick-next {
  left: -5.2vw;
  right: auto;
}

#carousel .slick-next:before {
  opacity: 0;
  content: '\203A';
  font-size: 10vw;
  line-height: 50%;
  transition: opacity .3s ease
}

#carousel .slick-next:hover {
  background: linear-gradient(to left, rgba(0, 0, 0, .9) 0, transparent 100%);
}

#carousel .slick-next:hover:before {
  opacity: .8;
}

#carousel .editing .slick-prev:hover:before {
  display: none;
}

#carousel .editing .slick-next:hover:before {
  display: none;
}

#carousel .no-zoom {
  transform: scale(1) !important;
}

.editing slick-slider h2.hasPlaceholder[placeholder]:empty:before {
  content: attr(placeholder);
  text-shadow: 2px 2px 2px #111;
  color: rgba(255, 255, 255, .3);
  font-weight: normal;
  opacity: 1;
}

.editing slick-slider h2.hasPlaceholder[placeholder]:empty:focus:before {
  content: "";
}

item-details {
  height: 0px;
  margin-left: -5vw;
  width: 100vw;
  display: block;
  overflow: hidden;
  position: relative;
  transition: height 0.3s ease, top 0.3s ease;
}

item-details:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
}

item-details:-moz-full-screen {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
}

item-details:-ms-fullscreen {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
}

item-details:fullscreen {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
}

item-details.fullscreen {
  position: fixed;
  top: 0px;
  left: 0px;
  margin-left: 0px !important;
  z-index: 10000000;
}

.editing item-details .hasPlaceholder[placeholder]:empty:before {
  content: attr(placeholder);
  opacity: .3;
}

.editing item-details .hasPlaceholder[placeholder]:empty:focus:before {
  content: "";
}

.close__ad {
  cursor: pointer;
  position: fixed;
  top: 9vh;
  right: 20px;
  overflow: hidden;
  z-index: 9999999 !important;
}

.close__ad__button {
  font-size: 22px;
  color: #fff;
}

@media screen and (max-width: 700px) {
  top: 4vh;
}

item-details .adContainer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

item-details .adContainer.topZ {
  z-index: 1000 !important;
}

item-details .adResume.topZ {
  width: 20%;
  text-align: center;
  z-index: 1001 !important;
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: auto;
}

item-details .adResume.topZ svg {
  border-radius: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

item-details .adContainer.topZ div, item-details .adContainer.topZ iframe {
  width: 100% !important;
  height: 100% !important;
}

item-details .itemVideoContainer {
  background-color: #111;
  background-size: cover !important;
  background-position: center !important;;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  transition: height .3s ease;
}

item-details .details-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 0;
  transition: opacity .3s;
  font-size: 1.5vw;
}
item-details .details-container-ltr {
  background: linear-gradient(to right, #000 0, transparent 100%);
}
item-details .details-container-rtl {
  background: linear-gradient(to left, #000 0, transparent 100%);
}

item-details .details-container-top {
  background: linear-gradient(to right, rgba(17, 17, 17, 0.8) 0, rgba(17, 17, 17, 0.4) 40%, rgba(17, 17, 17, 0.05) 70%, transparent 90%);
}
item-details .details-container-mobile-ui.details-container-ltr,
item-details .details-container-mobile-ui.details-container-rtl {
  background: rgba(0,0,0,.3);
}

item-details .details-container.details-container-embedded-fullscreen {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
}


item-details .bufferingSpinner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

item-details .bufferingSpinner img {
  position: absolute;
  top: calc(50% - 5vw);
  left: calc(50% - 5vw);
  width: 10vw;
  height: 10vw;
}

item-details:-webkit-full-screen .details-container {
  display: none;
}

item-details:-moz-full-screen .details-container {
  display: none;
}

item-details:-ms-fullscreen .details-container {
  display: none;
}

item-details:fullscreen .details-container {
  display: none;
}

item-details:-webkit-full-screen .trailer-details {
  display: none;
}

item-details:-moz-full-screen .trailer-details {
  display: none;
}

item-details:-ms-fullscreen .trailer-details {
  display: none;
}

item-details:fullscreen .trailer-details {
  display: none;
}

item-details:-webkit-full-screen .details-container {
  display: none;
}

item-details:-moz-full-screen .details-container {
  display: none;
}

item-details .trailer-details {
  margin-bottom: 0px;
  position: relative;
  transition: opacity .3s;
}

item-details .trailer-details h1 {
  color: #eee;
  display: inline-block;
  font-size: 2.5vw;
  font-weight: bold;
  margin-bottom: 0px;
  margin-left: 5.5vw;
  text-shadow: 2px 2px 2px rgba(32, 32, 32, .8);
}

item-details .details-fader {
  background: #111;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

item-details .close {
  margin-top: 1vw;
  position: relative;
  opacity: .8;
  transition: opacity .2s ease;
}

item-details .close-ltr {
  right: 3vw;
}

item-details .close-rtl {
  float: left;
  left: 1.5vw;
}

item-details .close:hover {
  opacity: .6;
}

item-details .full-window-close {
  margin-top: 20px;
  position: relative;
  opacity: .8;
  transition: opacity .2s ease;
  color: white;
  background: transparent;
  border: 0;
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 2.5vw;
}
item-details .full-window-close-ltr {
  float: left;
  left: 20px;
}
item-details .full-window-close-rtl {
  right: 30px;
}
item-details .full-window-close:hover {
  opacity: .6;
}
item-details .full-window-close-topZ {
  z-index: 1000002!important;
}

item-details button span {
  font-size: 3vw;
  color: #eee;
  font-weight: normal;
  text-shadow: 2px 2px 2px rgba(32, 32, 32, .7);
}
item-details .details-container-title {
  position: relative;
  margin-bottom: 0px;
  margin-left: 5.5vw;
  margin-right: 5.5vw;
  min-width: 20px;
  max-width: 45vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

item-details .details-container-title h1 {
  color: #eee;
  font-weight: bold;
  font-size: 2.5vw;
  display: inline-block;
  margin-bottom: 0px;
  min-width: 20px;
  max-width: 45vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: margin-top 0.3s ease;
}

item-details .details-container-btn {
  position: relative;
  margin-bottom: 0px;
  margin-left: 5.5vw;
  margin-right: 5.5vw;
  min-width: 20px;
  max-width: 45vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
item-details .details-container-btn .egp-button,
item-details .details-container-btn .watch-more-btn {
  padding: 0 .5vw;
  margin-left: 1vw;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5vw;
}

item-details .details-container-btn > :first-child {
  margin-left: 0 !important;
}

item-details .epg-now-container {
  margin-left: 5.5vw;
}

item-details .epg-now-container p {
  margin: 0;
  min-width: 20px;
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}

item-details .epg-next-container {
  margin-left: 5.5vw;
  margin-top: 2vw;
}

item-details h1 {
  position: relative;
  color: #eee;
  font-weight: bold;
  font-size: 2.5vw;
  margin-top: 20px;
  margin-bottom: 0px;
  margin-left: 5.5vw;
  margin-right: 5.5vw;
  display: block;
  min-width: 20px;
  max-width: 45vw;
  overflow: visible;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: margin-top 0.3s ease;
}

item-details h1.negativeBottom {
  margin-bottom: -2vw;
}

item-details h1.placeholder {
  margin-left: 5.5vw !important;;
  margin-top: -2.5vw;
}

item-details h1.editable.placeholder {
  margin-top: 20px;
}

item-details .item-select .dropdown-menu {
  margin-left: 5.5vw;
}

.editing .details-container .editable {
  cursor: pointer;
}

.editing .details-container .editable:hover::after {
  content: '';
  width: calc(100% + 1.4vw);
  height: calc(100% + 1.4vw);
  border-color: #5af;
  border-style: solid;
  opacity: 0.4;
  position: absolute;
  top: -0.7vw;
  left: -0.7vw;;
}

item-details span {
  max-width: 50vw;
  display: inline-block;
}

item-details .inner-details {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100vw;
  display: inline;
}
item-details .tier-description,
item-details .inner-details .details-short,
item-details .inner-details .details-free-items {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5.5vw;
  white-space: nowrap;
}

item-details .tier-description,
item-details .inner-details .details-free-items {
  color: #8dbbfe!important;
  white-space: normal;
  text-shadow: 2px 2px 5px #111;
}

item-details .season,
item-details .episode,
item-details .release {
  display: inline-block;
  color: #eee;
  position: relative;
  font-weight: 600;
  min-width: 10px;
}

item-details .season-edit,
item-details .episode-edit {
  display: inline-block;
  color: #eee;
  position: relative;
  min-width: 10px;
  font-weight: 400;
  font-size: 1.2vw;
}

item-details .release-ltr {
  margin-right: 10px;
}
item-details .release-rtl {
  margin-left: 10px;
}

item-details .rating {
  top: -1px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(200, 200, 200, .8);
  color: #eee;
  display: inline-block;
  position: relative;
  font-weight: 600;
  min-width: 10px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 1px;
  font-size: 1.2vw;
}
item-details .rating-ltr {
  margin-right: 10px;
}
item-details .rating-rtl {
  margin-left: 10px;
}

item-details .definition {
  top: -1px;
  display: inline-block;
  position: relative;
  color: #eee;
  font-weight: 600;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(200, 200, 200, .8);
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 1px;
  font-size: 1.2vw;
}
item-details .definition-ltr {
  margin-right: 10px;
}
item-details .definition-rtl {
  margin-left: 10px;
}

item-details .definition.limited-border {
  border-bottom: none;
  border-right: none;
  padding-right: 6px;
  cursor: pointer;
}

item-details .definition .border-right {
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: rgba(200, 200, 200, .8);
  height: calc(100% - .6vw);
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

item-details .definition .border-bottom {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: rgba(200, 200, 200, .8);
  height: 100%;
  width: calc(100% - .5vw);
  position: absolute;
  top: 2px;
  left: -2px;
}

item-details .definition span {
  position: absolute;
  font-size: 1.2vw;
  right: -.3vw;
  bottom: -1vw;
  color: rgba(200, 200, 200, .8);
}

item-details .duration {
  display: inline-block;
  position: relative;
  color: #eee;
  font-weight: 600;
}
item-details .duration-ltr {
  margin-right: 10px;
}
item-details .duration-rtl {
  margin-left: 10px;
}

item-details .share, item-details .extras {
  display: inline-block;
  position: relative;
}

item-details .description span {
  color: #ddd;
  font-size: 1.2vw;
  cursor: text;
  text-align: justify;
}

.edit item-details .description span {
  cursor: pointer;
}

item-details .description {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5.5vw;
//  width: 50vw;
  position: relative;
}

item-details .tag {
  margin-left: 5.5vw;
  font-size: 1.2vw;
  line-height: 2vw;
}
item-details .tag.tag-rtl {
  margin-right: 5.5vw;
}


item-details .valueName,
.tags-search-result-row-title .valueName {
  display: inline-block;
  margin-left: 0.5vw;
  font-size: 1.2vw;
  position: relative;
  min-width: 10px;
  text-decoration: none;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}

.ffa {
  text-decoration: none;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}

item-details .addValue {
  margin-left: 1vw;
}


item-details .cast, item-details .director, item-details .genre, item-details .tv_show {
  margin-left: 5.5vw;
  margin-right: 5.5vw;
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 1.2vw;
}

item-details .addValue,
item-details .addExistingValue,
item-details .removeItemValue,
.addChildPicker, .addParent,
item-details .pipeline-import-btn,
child-items .select-item-type {
  font-size: 1vw;
  cursor: pointer;
  position: relative;
  background-color: #333;
  opacity: 0.7;
  color: #eee;
  padding: 0 4px;
  width: 1.8vw;
  height: 1.8vw;
  text-align: center;
  border-radius: 3px;
  transition: background-color .3s ease;
}

child-items .select-item-type {
  font-size: 1.5vw;
  width: auto;
  height: auto;
  margin: 0 0 0 1vw;
}

item-details .pipeline-import-btn {
  vertical-align: middle;
  margin: 0;
  padding-top: 3px;
}

item-details .addValue:hover,
item-details .addExistingValue:hover,
item-details .removeItemValue:hover,
.addChildPicker:hover, .addParent:hover {
  transition: opacity .3s ease;
}

.value_select {
  width: 15vw;
}

item-details .tv_show {
  display: block;
  font-size: 1.5vw;
  margin-top: .5vw;
  margin-bottom: -2.8vw;
}

item-details .tv_show span a {
  text-decoration: none;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}

item-details .tv_show li {
  font-size: 1.5vw;
}

item-details .tv_show span a {
  text-decoration: none;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}
item-details .share {
  margin-right: 10px;
}
item-details .share a, item-details .extras a {
  display: inline-block;
  text-decoration: none;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}


.editing item-details .cast, .editing item-details .director, .editing item-details .genre, .editing item-details .tv_show {
//  float: left;
}

item-details form label {
  background-color: rgba(66, 66, 66, .8);
  color: #ccc;
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 2px 2px 5px #111;
}

item-details form label:hover {
  color: #eee;
}

item-details form .form-control-file {
  display: none !important;
}

item-details .dropzone {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

item-details .dropzone.dragOver {
  z-index: 10000;
  background-color: rgba(200, 200, 200, .4);
}

item-details .captions-menu {
  max-height: 30vw;
  overflow-y: auto;
  overflow-x: hidden;
}

item-details .inner-details .left {
  width: 65vw;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 10px;
  padding-right: 1vw;
//  overflow-y: scroll;
}

item-details .inner-details .left-ltr {
  float: left;
}
item-details .inner-details .left-rtl {
  float: right;
  margin-right: 5.5vw;
  width: 60vw!important;
}

item-details .inner-details .left::-webkit-scrollbar {
  -webkit-appearance: none;
}

item-details .inner-details .left::-webkit-scrollbar:vertical {
  width: 6px;
}

item-details .inner-details .left::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

item-details .inner-details .left::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .4);
}

item-details .inner-details .right {
  width: 32vw;
  position: relative;
}

item-details .inner-details .right-ltr {
  float: left;
}
item-details .inner-details .right-rtl {
  float: right;
  width: 29vw;
}

file-editor {
  position: relative;
  display: block;
  z-index: 11
}

file-editor .files {
  background: rgba(32, 32, 32, .8);
  margin: 20px;
  border-radius: 3px;
  box-shadow: 2px 2px 2px rgba(11, 11, 11, .8);
}

.tutorial file-editor .files {
  margin: 0px;
  margin-right: -1px;
  border-radius: 0px;
  box-shadow: none;
}

file-editor .files .menu {
  position: relative;
  z-index: 100;
  width: 100%;
  text-align: center;
  border-color: rgba(128, 128, 128, .6);
  padding: 5px;
}

file-editor .files .menu .btn {
  border: none;
  background: transparent;
  color: #ddd;
  transition: color .3s ease;
  font-size: 1.5vw;
  padding: 0px;
}

file-editor .files .menu a {
  color: #ddd !important;
  font-size: 1.2vw;
}

file-editor .files .menu .btn:hover {
  color: #fff;
  transition: color .3s ease;
}

file-editor .files .menu .btn:focus {
  color: #fff;
  transition: color .3s ease;
}

file-editor .files .dropdown-menu {
  background-color: rgba(32, 32, 32, .8);
  width: 20vw;
  margin-right: calc(50% - 10vw);
  font-size: 1.5vw;
  max-height: 30vh;
  overflow: auto;
}

file-editor .files .dropdown-menu a:hover {
  background-color: rgba(128, 128, 128, .8);
}

file-editor .files .details {
  position: relative;
  width: 100%;
  float: left;
  padding: 0px 10px;
  max-height: 45vh;
  overflow: auto;
}


file-editor .files .file-editor-menu::-webkit-scrollbar {
  -webkit-appearance: none;
}

file-editor .files .file-editor-menu::-webkit-scrollbar:vertical {
  width: 6px;
}

file-editor .files .file-editor-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

file-editor .files .file-editor-menu::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .4);
}

file-editor .files .details::-webkit-scrollbar {
  -webkit-appearance: none;
}

file-editor .files .details::-webkit-scrollbar:vertical {
  width: 6px;
}

file-editor .files .details::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

file-editor .files .details::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .4);
}

file-editor .files .details h2 {
  z-index: auto;
  cursor: auto;
  text-shadow: none;
  margin-bottom: 30px;
}

file-editor .files .details h2:hover::after {
  border-color: transparent;
}

file-editor .files .details .status {
  width: 100%;
  text-align: center;
  color: #ddd;
}

file-editor .uploading {
  text-align: center;
}
file-editor .badge-uploading {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.one {
  font-size: 18px;
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.0s;
  animation: dot 1.3s infinite;
  animation-delay: 0.0s;
}

.two {
  font-size: 18px;
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.2s;
  animation: dot 1.3s infinite;
  animation-delay: 0.2s;
}

.three {
  font-size: 18px;
  opacity: 0;
  -webkit-animation: dot 1.3s infinite;
  -webkit-animation-delay: 0.3s;
  animation: dot 1.3s infinite;
  animation-delay: 0.3s;
}

@keyframes cta-pulse {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(255,255,255,0.4));
  }
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.cta-pulse {
  animation: cta-pulse 1.6s infinite;
  transition: box-shadow 0.3s ease;
}

@keyframes dot {
      0% { opacity: 0; }
     50% { opacity: 0; }
    100% { opacity: 1; }
}

file-editor .files .details .dropbox {
  border-style: dashed;
  border-radius: 4px;
  color: #ddd;
  border-color: rgba(128, 128, 128, .6);
  border-width: 2px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}

file-editor .files .details img {
  width: 50%;
  margin-top: 10%;
  margin-bottom: 10%;
  margin-left: auto;
  margin-right: auto;
}

file-editor .files .dropbox.dragOver {
  background-color: rgba(200, 200, 200, .6);
}

file-editor .files .dropbox .label.dragOver {
  background-color: rgba(200, 200, 200, .6);
}

file-editor .files .details .dropbox i {
  font-size: 6vw;
  opacity: .8;
}

file-editor .files .details .dropbox .btn {
  background-color: #777;
  position: relative;
}

file-editor .files .details .btn {
  cursor: pointer;
  font-size: 1.5vw;
  color: #ccc;
  border: none;
  transition: color .3s ease;
}

file-editor .files .details .btn:hover {
  color: #fff;
  transition: color .3s ease;
}

file-editor .files .details .dropbox h5 {
  font-size: 1.2vw;
}

file-editor .files .details input[type=file] {
  display: none;
}

file-editor .files .details .error {
  text-align: center;
  font-size: 1.5vw;
}

file-editor .files .details .error button {
  cursor: pointer;
  font-size: 1.5vw;
  background-color: #777;
  color: #eee;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  margin: 10px 0px;
  transition: background-color .3s ease;
}

file-editor .files .details .error button:hover {
  background-color: #999;
  color: #fff;
  transition: background-color .3s ease;
}

file-editor .files .details .captions {
  margin-bottom: 10px;
  width: 100%;
}

file-editor .files .details .captions th, item-details .files .details .captions td {
  padding: 0px 5px 3px 0px !important;
  background: none;
  border: none;
  font-size: 1.1vw;
  min-width: 0px;
  text-align: left;
}

file-editor .files .details .captions th .add {
  padding: 0px;
}

file-editor .files .details .captions td a {
  margin-right: 0.5vw;
}

file-editor .files .details .captions td i {
  font-size: 1.5vw;
  cursor: pointer;
  opacity: .8;
  transition: opacity .3s ease;
}

file-editor .files .details .captions td i:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

file-editor .files .details .captions td select {
  background: none;
  border: none;
  margin-left: -3px;
  max-width: 10vw;
}

file-editor .files .details .captions td select option {
  color: #333;
}

file-editor .files .details .preview.dragOver {
  border-color: #777;
  border-style: dashed;
  border-width: 2px;
  padding: 5px;
}

file-editor-captions-details {
  display: block;
  max-height: 25vw;
  overflow-y: auto;
  overflow-x: hidden;
}

file-editor-captions-details .add {
  display: inline;
  font-size: 1vw;
  padding: 0.5vw 1vw;
}

file-editor-captions-details h2 {
  width: 100%;
  text-align: center;
  font-size: 1.5vw;
}

file-editor-preview img {
  width: 100% !important;
  margin: 0px !important;
  margin-bottom: 10px !important;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(128, 128, 128, .6);
}

file-editor .badge-preview {
  position: relative;
  width: 50%;
  min-height: 100px;
  margin: 0 auto;
}
file-editor .badge-preview img{
  max-height: 300px;
}

file-editor-preview button {
  position: absolute;
  background-color: rgba(32, 32, 32, .8);
}

file-editor-preview .remove {
  bottom: 11px;
  right: 11px;
  border-radius: 0px 0px 2px;
  border: none;
  font-size: 2vw;
  color: #ccc;
  transition: background-color .3s ease, color .3s ease;
}

file-editor-preview .remove:hover {
  color: #eee;
  background-color: rgba(32, 32, 32, 1);
  transition: background-color .3s ease, color .3s ease;
}

file-editor-preview .showHideTitle {
  bottom: 11px;
  left: 11px;
  border-radius: 0px 0px 2px;
  border: none;
  font-size: 2vw;
  color: #ccc;
  transition: background-color .3s ease, color .3s ease;
}

file-editor-preview .showHideTitle:hover {
  color: #eee;
  background-color: rgba(32, 32, 32, 1);
  transition: background-color .3s ease, color .3s ease;
}

file-editor-preview .preview {
  left: calc(50% - 3.5vw);
  top: calc(50% - 3.5vw);
  width: 7vw;
  height: 7vw;
  font-size: 4vw;
  border-radius: 50%;
  border-color: #eee;
  border-style: solid;
  padding-left: 1vw;
  opacity: .8;
  color: #ddd;
  transition: opacity .3s ease, color .3s ease;
}

file-editor-preview .preview:hover {
  opacity: 1;
  color: #d00;
  transition: opacity .3s ease, color .3s ease;
}

#captionButton {
  margin-bottom: 8px !important;
}

.videoContainer {
  background-color: #000;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.videoContainer .play-ring {
  background: none repeat scroll 0 0 rgba(0, 0, 0, .5);
  width: 20vw;
  height: 20vw;
  border: .19vw solid #eee;
  border-radius: 50%;
  position: absolute;
  display: block;
  font-size: 19vw;
  color: #eee;
  cursor: pointer;
}

.videoContainer .play-icon {
  line-height: 19.5vw;
  width: 100%;
  color: #eee;
  font-size: 85%;
  left: 6%;
  text-align: center;
  position: absolute;
  transition: color .2s ease;
}

.videoContainer .play-icon:hover {
  color: #f00;
}

.videoContainer .blackout-overlay {
  background-color: #292929;
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 1.5vw;
}

.videoContainer .blackout-overlay > p {
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 0 5px #000;
}

.video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
}

.controlsContainer {
  position: absolute !important;
  bottom: 1vw;
  margin-top: 0px !important;
}

.controlsContainer .dropup {
  font-size: 0px;
}

.controlsContainer .dropup ul {
  background-color: rgba(32, 32, 32, 1);
  margin-right: -30px;
}

.controlsContainer .dropup ul li {
  padding-left: 20px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.controlsContainer .dropup ul li:hover {
  background-color: rgba(128, 128, 128, 1);
}

.controlsContainer .dropup ul li .check {
  min-width: 20px;
}

.controlsContainer .quality {
  cursor: auto;
  font-size: 12px;
}

.controlsContainer .quality:active {
  background: transparent;
}

.videoContainer:-webkit-full-screen #video {
  width: 100%;
  height: 100%;
}

.videoContainer:-moz-full-screen #video {
  width: 100%;
  height: 100%;
}

.videoContainer:-ms-fullscreen #video {
  width: 100%;
  height: 100%;
}

.videoContainer:fullscreen #video {
  width: 100%;
  height: 100%;
}

.captionButton {
  margin-bottom: 8px !important;
}

#carousel .slick-slider {
  z-index: 10;
//  width: 1px;
//  min-width: 100%;
  *width: 100%;
}

#carousel .slick-slider:hover {
  z-index: 11;
}

#carousel .slick-slider:not(:last-child) {
  padding-bottom: 8px;
}

.editing .selected::after {
  content: '';
  border-color: #5af;
  border-style: solid;
  border-width: 2px;
  opacity: 0.4;
  position: absolute;
  top: -2vw;
  left: -2vw;
  width: calc(100% + 4vw);
  height: calc(100% + 4vw);
}

slick-slider {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 3vh;
  clear: both;
  z-index: 0;
  transition: z-index .0s;
  transition-delay: .3s;
}

slick-slider.banner-slider {
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
}

slick-slider.edit-mode {
  min-height: 17vw;
  z-index: initial;
}

slick-slider:hover {
  z-index: 1000;
  transition: z-index .0s;
  transition-delay: .3s;
}

.editing slick-slider:hover {
  z-index: initial;
}

.edit-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.edit-overlay .topleft_buttons {
  position: absolute;
  left: 0vw;
  top: 0vw;
}

.edit-overlay .topright_buttons {
  position: absolute;
  right: 0vw;
  top: 0vw;
}

.edit-overlay button, .edit-overlay label {
  opacity: 0.7;
  margin: 0px;
  width: 2vw;
  height: 2vw;
  border: none;
  transition: opacity .3s ease;
  font-size: 1.1vw;
  float: left;
  background-color: #333;
  color: #eee;
  text-align: center;
  cursor: pointer;
}

.edit-overlay button:hover, .edit-overlay label:hover {
  opacity: 1.0;
  transition: opacity .3s ease;
}

.edit-overlay .form-control-file {
  display: none;
}

.edit-overlay .left i {
  margin-left: -0.3vw;
}

.edit-overlay .right i {
  margin-left: 0.3vw;
}

.edit-overlay .bottomright_buttons {
  position: absolute;
  right: 0vw;
  bottom: 0vw;
}

.edit-overlay .bottomleft_buttons {
  position: absolute;
  left: 0vw;
  bottom: 0vw;
  margin: 0px;
}

.edit-overlay.dragOver {
  background-color: rgba(200, 200, 200, .4);
}

.topleft_buttons {
  position: absolute;
  width: 2.5vw;
  left: -3vw;
  z-index: 2000;
}
.topleft_buttons[dir='rtl'] {
  left: auto;
  right: -3vw;
}


grid .topleft_buttons {
  z-index: 0;
}

.topleft_buttons button {
  opacity: 0.7;
  margin: 0px;
  margin-bottom: 0.1vw;
  border-width: 0px;
  width: 2vw;
  height: 2vw;
  transition: opacity .3s ease;
  font-size: 1.1vw;
  float: left;
  background-color: #333;
  color: #eee;
}
.topleft_buttons button:disabled {
  opacity: .25!important;
}

.topleft_buttons button.highlight {
  border-style: solid;
  border-width: 2px;
  width: calc(2vw + 4px);
  height: calc(2vw + 4px);
  margin-left: -2px;
  border-color: rgba(222, 222, 222, .8);
}

.topleft_buttons button:hover {
  opacity: 1.0;
  transition: opacity .3s ease;
}

.bottomright_buttons {
  position: absolute;
  right: -4.5vw;
  bottom: -1.5vw;
  z-index: 2000;
}

.bottomright_buttons button {
  opacity: 0.7;
  margin: 0px;
  border-width: 0px;
  width: 2vw;
  height: 2vw;
  transition: opacity .3s ease;
  font-size: 1.1vw;
  float: left;
  background-color: #333;
}

.bottomright_buttons button:hover {
  opacity: 1.0;
  transition: opacity .3s ease;
}

tags-input {
  display: inline-block;
  margin-left: 10px;
  margin-top: -10px;
  margin-bottom: -4px;
}

tags-input div {
  font-size: 1.2vw;
}

tags-input ul {
  padding: 0px;
  list-style-type: none;
}

tags-input li {
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 4px;
  background-color: rgba(77, 77, 77, .7);
  color: #ccc !important;
  padding-left: 6px;
  padding-right: 3px;
  box-shadow: 2px 2px 5px #111;
}

tags-input input {
  border: none;
  background: none;
  color: #eee;
  float: left;
}

tags-input input::-moz-placeholder {
  color: #eee;
  text-decoration: underline;
}

tags-input input:-ms-input-placeholder {
  color: #eee;
  text-decoration: underline;
}

tags-input input::-webkit-input-placeholder {
  color: #eee;
  text-decoration: underline;
}

tags-input .remove-button {
  cursor: pointer;
}

tags-input auto-complete {
  display: inline;
  float: left;
  max-width: 200px;
}

tags-input .autocomplete {
  margin-top: 5px;
  z-index: 999;
  width: 100%;
}

tags-input .autocomplete .suggestion-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow: hidden;
  position: relative;
  background-color: rgba(33, 33, 33, .7);
  border-radius: 2px;
  box-shadow: 2px 2px 5px #111;
}

tags-input .autocomplete .suggestion-item {
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  background: transparent;
  box-shadow: none;
  width: 100%;
  border-radius: 0px;
}

tags-input .autocomplete .suggestion-item.selected {
  color: #000;
  background-color: rgba(128, 128, 128, .9);
}

tags-input .autocomplete .suggestion-item.selected em {
  color: #000;
  background-color: #eee;
}

tags-input .autocomplete .suggestion-item em {
  color: #000;
  background-color: #ddd;
}

tags-input .autocomplete .selected::after {
  border: none;
}

.xcrypt-queue-container {
  position: fixed;
  right: 1.5vw;
  bottom: 1.5vw;
  z-index: 10000;
}

xcrypt-queue {
  background-color: rgba(32, 32, 32, .8);
  padding: 5px;
  border-radius: 3px;
  box-shadow: 2px 2px 2px rgba(11, 11, 11, .8);
  max-height: 11vw;
  overflow-y: auto;
  display: block;
}

.tutorial xcrypt-queue {
  border-radius: 0px;
  box-shadow: none;
  margin-right: -1px;
}

xcrypt-queue ul {
  list-style-type: none;
  padding: 0px;
  width: 400px;
}

xcrypt-queue ul li {
  margin: 5px;
}

xcrypt-queue hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-style: dashed;
  border-color: rgba(128, 128, 128, .8);
}

xcrypt {
  display: block;
  position: relative;
}

xcrypt .decorator {
  float: left;
  width: 160px;
  height: 90px;
  margin-right: 10px;
  position: relative;
}

xcrypt .decorator video {
  width: 100%;
  height: 100%;
}

xcrypt .decorator img {
  opacity: 1;
  transition: opacity 1s ease;
}

xcrypt .decorator img.transparent {
  opacity: 0;
  transition: opacity .1s ease;
}

xcrypt h1 {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  color: #eee;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 180px;
}

xcrypt .inqueue{
  max-width: 360px;
}

xcrypt button {
  position: absolute;
  right: 0px;
  background: none;
  border: none;
  cursor: pointer;
  color: #eee;
  opacity: .5;
  transition: opacity .3s ease;
}

xcrypt button:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

xcrypt p {
  color: #ddd;
  font-size: 10px;
}

xcrypt .progress {
  background-image: none;
  background-color: rgba(128, 128, 128, .5);
  margin-bottom: 5px;
}

xcrypt .progress-bar {
  background-color: #6854e0;
}

xcrypt span {
  font-size: 12px;
  color: #eee;
}

.ng-confirm hr {
  border-style: dashed;
}

.ng-confirm h3 {
  font-size: 16px;
}

.ng-confirm p {
  margin: 0px;
  font-size: 12px;
}

.ng-confirm a {
  text-decoration: underline;
}

.ng-confirm h4 {
  font-size: 14px;
  color: #f00 !important;
  font-weight: bold;
  position: absolute;
  right: 0px;
  bottom: -10px;
}

.ng-confirm h4.error {
  right: 10px;
  bottom: -1px;
}

.ng-confirm .form-group .placeholder {
  color: #888 !important;
  font-size: 14px !important;;
  position: relative;
  top: 27px;
  left: 15px;
}

.ng-confirm .negmargin {
  margin-top: -20px;
}

.ng-confirm .posmargin {
  margin-bottom: 10px;
  display: block;
}

.ng-confirm-buttons .btn-back {
  position: absolute;
  left: 15px;
}

.ng-confirm-buttons img {
  width: 16px;
  margin-right: 8px;
}

.ng-confirm-buttons p {
  position: absolute;
  bottom: 1.5em;
  left: 15px;
}

.ng-confirm-buttons p.button-offset {
  bottom: 5.5em;
}

.ng-confirm-title {
  font-size: 18px !important;
}

.ng-confirm table {
  margin-left: auto;
  margin-right: auto;
}

.ng-confirm td, .ng-confirm th {
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  padding: 5px 17px !important;
  text-align: center;
}

.ng-confirm thead td, .ng-confirm th {
  font-weight: bold;
  background-color: #ccc;
}

.ng-confirm tfoot td, .ng-confirm th {
  padding-bottom: 0px;
}

language .btn {
  background: none;
  border: none;
  font-size: 1em;
  padding: 2px;
  padding-top: 0px;
  opacity: .7;
  transition: opacity .3s ease;
}

language .btn:hover {
  opacity: 1;
  color: inherit !important;
  text-decoration: underline;
}

language .btn:focus {
  color: inherit !important;
}

language .dropdown-menu {
  background: rgba(33, 33, 33, .9);
  z-index: 10000;
}

language .dropdown-item {
  display: block;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  color: #eee !important;
}

language .dropdown-item:hover {
  text-decoration: none;
  background-color: rgba(77, 77, 77, .9);
}

.ng-confirm .matches {
  display: block;
  position: fixed;
  left: auto;
  top: auto;
  min-width: 16vw;
}

home .addItemList {
  display: block;
  height: 0vw;
  font-size: 5vw;
  text-align: center;
  margin-top: 1.5vw;
  opacity: .5;
  transition: opacity .3s ease;
}

home .addItemList:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

user {
  margin-top: .2vw;
}
.user-ltr {
  margin-left: 1vw;
}
.user-rtl {
  margin-right: 2vw;
}

user #user_login {
  line-height: 1.2;
  background: none;
  border-width: 0px;
  border-radius: 4px;
  padding: 0px;
  padding-top: 0px;
  margin-right: 0px;
  z-index: 100;
  text-shadow: 2px 2px 2px #111;
  color: #eee;
  transition: color .3s ease;
}

user #user_login:hover {
  color: #aaa;
  transition: color .3s ease;
}

user #user_login.browse {
  width: auto;
}

user #user_menu {
  font-size: 1.5vw;
  z-index: 100;
  float: right;
  line-height: 1.5vw;
}

user #user_menu button {
  background: none;
  border: none;
  font-size: 1.5vw;
  height: 2.5vw;
  color: #eee;
  width: 5vw;
}

user #user_menu button.browse {
  padding: 0px;
  width: auto;
}

user #user_menu .dropdown-menu {
  width: 10vw;
  right: 0px;
  left: auto;
  background-color: rgba(32, 32, 32, .7);
}

user #user_menu .dropdown-item {
  display: block;
  padding: 5px 20px;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  color: #eee;
}

user #user_menu .dropdown-item:hover {
  background-color: rgba(128, 128, 128, .7);
  text-decoration: none !important;
}

user #user_menu .dropdown-divider {
  border-width: 1px;
  border-style: dashed;
  border-color: rgba(128, 128, 128, .7);
  margin: 0.5vw 1vw;
}

.settings_container h3 {
  display: inline-block;
  width: calc(80vw - 30px);
}

.settings_container .loader {
  width: 100%;
  text-align: left;
}

.settings_container .payment_loader {
  display: block;
  width: 64px !important;
  margin-left: auto;
  margin-right: auto;
}

.settings_container .loader img {
  margin: 15px;
  width: 64px;
}

.settings_container .form-control-file {
  display: none !important;
}

.settings_container .form-inline {
  display: inline-block;
  margin-bottom: 10px;
}

.settings_container .form-inline.right {
  float: right;
}

.settings_container .form-inline input[type=checkbox] {
  position: relative;
  top: 2px;
}

.settings_container .floating {
  margin-bottom: -5px;
}

.settings_container .floating input[type=checkbox] {
  float: left;
  margin-right: 5px;
  height: 12px;
}

.settings_container #theme {
  width: 100%;
}

.settings_container .form-inline label {
  font-weight: initial;
  margin-right: 10px;
}

.settings_container .form-inline .long {
  width: 575px;
}

.settings_container table {
  clear: both;
}

.settings_container a {
  text-decoration: none;
  background-color: transparent;
}

.settings_container table .form-control {
  display: inline;
  font-size: 10px;
  max-width: 75px;
  height: 24px;
  padding: 3px 6px;
}

.settings_container th .form-control {
  margin-bottom: 4px;
}

.settings_container table button {
  background: none;
  border: none;
  font-size: 22px;
  opacity: .8;
  transition: opacity .3s ease;
}

.settings_container table button:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

.settings_container table td .checkbox {
  height: 15px;
}

.settings_container .tier_name {
  float: left;
  margin-left: 0px;
  margin-bottom: 15px;
  margin-top: 25px;
  font-size: 15px;
  height: 23px;
  padding: 5px;
  max-width: 245px;
}

.settings_container .remove_tier {
  position: relative;
  top: 4px;
  background: none;
  border: none;
  font-size: 22px;
  opacity: .8;
  transition: opacity .3s ease;
}

.settings_container .remove_tier:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

.settings_container tfoot td {
  border: none;
  text-align: left;
  padding-left: 0px;
}

.settings_container .add {
  font-size: 16px;
}

.settings_container .add i {
  color: #eee;
}

.settings_container .add:hover {
  color: #fff;
}

.settings_container .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}

.settings_container .nav-tabs {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 1rem;
}

.settings_container .nav-link {
  display: block;
  padding: .5rem 1rem;
}

.settings_container .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.settings_container .nav-tabs .nav-link.active {
  border-color: #eeeeee #eeeeee rgb(68, 68, 68)
}

.settings_container .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.settings_container .tab-content {
  margin: 0px 15px;
  height: 75vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.settings_container .tab-content canvas {
  background-color: #ddd;
  padding: 10px;
  border-radius: 5px;
}

.settings_container span {
  font-size: 20px;
  font-weight: 600;
  color: #bbb;
  border-style: solid;
  border-width: 1px;
  text-align: center;
  padding: 4px;
}

.settings_container .error {
  border: none;
  color: #d00;
  font-size: 14px;
  position: absolute;
  right: 12px;
}

.settings_container h4.error {
  right: auto;
  left: 17px;
  bottom: -2px;
  font-size: 12px;
}

.settings_container button {
  border-width: 1px;
  border-radius: 4px;
  font-size: 18px;
  padding: 3px 10px;
  color: #eee;
  transition: color .3s ease;
}

.settings_container button:hover {
  color: #fff;
  transition: color .3s ease;
}

.settings_container button.red {
  background: linear-gradient(to bottom, #e30, #c00);
  border-color: #c00;
}

.settings_container button.grey {
  background: linear-gradient(to bottom, #999, #8d8d8d);
  border-color: #8d8d8d;
  margin-top: 15px;
  margin-left: 0px;
}

.settings_container .paymentMethods table {
  width: 100%;
  border: none;
}

.settings_container .paymentMethods table tr {
  border: none;
}

.settings_container .paymentMethods table td, th {
  text-align: left;
}

.settings_container .paymentMethods table td a {
  margin-right: 10px;
  color: #11a;
  transition: color .3s ease;
}

.settings_container .paymentMethods table td a:hover {
  color: #55f;
  text-decoration: underline;
  transition: color .3s ease;
}

.settings_container .paymentMethods table td span {
  border: none;
  display: inline;
  font-size: 12px;
  font-weight: normal;
  color: #777;
}

.settings_container hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border-color: #aaa;
}

.settings_container .btn {
  background-color: #999;
  transition: background .3s ease;
}

.settings_container .btn:hover {
  background-color: #aaa;
  transition: background .3s ease;
}

.settings_container tags-input {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  margin-top: 1px;
  padding-top: 5px;
  padding-bottom: 8px;
  padding-left: 15px;
}

.settings_container tags-input input {
  color: #333 !important;
  margin-top: 1px;
  margin-bottom: -3px;
  font-size: 12px;
  min-width: 30px;
}

.settings_container tags-input input:-ms-input-placeholder {
  color: #999 !important;
  text-decoration: none;
}

.settings_container tags-input input::placeholder {
  color: #999 !important;
  text-decoration: none;
}

.settings_container tags-input .tag-list {
  margin-bottom: -10px;
  margin-left: -10px;
  float: left;
}

.settings_container tags-input li {
  font-size: 12px !important;
  background-color: #ccc;
  padding: 0px;
  padding-left: 5px;
  padding-bottom: 1px;
  margin-top: 1px;
  box-shadow: none;
  display: inline-block;
}

.settings_container tags-input ti-tag-item {
  font-size: 12px !important;
}

.settings_container tags-input ng-include {
  margin: 0px;
  padding: 0px;
  padding-right: 5px;
  font-size: 12px !important;
}

.settings_container tags-input ng-include a {
  color: #333 !important;
  font-size: 12px !important;
}

.settings_container tags-input span {
  border: none;
  font-size: 14px;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
}

.settings_container tags-input .autocomplete {
  margin-top: 5px;
  z-index: 999999999999;
}

.settings_container tags-input .autocomplete .suggestion-list {
  width: 300px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow: hidden;
  position: absolute;
  background-color: rgba(200, 200, 200, .7);
  border-radius: 2px;
  box-shadow: 2px 2px 5px #111;
  z-index: 999999999999;
}

.settings_container tags-input .autocomplete .suggestion-item {
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  background: transparent;
  box-shadow: none;
  width: 100%;
  border-radius: 0px;
}

.settings_container tags-input .autocomplete .suggestion-item.selected {
  color: #000;
  background-color: rgba(128, 128, 128, .9);
}

.settings_container tags-input .autocomplete .suggestion-item.selected em {
  color: #000;
  background-color: #eee;
}

.settings_container tags-input .autocomplete .suggestion-item em {
  color: #000;
  background-color: #fdd;
}

.settings_container tags-input .autocomplete .selected::after {
  border: none;
}

.settings_container.site_images .buttons {
  padding-top: 24px;
}

.settings_container.site_images img {
  width: 92px !important;
  height: 92px !important;
  object-fit: contain;
}

.settings_container.site_images .btn {
  margin-bottom: 12px;
  min-width: 96px;
  font-weight: bold;
  background-color: #ccc;
  transition: background-color .3s ease;
}

.settings_container.site_images .btn:hover {
  background-color: #ddd;
}

.settings_container textarea {
  width: 100%;
  border-color: #ccc;
  border-radius: 4px;
  padding: 5px 10px;
}

.cclogo {
  width: auto !important;
  height: auto !important;
  max-height: 20px;
  border-width: 1px;
  border-color: #ddd;
  border-style: solid;
  border-radius: 4px;
  margin-right: 16px;
}

tiers {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: 5.5vw;
}

tiers .form-group {
  position: absolute;
  right: 0px;
  margin-bottom: 0px;
}

tiers .form-control {
  float: left;
  width: 18vw;
}

tiers button {
  background: none;
  border: none;
  color: #ddd;
  font-size: 2vw;
  padding-top: 1vw;
  opacity: .8;
  transition: opacity .3s ease;
}

tiers button:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

tiers .resume-description {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  margin-left: -3.5vw;
}

tiers ul {
  padding: 0px;
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
  margin-bottom: 0;
}

tiers .rent-timer {
  font-size: 1.2vw;
  margin-top: 1rem;
}

tiers .tier-wrapper {
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -ms-flex-align: center;
      align-items: center;
}
tiers .tier-wrapper .tier-wrapper-btn-divider {
  font-size: 1.5vw;
}

hero .overlay .details tiers .tier-wrapper .tier-wrapper-btn-divider {
  margin-left: 1.5vw;
  text-shadow: 2px 2px 2px #111;
}

tiers ul li,
tiers .tier-wrapper .btn.tier-button {
  float: left;
  font-size: 2vw;
  border-radius: 0.5vw;
  background-color: #e50914;
  color: #eee;
  margin-right: 1.5vw;
  margin-top: 0;
  margin-bottom: 0px;
  padding: 0.5vw 1.5vw;
  cursor: pointer;
  text-transform: capitalize;
  transition: background-color .3s ease, opacity .3s ease;
  line-height: 3vw;
  border-width: 1px;
  box-sizing: border-box;
  border-style: solid;
}
tiers .tier-wrapper .btn.tier-button {
  opacity: 1;
}
tiers .tier-wrapper .tier-superchannel-wrapper {
  margin-left: 1.5vw;
}

tiers ul li button {
  margin-right: -4.5vw;
  margin-left: -4.5vw;
}
tiers .tier-wrapper ul li.edit,
tiers .tier-wrapper ul li.edit > button {
  margin: 0!important;
}
tiers .tier-wrapper ul li.edit {
  vertical-align: middle;
  display: -ms-flexbox;
  display: flex;
}
tiers .tier-wrapper ul li.edit > button {
  padding: 0;
}

tiers ul li.disabled {
  opacity: .8;
  cursor: default;
  transition: opacity .3s ease;
}

tiers ul li.tier-button.not-available {
  opacity: .8;
  background-color: #333333!important;
  color: #939393!important;
  cursor: not-allowed;
}

tiers ul li.edit {
  background: none;
  border: none;
  padding: 0px;
  margin-top: calc(20px - 0.3vw);
  text-shadow: 2px 2px 2px #111;
}

tiers ul li:hover {
  background-color: #e50914;
  transition: background-color .3s ease;
}

tiers ul li.edit:hover {
  background: none;
}

tiers .noClick:hover {
  background-color: #e50914;
}

#tier_options {
  list-style-type: none;
  padding-left: 0px;
  padding-bottom: 40px;
}

#tier_options li {
  float: left;
  font-size: 16px;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  background-color: #e50914;
  border-color: #e50914;
  color: #eee;
  margin-left: 7px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background-color .3s ease;
}

#tier_options li:hover {
  background-color: #e50914;
  transition: background-color .3s ease;
}

.tiers_editor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: absolute;
  top: calc(100% + 1vh);
  width: 35vw;
  max-height: 32.5vh;
  bottom: auto;
  background: rgba(48, 48, 48, .9);
  border-radius: 4px;
  box-shadow: 2px 2px 5px #111;
  z-index: 1000;
  overflow: hidden;
}

/*.tiers_editor:before {*/
/*  content: '';*/
/*  margin-top: 20px;*/
/*}*/
.tiers_editor--list {
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex-direction: column!important;
      flex-direction: column!important;
  -ms-flex: 1;
      flex: 1;
  overflow-y: auto;
}
.tiers_editor--list li {
  background: none;
  border: none;
  cursor: auto;
  display: block;
  width: 100%;
  margin: 0;
}

.tiers_editor--list li:hover {
  background: none;
}

.tiers_editor--list li .form-control {
  width: 2vw;
  min-width: 2vw;
  height: 2vw;
  margin-right: 1vw;
  margin-top: 0;
  cursor: pointer;
  float: none;
}

.tiers_editor--list li .form-control:focus {
  border: none;
  box-shadow: none;
}

.tiers_editor--list li .form-group {
  position: relative;
  margin-bottom: 0vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.tiers_editor--list li .form-group label {
  margin: 0;
  font-size: 1.3vw;
  -ms-flex: 1;
      flex: 1;
  white-space: nowrap;
  display: inline-block;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.tiers_editor--actions {
  padding: 1vw;
}
.tiers_editor--search {
  position: relative;
  margin: 1vw;
  font-size: 1.1vw;
}
.tiers_editor--search input {
  width: 100%;
  background-color: transparent;
  padding: 5px 30px 5px 10px;
  color: #dddddd;
  font-size: 1.2em;
  border: 1px solid #555;
  border-radius: 4px;
}
.tiers_editor--search .fa.fa-search {
  position: absolute;
  right: 10px;
  top: 10px;
}

.tiers_editor--actions button.btn {
  border-color: transparent;
  font-size: 1.3vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tiers_editor--actions button.btn span {
  font-size: 1.3vw;
  display: inline-block;
  vertical-align: middle;
}

.tiers_editor--actions button.btn img {
  width: 1vw;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.datepicker {
  display: inline;
  max-width: 120px !important;
  padding: 0px 10px;
  height: 22px;
}

.moment-picker thead th {
  background-color: #eee;
  border: none;
}

.shift_left {
  margin-left: -115px;
}

.growl-container.growl-fixed.top-right {
  top: 6vw !important;
  right: 1vw !important;
}

.ng-confirm-box-p {
  min-width: 320px;
  margin-left: auto !important;
  margin-right: auto !important;
  float: initial;
}

.ng-standard {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  float: initial;
}

.ng-wide {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  float: initial;
}

.ng-full-wide {
  width: 98vw;
  height: calc(98vh - 50px);
  margin-left: auto;
  margin-right: auto;
  float: initial;
}

.top .ng-confirm-box {
  margin-top: 25px !important;
}

.ng-wider {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  float: initial;
}

.ng-account {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  float: initial;
}

#userAccount_container .row {
  margin: 0px;
  margin-bottom: 12px;
}

#userAccount_container .row h3 {
  font-size: 16px;
  display: inline;
}

#userAccount_container .row a {
  position: absolute;
  right: 0px;
  color: #ccc;
}
#userAccount_container .row.extra-question-raw a {
  position: relative;
}

#userAccount_container .profile {
  width: 100%;
  font-size: 190px;
  line-height: 0px;
  text-align: center;
}

#userAccount_container .profile i {
  color: #ddd;
}

#userAccount_container th, td {
  font-size: 10px;
}

#userAccount_container .error {
  display: block;
  font-size: 10px;
  color: #d11;
}

#userAccount_container button,
.add-scene-modal button {
  background-color: #ccc;
  border-radius: 3px;
  font-weight: bold;
  text-align: center !important;
  transition: background-color .3s ease;
}
.add-scene-modal .form-group input {
  box-shadow: none!important;
  border: 1px solid #ccc!important;
}
.add-scene-modal button.btn-white {
  background-color: #fff;
  border: 1px solid #ccc;
}

#userAccount_container button:hover,
.add-scene-modal button:hover {
  background-color: #ddd;
}
.add-scene-modal .loader-wrapper {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  left: 0;
  top: 0;
  background: rgba(238, 238, 238, .8);
}
.add-scene-modal .error {
  color: #ff0000!important;
}
.add-membership {
  margin: 20px 0;
}
.add-membership__form h5 {
  margin-bottom: 10px;
}
.add-membership__form-row a {
  margin-left: 10px;
}
.add-membership .membership-added h5 {
  color: #1358bf!important;
}

#userAccount_container .card-type-icon {
  display: inline-block;
  position: relative;
  top: 0px;
  left: -12px;
  background-size: cover;
}

navigation nav {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .6) 40%, rgba(0, 0, 0, 0));
  position: fixed!important;
  top: 0;
  left: 0;
  width: 100%;
  border: none !important;
  border-radius: 0px !important;
  margin: 0px !important;
  height: 8vw !important;
  z-index: 5000;
  transition: background .3s ease, margin .3s ease, height .3s ease;;
}

navigation nav.fullBackground {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .8) 65%, rgba(0, 0, 0, 0));
  height: 3vw !important;
  transition: background .3s ease, margin .3s ease, height .3s ease;;
  pointer-events: none;
}
navigation nav.fullBackground .nav.navbar-nav {
  margin: 0!important;
}
navigation nav.fullBackground .navbar-right {
  margin-top: 0!important;
}

navigation nav.ios-webkit-view {
  background: unset!important;
}

navigation ul {
  margin: 1vw 0px 0px 0px !important;
  pointer-events: auto;
}

navigation .navbar-header {
  margin-top: 1vw;
  pointer-events: auto;
}
navigation .navbar-header-ltr {
  margin-left: 4.5vw !important;
  float: left;
}
navigation .navbar-header-rtl {
  margin-right: 4.5vw !important;
  float: right;
}

navigation .navbar-nav-ltr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 2vw!important;
}

navigation .navbar-nav-ltr, navigation .navbar-nav-ltr li {
  float: left;
}
navigation .navbar-nav-rtl, navigation .navbar-nav-rtl li {
  float: right;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

navigation nav .navbar-toggle {
  font-size: 14px;
  font-weight: 600;
  float: left;
}

navigation nav .navbar-middle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: center;
      justify-content: center;
}

navigation nav .container-fluid {
  top: 1vw;
  padding: 0px !important;
  font-size: 1vw;
  min-height: 0vw;
  transition: top .3s ease;
  overflow: visible;
}
#navigation:before, #navigation:after {
  display: none!important;
}
#navigation {
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-pack: end;
      justify-content: end;
}
#navigation.mobile-view {
  -ms-flex-pack: end;
      justify-content: end;
}

navigation nav.fullBackground .container-fluid {
  display: -ms-flexbox;
  display: flex;
  top: 0vw;
  transition: top .3s ease;
}

navigation nav li a {
  color: #eee !important;
  transition: color .3s ease;
  text-shadow: 2px 2px 2px #111 !important;
  line-height: 1!important;
  padding: 0 10px!important;
}

navigation nav li:last-child a {
  padding: 0 20px 0 10px!important;
}

navigation nav li a.bold {
  font-weight: 600;
}

navigation nav li a:hover {
  background: transparent !important;
  color: #bbb !important;
  transition: color .3s ease;
}

navigation nav li a:focus {
  background: transparent !important;
  transition: color .3s ease;
}

navigation nav .navbar-right {
  margin-top: 1vw;
  line-height: 1vw;
  pointer-events: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
navigation nav .navbar-right-ltr {
  margin-right: 5.5vw;
}
navigation nav .navbar-right-rtl {
  margin-left: 5.5vw;
  float: left!important;
}

navigation nav .navbar-collapse.mobile {
  position: absolute;
  left: 40px !important;
  top: 10vw;
  z-index: 20000;
  font-size: 14px;
  background: rgba(32, 32, 32, .8);
}

navigation .description {
  display: inline-block;
  position: relative;
  top: 2vw;
  opacity: 1;
  transition: opacity .3s ease, top .3s ease;;
}
navigation .description-ltr {
  left: 4.5vw;
}
navigation .description-rtl {
  right: 4.5vw;
}

navigation .fullBackground .description {
  top: -1.5vw;
  opacity: 0;
  transition: opacity .3s ease, top .3s ease;
}

navigation .description span {
  color: #fff;
  width: 100%;
  cursor: text;
  font-size: 2vw;
  min-width: 2vw;
  min-height: 2vw;
  display: inline-block;
  text-shadow: 2px 2px 2px #111;
}

.editing navigation .editable:hover::after {
  content: '';
  width: calc(100% + 2vw);
  height: calc(100% + 2vw);
  border-color: #5af;
  border-style: solid;
  opacity: 0.4;
  position: absolute;
  top: -1vw;
  left: -1vw;;
}

.editing navigation .hasPlaceholder[placeholder]:empty:before {
  content: attr(placeholder);
  opacity: .3;
}

.editing navigation .hasPlaceholder[placeholder]:empty:focus:before {
  content: "";
}

copyright .description {
  display: inline-block;
  position: relative;
  opacity: 1;
  transition: opacity .3s ease, top .3s ease;;
}


copyright .description span {
  color: #fff;
  width: 100%;
  cursor: text;
  min-width: 1vw;
  min-height: 1vw;
  display: inline-block;
}

.editing copyright .editable:hover::after {
  content: '';
  width: calc(100% + 2vw);
  height: calc(100% + 2vw);
  border-color: #5af;
  border-style: solid;
  opacity: 0.4;
  position: absolute;
  top: -1vw;
  left: -1vw;;
}

.editing copyright .hasPlaceholder[placeholder]:empty:before {
  content: attr(placeholder);
  opacity: .3;
}

.editing copyright .hasPlaceholder[placeholder]:empty:focus:before {
  content: "";
}

browse {
  padding-bottom: 4vw;
  display: inline-block;
}

browse h4 {
  font-size: 32px;
  margin-top: 90px;
  margin-bottom: -65px;
  margin-left: 4.5vw;
}

.search-box-wrapper {
  padding: 0 10px;
}

search-box {
  position: relative;
  padding: 0 10px;
}

search-box.shift_right {
  position: relative;
  right: -1vw;
}

search-box i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  text-shadow: 2px 2px 2px #333;
  color: #eee;
  pointer-events: none;
}

search-box div.search-box {
  position: relative;
}

search-box i.fa-times {
  right: 10px;
  left: unset;
  cursor: pointer;
  opacity: 0;
  transition: .3s opacity;
}

search-box i.fa-times.show-icon {
  opacity: 1;
}
search-box i.fa-times.active {
  pointer-events: all;
}

search-box input {
  width: 3vw;
  box-sizing: border-box;
  border: none;
  font-size: 1vw;
  background-color: transparent;
  background-repeat: no-repeat;
  padding: 0.15vw .2vw 0.15vw 4vw;
  transition: width 0.4s ease-in-out, border 0.4s ease-in-out, background-color 0.4s ease-in-out;
  color: #ddd;
  cursor: pointer;
}

search-box input.shift {
  margin-right: 85px;
}

/*search-box input:focus {*/
/*  width: 22vw;*/
/*  background-color: rgba(0, 0, 0, .6);*/
/*  border: 1px solid #ccc;*/
/*  border-radius: .5vw;*/
/*  cursor: auto;*/
/*  padding: 0.15vw 2vw 0.15vw 4vw;*/
/*}*/

search-box input.focus {
  width: 10vw;
  background-color: rgba(0, 0, 0, .6);
  border: 1px solid #ccc;
  border-radius: .5vw;
  cursor: auto;
  padding: 4px 2.5vw 4px 2.5vw;
}

#no_results {
  margin-left: 5.5vw;
  display: inline-block;
}
#no_results[dir='rtl'] {
  margin-left: auto;
  margin-right: 5.5vw;
}


.dropdown .dropdown-menu {
  transition: max-height 0.3s ease-in, opacity 0.2s ease-in;
  max-height: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}

.dropdown.open .dropdown-menu {
  transition: max-height 0.3s ease-in, opacity 0.2s ease-in;
  visibility: visible;
  max-height: 60vh;
  opacity: 1;
}

#userPurchaseHistory_container table {
  width: 100%;
}

#userPurchaseHistory_container tr {
  background: transparent;
}

#userPurchaseHistory_container td {
  text-align: left;
  padding: 0px 5px !important;
}

#userDevices_container {
  overflow-x: auto;
}

#userDevices_container h1 {
  font-size: 28px;
  padding-bottom: 40px;
}

#userDevices_container table {
  width: 100%;
}

#userDevices_container td {
  text-align: left;
}

#userDevices_container input[type=text].form-control {
  min-width: 150px;
}

#userDevices_container button {
  border-width: 1px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 20px;
  padding: 1px 8px;
  color: #eee;
  transition: color .3s ease;
  background: linear-gradient(to bottom, #999, #8d8d8d);
  border-color: #8d8d8d;
  margin-left: 0px;
}

#userDevices_container button:hover {
  color: #fff;
  transition: color .3s ease;
}

#userDevices_container .form-control {
  padding: 1px 9px;
  height: 26px;
}

#userSubscriptions_container h1 {
  font-size: 28px;
  padding-bottom: 40px;
}

#userSubscriptions_container table {
  margin-left: 0px;
  float: left;
}

#userSubscriptions_container td {
  text-align: left;
  vertical-align: middle;
  padding: 0px 20px 0px 0px !important;
  line-height: 2em;
  border: none;
}

#userSubscriptions_container .buttons {
  float: right;
  max-width: 100px;
  text-align: right;
}

#userSubscriptions_container button {
  border: none;
  border-radius: 3px;
  background-color: #ccc;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-left: 0px;
  margin-top: 5px;
  margin-bottom: 3px;
  padding: 4px 12px;
  display: inline-block;
  width: 100px;
  transition: background-color .3s ease;
}

#userSubscriptions_container button:hover {
  background-color: #ddd;
}

#userPurchaseHistory_container h1 {
  font-size: 28px;
  padding-bottom: 40px;
}

dir-pagination-controls {
  display: block;
  width: 100%;
  text-align: center;
}

dir-pagination-controls .pagination>li:first-child>a {
  background: transparent;
  border: none;
}

dir-pagination-controls .pagination>.disabled>a {
  background: transparent;
  border: none;
}

dir-pagination-controls .pagination>.disabled>a:hover {
  background: none;
}

dir-pagination-controls .pagination>.active>a {
  background: transparent;
  border: none;
  color: #ddd !important;
}

dir-pagination-controls .pagination>.active>a:hover {
  background: none;
}

dir-pagination-controls .pagination>.active>a:focus {
  background: none;
}

dir-pagination-controls .pagination>li>a {
  background: transparent;
  border: none;
  color: #aaa !important;
  transition: color .3s ease;
}

dir-pagination-controls .pagination>li>a:hover {
  background: none;
  color: #fff !important;
  transition: color .3s ease;
}

dir-pagination-controls .pagination>li>a:focus {
  background: none;
}

.slick-arrow.slick-disabled {
  opacity: 0;
  cursor: auto;
}

#paymentMethod {
  height: auto;
}

#paymentMethod h1 {
  font-size: 28px;
}

#paymentMethod a {
  color: #777;
}

#paymentMethod .paymentMethod {
  background-color: #ddd;
  border-radius: 5px;
  padding: 0px 20px;
  margin-bottom: 10px;
}

#paymentMethod .paymentMethod input {
  float: left;
  margin-top: 36px;
}

#paymentMethod .paymentMethod .card {
  display: inline-block;
  margin-left: 20px;
}

#paymentMethod .paymentMethod .card h1 {
  font-size: 20px;
  font-weight: 600;
}

#paymentMethod .paymentMethod .card h3 {
  margin-top: 0px;
  margin-bottom: 17px;
}

#paymentMethod .form-group {
  position: absolute;
  right: 12px;
  width: 16%;
  margin-bottom: 20px;
}

#paymentSection table {
  width: 100%;
  max-width: 400px;
  margin-bottom: 12px;
}

#paymentSection table td {
  border: none;
}

#paymentSection table td label {
  width: 100%;
  margin-bottom: 0px;
  text-align: right;
  font-size: 12px;
}

#paymentSection table td input.short {
  width: 33%;
  float: left;
  margin-right: 20px;
  z-index: 10;
  position: relative;
}

#paymentSection table td input.ng-invalid {
  border-color: #f11;
  border-width: 2px;
  border-left-width: 3px;
}

#paymentProviders img {
  width: 60px;
  background-color: #eee;
  border-radius: 3px;
  padding: 5px;
  margin-left: 5px;
  margin-right: 5px;
  display: inline-block;
}

#paymentForm .dropup {
  padding-bottom: 20px;
}

.storeCardCheckboxContainer {
  text-align: center;
}

.paymentError {
  font-size: 14px;
  font-weight: 800;
  color: #f11 !important;
  text-align: center;
}

logo a:hover {
  text-decoration: none;
}

logo #siteLogo {
  vertical-align: top;
  max-width: 15vw;
  max-height: 8vw;
  min-height: 7vw;
  object-fit: contain;
  object-position: 0% 0%;
  font-family: 'object-fit: contain; object-position: top;';
  transition: margin-top .3s ease, max-height .25s ease, min-height .3s ease;
}
logo .site-logo-ltr {
  margin-right: 1.5vw;
}
logo .site-logo-rtl {
  margin-left: 1.5vw;
}

logo a span {
  color: #eee !important;
  font-size: 3.2vw;
  font-weight: 600;
  padding: .5vw 1vw;
  margin-bottom: .5vw;
  border-style: solid;
  border-width: 2px;
  border-color: #eee;
  border-radius: 2px;
  background-color: rgba(32, 32, 32, .8);
  display: inline-block;
  transition: font-size .3s ease, padding .3s ease;
}

.fullBackground logo #siteLogo, logo.small #siteLogo {
  max-height: 2.5vw;
  min-height: 0vw;
}

.fullBackground logo a span, logo.small a span {
  font-size: 1.5vw;
  padding: .2vw .5vw;
  border-width: 1px;
  border-radius: 1px;
  transition: font-size .3s ease, padding .3s ease;
}

logo form {
  float: right;
  display: inline-block;
  position: relative;
  margin-right: 1.5vw;
  transition: top .3s ease;
}
[dir='rtl'] .logo-form {
  float: left;
}

.fullBackground logo {
  top: -2vw;
}

logo.small {
  top: -2vw;
}

logo .fileUpload {
  font-size: 20px;
  cursor: pointer;
  position: relative;
  margin-left: 5px;
  background-color: rgba(64, 64, 64, .6);
  color: #eee;
  padding: 0px 4px;
  border-radius: 3px;
  transition: background-color .3s ease;
}

logo .fileUpload:hover {
  background-color: rgba(32, 32, 32, 1);
  transition: background-color .3s ease;
}

logo .fileRemove {
  font-size: 20px;
  cursor: pointer;
  position: relative;
  background-color: rgba(64, 64, 64, .6);
  color: #eee;
  padding: 0px 4px;
  border-radius: 3px;
  transition: background-color .3s ease;
}

logo .fileRemove:hover {
  background-color: rgba(32, 32, 32, 1);
  transition: background-color .3s ease;
}

logo input {
  display: none !important;
}

.addCarouselContainer {
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: -50px;
}

.addCarousel {
  display: block;
  position: relative;
  font-size: 50px;
  margin-right: 8px;
  width: 325px;
  height: 160px;
  overflow: hidden;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  border-color: #bbb;
  color: #eee;
  transition: border-color .3s ease;
}

.addCarousel:hover {
  text-decoration: none;
  border-color: #fff;
  transition: border-color .3s ease;
}

.addCarousel img {
  position: absolute;
  top: 10px;
  left: -130px;
  height: 110px;
}

.addBanner img {
  position: absolute;
  top: 10px;
  left: -325px;
  height: 110px;
}

.addCarousel i {
  position: absolute;
  top: 20px;
  left: calc(50% - 42px);
  font-size: 85px;
  opacity: .6;
  color: #eee;
  transition: opacity .3s ease;
}

.addCarousel:hover i {
  opacity: .9;
  transition: opacity .3s ease;
}

.addCarousel h1 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: -5px;
  font-size: 25px;
  font-weight: 600;
}

.addCarousel .gradient_left {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, .9) 0,transparent 100%);
}

.addCarousel .gradient_right {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, .9) 0,transparent 100%);
}

.ng-confirm {
  z-index: 6050 !important;
}

.ng-confirm .ng-confirm-title {
  text-transform: capitalize;
}

.ng-confirm.ng-confirm-dark .ng-confirm-bg, .ng-confirm.ng-confirm-black .ng-confirm-bg {
  background-color: #111;
  opacity: .6;
}

.ng-confirm-buttons button {
  background-color: #cdcdcd !important;
  transition: background .3s ease;
}

.ng-confirm-buttons button:hover {
  background-color: #d7d7d7 !important;
  transition: background .3s ease;
}

.ng-confirm-buttons button.left {
  position: absolute;
  left: 12px;
}

.ng-confirm-content-pane {
  min-height: 42px;
}
.ng-confirm.ng-confirm-dark .ng-confirm-box, .ng-confirm.ng-confirm-black .ng-confirm-box {
  background-color: #eee;
  overflow: unset !important;
}

.ng-confirm.ng-confirm-dark .ng-confirm-box *:not(input):not(textarea):not(select):not(option), .ng-confirm.ng-confirm-black .ng-confirm-box *:not(input):not(textarea):not(select):not(option) {
  color: #111;
}

.ng-confirm .loader {
  position: absolute;
  left: calc(50% - 32px);
  top: calc(50% - 32px);
  width: 64px !important;
}

.ng-confirm.ng-confirm-dark .ng-confirm-box .ng-confirm-buttons button, .ng-confirm.ng-confirm-black .ng-confirm-box .ng-confirm-buttons button {
  font-size: 13px;
  padding: 5px 8px;
}

.force {
  opacity: 1 !important;
  display: block !important;
}

.disabled a {
  pointer-events: none !important;
}

.grid {
  position: relative;
  top: 9vw;
  min-height: 17vw;
  margin-bottom: 16vw;
}

.grid.admin {
  top: 11vw;
}

.grid #tags {
  margin-left: 5.5vw;
  margin-bottom: 1vw;
}

.grid #tags .tag {
  position: relative;
  display: inline-block;
  margin-right: 1vw;
  font-size: 1.5vw;
}

.grid #tags .tag h5 {
  display: inline-block;
  width: 15vw;
  font-size: 1.5vw;
}

.grid #tags .dropdown-menu {
  background-color: rgba(32, 32, 32, .8);
}

.grid #tags .dropdown-menu .dropdown-item {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
}

.grid #tags .dropdown-menu .dropdown-item:hover, .grid #tags .dropdown-menu .dropdown-item.select {
  background-color: rgba(128, 128, 128, .8);
}

.grid .search-loader-wrapper > img {
  display: block;
  margin: 0 auto;
  width: 64px;
  height: 64px;
}

.grid slick-grid.hidden {
  display: none;
}

slick-grid {
  display: block!important;
  margin-bottom: 100px!important;
  width: 100vw!important;
  padding-top: 1vw!important;
}

slick-grid .topleft_buttons {
  left: 2vw!important;
}

slick-grid .slick-wrapper {
  position: relative!important;
  display: block!important;
  margin-bottom: 4.5vw!important;
  z-index: 0!important;
  transition: z-index .0s!important;
  transition-delay: .3s!important;
}

slick-grid .slick-wrapper:hover {
//  z-index: 1000;
  transition: z-index .0s!important;
  transition-delay: .3s!important;
}

slick-grid .bottomright_buttons {
  z-index: 0!important;
}

slick-grid .slick-track,
.tags-search-result-row-title {
  margin-left: 5.2vw!important;
  margin-right: 5.2vw!important;
  z-index: 10!important;
}

slick-grid .slick-slide {
  display: block!important;
}

slick-grid item-details {
  margin-left: 0px!important;
}

hero {
  position: relative;
  display: block;
}

hero img {
  width: 100%;
}

hero video {
  width: 100%;
}

hero .placeholder {
  height: 40vw;
  object-fit: cover;
}

hero .overlay {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #111, transparent 6%);
}

hero .overlay .details {
  position: absolute;
  bottom: 9vw;
  width: 100%;
}
hero .overlay .details-ltr {
  padding-left: 4.5vw;
}
hero .overlay .details-rtl {
  padding-right: 4.5vw;
}

hero item-picker.bottom {
  position: relative;
  bottom: -20px;
}

.editing hero .overlay .hasPlaceholder[placeholder]:empty:before {
  content: attr(placeholder);
  opacity: .3;
}

.editing hero .overlay .hasPlaceholder[placeholder]:empty:focus:before {
  content: "";
}

.editing hero .overlay .editable:hover::after {
  content: '';
  width: calc(100% + 2vw);
  height: calc(100% + 2vw);
  border-color: #5af;
  border-style: solid;
  opacity: 0.4;
  position: absolute;
  top: -1vw;
  left: -1vw;;
}

.editing hero .overlay .details h1.editable:hover::after {
  height: calc(100% + 2vw - 30px);
  top: calc(20px - 1vw);
}

hero .overlay .details h1 {
  display: inline-block;
  font-size: 3.5vw;
  font-weight: 600;
  text-shadow: 3px 3px 3px #111;
  min-width: 2vw;
}

hero .overlay .details .edit {
  background: none;
  border: none;
  font-size: 2vw;
  margin-left: 1vw;
  margin-bottom: -0.1vw;
  position: relative;
  top: -0.35vw;
  text-shadow: 2px 2px 2px #111;
  color: #ddd;
  opacity: .8;
  transition: color .3s ease;
}

hero .overlay .details .edit:hover {
  color: #fff;
  transition: color .3s ease;
}

hero .overlay .details tiers {
  margin-left: 0px;
  margin-top: 5px;
}

hero .overlay .details tiers li,
hero .overlay .details .btn.tier-button {
  box-shadow: 2px 2px 2px #111;
}

hero .overlay .details tiers li.edit {
  display: none;
}

hero .overlay .details tiers .dropdown-menu {
  box-shadow: 2px 2px 1px #111;
}

hero .overlay .mini-controls {
  position: absolute;
  bottom: 8vw;
}
hero .overlay .mini-controls-ltr {
  right: 5.5vw;
}
hero .overlay .mini-controls-rtl {
  left: 4vw;
}

hero .overlay .mini-controls img {
  float: left;
  display: block;
  width: 4vw;
  height: 2vw;
  cursor: pointer;
  position: absolute;
  right: 6vw;
  bottom: 1.7vw;
  opacity: .4;
}

hero .overlay .mini-controls img[dir='rtl'] {
  right: auto;
  left: 6vw;
}


hero .overlay .mini-controls .shadow {
  opacity: .2;
  right: calc(6vw - 1px);
  bottom: calc(1.7vw - 1px);
}

hero .overlay .mini-controls button {
  border: none;
  background: transparent;
  border-radius: 50%;
  font-size: 4.5vw;
  color: #fff;
  text-shadow: 2px 2px 2px #111;
  padding: 0px;
  width: 5vw;
}
hero .overlay .details tiers ul li {
  margin-right: 0vw;
}

hero .overlay .details tiers ul li .dropdown-item {
  background-color: initial;
}

hero .overlay .background {
  position: absolute;
  bottom: 9vw;
}
hero .overlay .background-ltr {
  right: 12vw;
}
hero .overlay .background-rtl {
  left: 12vw;
}


hero .overlay .background .edit {
  background: rgba(32, 32, 32, .8);
  font-size: 1.5vw;
  color: #eee;
  box-shadow: 2px 2px 2px #111;
  transition: color .3s ease;
}

hero .overlay .background .edit:hover {
  color: #eee;
  transition: color .3s ease;
}

hero .right {
  display: block;
  position: absolute;
  bottom: -2vw;
  min-width: 32vw;
}
hero .right-ltr {
  right: 12vw;
}
hero .right-rtl {
  left: 12vw;
}


hero file-editor .files .details {
  position: relative;
  padding-left: 10px;
  top: 0vw;
}

item-picker {
  position: relative;
  z-index: 1000;
}

item-picker .rules-editor-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(100%, -60%);
}

item-picker h1 {
  color: #eee;
}

item-picker h1.placeholder {
  opacity: .6;
  height: auto;
}

item-picker h1.hiding {
  opacity: .6;
}

item-picker .search .placeholder {
  margin-left: -2vw;
}

item-picker .item-select {
  vertical-align: baseline;
}

item-picker .item-select .dropdown-menu {
  background: rgba(32, 32, 32, .9);
  font-size: 1.5vw;
  max-height: 19vw;
  width: 40vw;
  margin-top: 1.2vw;
  overflow-y: auto;
  overflow-x: hidden;
}

item-picker .item-select .dropdown-toggle {
  box-shadow: none !important;
  cursor: text;
}

item-picker .item-select .dropdown-item {
  padding: 0.5vw 1vw;
  cursor: pointer;
  text-overflow: ellipsis;
  width: 100%;
  color: #eee;
  overflow: hidden;
  white-space: nowrap;
}

item-picker .dropdown-item:hover {
  background-color: rgba(128, 128, 128, .9);
}

item-picker .item-select .dropdown-item.select {
  background-color: rgba(128, 128, 128, .9);
}

item-picker button {
  background: none;
  border: none;
  color: #eee;
  opacity: .7;
  font-size: 2.5vw;
  transition: opacity .3s ease;
}

item-picker button:hover {
  opacity: 1;
}

item-picker button i {
  top: -.3vw;
  position: relative;
}

.publish {
  text-align: center;
}

.publish h2 {
  font-size: 22px;
  text-shadow: none;
}

.publish a {
  color: #000;
}

#purchase {
  margin-top: -2px;
  /*overflow: hidden;*/
  overflow: visible;
}

#purchase .max_resolution {
  margin-bottom: 15px;
}

#purchase .trial {
  margin-bottom: 15px;
}

#purchase .trial p {
  font-size: 12px;
  line-height: 13px;
}

#purchase .promo-code .promo-code-message {
  margin-bottom: 8px;
  font-weight: bold;
}
#purchase .promo-code .promo-code-controls {
  margin-bottom: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

#purchase .promo-code .promo-code-controls > * {
  width: 100%;
  border-radius: 4px;
  padding: 6px;
}
#purchase .promo-code .promo-code-controls input,
#purchase .promo-code .promo-code-controls button {
  border-width: 1px;
  border-style: solid;
}

#purchase ul {
  display: inline-block;
  list-style-type: none;
  padding: 0px;
  width: 100%;
}

#purchase ul.top {
  margin-top: -5px;
}

#purchase ul li {
  display: inline-block;
  float: left;
  width: 33.3%;
  padding: 2px;
}

#purchase ul li button {
  width: 100%;
  background: none;
  border-style: solid;
  border-color: #e50914;
  border-radius: 4px;
  color: #e50914;
  padding: 6px;
}

#purchase ul li button.current {
  background-color: #ecc;
}

#purchase ul li button.selected {
  background-color: #e50914;
  color: #eee;
}

#purchase ul li span {
  display: block;
  width: 100%;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

#purchase h3 {
  margin-top: 0px;
  margin-bottom: 5px;
}

#purchase .dropdown {
  margin-bottom: 15px;
}

#purchase .dropdown button {
  width: 100%;
  background-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  height: 36px;
  color: #676767;
  font-size: 15px;
  font-weight: 300;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

#purchase .dropdown button .icon {
  float: left;
  opacity: .7;
  margin-top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

#purchase .dropdown button .number {
  float: left;
  margin-top: 0;
  margin-left: 6px;
  opacity: .7;
}

#purchase .dropdown button .new {
  float: left;
  margin-top: 0px;
  margin-left: 6px;
  opacity: .7;
}

#purchase .dropdown button .caret {
  position: absolute;
  top: 16px;
  right: 14px;
  font-size: 18px;
  opacity: .7;
}

.card-type-icon {
  height: 23px;
  width: 32px;
  position: absolute;
  right: 32px;
  top: 7px;
  background: url(https://cardjs.co.uk/img/cards.png) 0 23px no-repeat;
}

.card-type-icon.visa {
  background-position: 0px 0px;
}

.card-type-icon.mc, .card-type-icon.mastercard {
  background-position: -32px 0px;
}

.card-type-icon.american-express, .card-type-icon.amex {
  background-position: -64px 0px;
}

.card-type-icon.discover {
  background-position: -96px 0px;
}

.card-type-icon.diners {
  background-position: -128px 0px;
}

.card-type-icon.jcb {
  background-position: -160px 0px;
}

#purchase .dropdown .dropdown-menu button {
  border: none;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

#purchase .cardjs {
  position: relative;
  height: 36px;
  background-color: #fff;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
}

#purchase .cardjs .icon {
  float: left;
  opacity: .5;
  margin-top: 8px;
  margin-left: 5px;
}

#purchase .cardjs input {
  font-size: 15px;
  margin-left: 6px;
  margin-top: 5px;
  width: calc(100% - 40px);
  border: none;
}

#purchase .expiry-wrapper {
  background-color: #fff;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  border-color: #ddd;
  padding-left: 40px;
}

#purchase .expiry-wrapper select {
  border: none;
}

#purchase .expiry-wrapper select:focus {
  box-shadow: none;
}

#purchase #adyen-encrypted-form #adyen-pay {
  display: none;
}

#purchase .email {
  margin-top: 15px;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,.7), inset 0 1px 0 rgba(255,255,255,.7);
  width: 100%;
  height: 36px;
}

#purchase .email i {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 15px;
  opacity: .5;
}

#purchase .email input {
  position: absolute;
  width: 100%;
  font-size: 15px;
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 36px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fdfdfd;
  box-sizing: border-box;
  padding: 0;
  padding-left: 36px;
  transition: border-color .15s linear,box-shadow .15s linear;
}

#purchase .email input:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

#purchase .payment-checkbox,
#purchase .marketing-checkbox,
#purchase .age-checkbox {
  margin-top: 13px;
  margin-bottom: 0px;
}

#purchase .payment-checkbox input {
  width: 16px;
  height: 16px;
  float: left;
  display: inline-block;
  margin: 0 5px 0 0;
}

#purchase .payment-checkbox label,
#purchase .marketing-checkbox label {
  font-weight: normal;
  display: inline;
}

#purchase .error {
  margin-top: 15px;
  margin-bottom: 0px;
  color: #d00;
  font-weight: bold;
}

#purchase .error span {
  color: #d00;
  cursor: pointer;
  text-decoration: underline;
}

#purchase .error span:hover {
  text-decoration: none;
}

#purchase #pay {
  margin-bottom: 15px;
  width: 100%;
  border-style: solid;
  border-color: #e50914;
  border-radius: 4px;
  background-color: #e50914;
  color: #eee;
  padding: 6px;
  transition: opacity .3s ease;
}

#purchase #pay img, #purchase .promo-code img {
  width: 18px;
  margin-right: 6px;
  opacity: 0;
  transition: opacity .3s ease;
}
#purchase .promo-code img {
  opacity: 1;
}

#purchase .disabled {
  cursor: not-allowed;
  opacity: .7;
  transition: opacity .3s ease;
}

#purchase input[disabled] {
  background-color: #fff;
}

#purchase #pay.disabled img {
  opacity: .7;
  transition: opacity .3s ease;
}

.url {
  margin-top: 20px;
}

.url span {
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 225px;
  display: inline-block;
}

.url i {
  position: absolute;
  right: 10px;
}

.embed h3 {
  margin-top: 0px;
}

.embed pre {
  margin-bottom: 0px;
  line-height: normal;
  width: 100%;
}

.embed pre.wrap {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.embed .col-sm-4 {
  margin-top: -5px;
  padding: 0px;
}

.embed span {
  border: none;
  font-size: 12px;
  margin-left: 4px;
  margin-right: 4px;
  margin-top: -4px;
  line-height: 0px;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  transition: opacity .3s ease;
}

.embed span:hover {
  opacity: .7;
  transition: opacity .3s ease;
}

.ui-tour-backdrop {
  background-color: rgba(16, 16, 16, .9);
  z-index: 6000;
}

.tour-step-inner i {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  transition: color .3s ease;
}

.tour-step-inner i:hover {
  color: #777;
  transition: color .3s ease;
}

.tourStep.left {
  left: -1vw !important;
  z-index: 6000 !important;
}

.tourStep.top {
  top: -15px !important;
}

.tourStep a {
  color: #333;
  text-decoration: underline;
}

.popover-navigation {
  display: none;
}

.popover-title {
  color: #333;
}

.popover-content {
  color: #333;
  padding: 5px 8px;
}

.ng-confirm-buttons .center {
  width: 100px;
  margin-right: 110px !important;
  text-align: center;
}

.ng-confirm-buttons .accept {
  margin-right: 40vw !important;
}

.btn.dark {
  color: #000;
  background: #ccc;
  font-size: 13px;
  margin-top: 12px;
  padding: 5px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-tabs {
  border: none !important;
}

.nav-tabs>li>a {
  text-decoration: none;
}

.nav-tabs>li>a:hover {
  color: #777 !important;
}

.tab-content #website.active {
  border-radius: 0px 2px 2px 2px;
}

.panel-body .loader {
  position: relative;
  top: auto;
  left: auto;
}

.daterangepicker {
  color: #333;
  z-index: 2147483661;
}

.google-visualization-atl.container {
  margin-left: -15px;
}

.google-visualization-atl.container .border {
  border: none;
}

.well {
  background-color: #fff;
}

.well .loader {
  margin-left: auto;
  margin-right: auto;
}

.well .back {
  position: absolute;
  top: 10px;
  background: #fff;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  color: #777 !important;
  opacity: .8;
  transition: opacity .3s ease;
}

.well .back:hover {
  opacity: 1;
  transition: opacity .3s ease;
}

.well .back i {
  color: #777 !important;
}

.dataError {
  text-align: center;
  margin-left: 0px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: bold;
}

#territoryBlocked {
  margin-top: 45%;
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
}

tags, tv-show {
  position: absolute;
  top: -1vw;
  left: 5.5vw;
}

tags[dir='rtl'], tv-show[dir='rtl'] {
  right: 5.5vw;
  left: auto;
}

tags label, tv-show label {
  font-weight: normal;
}

tags .dropdown, tv-show .dropdown {
  display: inline-block;
}
.browse-page-grid .dropdown .dropdown-toggle.ffa {
  height: 26px;
  display: block;
  margin-left: 0;
  line-height: 24px;
  padding-left: 10px;
  padding-right: 40px;
  border: 1px solid #fff;
  position: relative;
  min-width: 160px;
}

.browse-page-grid .dropdown .dropdown-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}

.browse-page-grid .dropdown .dropdown-item {
  width: 100%;
}
.browse-page-grid .dropdown .dropdown-toggle.ffa:after {
  content: '';
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  right: 9px;
  position: absolute;
  top: 5px;
}

.browse-page-grid .dropdown .dropdown-toggle.ffa.loading:after {
   display: none;
}

.loader{
  height: inherit;
  display: block;
}
.genres-loader{
  height: 16px;
  width: 16px;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
}

.browse-page-grid .browse-heading-actions {
  padding: 0 5.2vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.browse-heading-actions tags, .browse-heading-actions sorting {
  position: static;
}
.browse-page-grid .dropdown.open .dropdown-toggle.ffa:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 8px;
}
.browse-page-grid .browse-heading-actions .dropdown-menu::-webkit-scrollbar {
  -webkit-appearance: none;
}
.browse-page-grid .browse-heading-actions .dropdown-menu::-webkit-scrollbar:vertical {
  width: 6px;
}
.browse-page-grid .browse-heading-actions .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

tags span, tv-show span {
  text-decoration: underline;
  cursor: pointer;
  margin-left: 5px;
}

tags span.noclick, tv-show span.noclick {
  cursor: auto;
  text-decoration: none;
}

tags .dropdown .dropdown-menu, tv-show .dropdown .dropdown-menu {
  background: rgba(33, 33, 33, .9);
  z-index: 1000;
  overflow: auto;
}

tags .dropdown .dropdown-item, tv-show .dropdown .dropdown-item {
  display: block;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  color: #eee !important;
}

tags .dropdown .dropdown-item:hover, tv-show .dropdown .dropdown-item:hover {
  text-decoration: none;
  background-color: rgba(77, 77, 77, .9);
}


child-items {
  font-size: 1.5vw;
  margin-left: 2vw;
  max-width: 18vw;
  float: left;
  position: absolute;
  top: 20px;
  right: 5vw;
}
body.fullwindow item-details child-items,
body.ios-webview-fullscreen item-details child-items,
item-details:-webkit-full-screen child-items,
item-details.fullscreen child-items {
  right: 11vw;
}
body.fullwindow item-details child-items,
body.ios-webview-fullscreen item-details child-items,
item-details:-moz-full-screen child-items,
item-details.fullscreen child-items {
  right: 11vw;
}
body.fullwindow item-details child-items,
body.ios-webview-fullscreen item-details child-items,
item-details:-ms-fullscreen child-items,
item-details.fullscreen child-items {
  right: 11vw;
}
body.fullwindow item-details child-items,
body.ios-webview-fullscreen item-details child-items,
item-details:fullscreen child-items,
item-details.fullscreen child-items {
  right: 11vw;
}
child-items[dir='rtl'] {
  float: right;
  margin-left: auto;
  margin-right: 2vw;
  right: auto;
  left: 5vw;
}

child-items .episodes {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1vw;
  text-shadow: 2px 2px 5px #111;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
margin-top: -2px!important;
}

child-items .episodes .item-type-config {
  -ms-flex: 1;
      flex: 1;
}

child-items span {
  cursor: pointer;
  font-size: 1.1em;
}
child-items span.sort-episodes {
  margin-left: 1vw;
}

child-items .episodes span.episodes-number {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: transparent!important;
  text-shadow: 2px 2px 5px #111;
  box-shadow: 2px 2px 5px #111;
  line-height: 3vw;
  padding: 0.5vw 1.5vw;
  box-sizing: border-box;
}

child-items .episodes span.episodes-number > i {
  margin-right: .5vw;
}

child-items .scroller {
  height: calc(100% - 2.5vw);
}

child-items ul {
  list-style-type: none;
  padding: 0px;
}

child-items ul li {
  margin-bottom: 1vw;
}

child-items ul li img {
  width: 100%;
  cursor: pointer;
}

child-items ul li label {
  display: block;
  position: relative;
  margin-top: -5vw;
  padding-top: 2vw;
  padding-right: 2vw;
  text-align: center;
  cursor: pointer;
  font-size: 1.5vw;
  font-weight: bold;
  width: 25vw;
  height: 5vw;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 30%, transparent 100%);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

child-items .scroller::-webkit-scrollbar {
  -webkit-appearance: none;
}

child-items .scroller::-webkit-scrollbar:vertical {
  width: 6px;
}

child-items .scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .3);
}

child-items .scroller::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .4);
}

child-items .slick-arrow {
  position: absolute;
  width: 100%;
  z-index: 300;
  font-size: 0px;
  border: none;
  margin: 0px;
  padding: 0px;
}
child-items .slick-prev {
  background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 0, transparent 100%);
}
child-items .slick-prev:before {
  z-index: 300;
  content: '\203A';
  font-size: 4vw;
  line-height: 0.7;
  display: inline-block;
  transform: rotate(-90deg);
  margin-top: 4px;
}
[dir='rtl'] child-items .slick-prev:before {
  transform: rotate(90deg);
}
child-items .slick-disabled {
  z-index: -1;
}
child-items .slick-next {
  top: 100%;
  background: none;
}
child-items .slick-next:before {
  content: '\2039';
  font-size: 4vw;
  line-height: 0.7;
  display: inline-block;
  transform: rotate(-90deg);
  margin: 0px;
  padding: 0px
}
[dir='rtl'] child-items .slick-next:before {
  transform: rotate(90deg);
}

sorting {
  position: absolute;
  top: -1vw;
  right: 5.5vw;
}
sorting[dir='rtl'] {
  right: auto;
  left: 5.5vw;
}

sorting div {
  text-decoration: dotted;
  cursor: pointer;
  margin-left: 5px;
}

.nopadding {
  padding: 0px !important;
}

file-editor-live-streams label {
  font-weight: normal;
  color: #ddd;
}

file-editor-live-streams input {
  background-color: rgba(33, 33, 33, .9) !important;
  border-color: rgba(77, 77, 77, .9) !important;
  color: #eee !important;
}

file-editor-live-streams .button_container {
  text-align: right;
}

file-editor-live-streams button {
  background-color: #777;
  cursor: pointer;
  font-size: 1.5vw;
  color: #ccc;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  transition: color .3s ease;
  margin-bottom: 10px;
}

file-editor-live-streams button:hover {
  color: #eee;
  transition: color .3s ease;
}

.live_streams .form-group {
  padding-bottom: 20px;
}

.live_streams .form-group label {
  display: block;
}

.live_streams .form-group input {
  width: calc(100% - 100px);
  display: inline-block;
}

.live_streams .form-group button {
  width: 60px;
  display: inline-block;
  background-color: #777;
  cursor: pointer;
  font-size: 16px;
  color: #ccc !important;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  transition: color .3s ease;
  margin-left: 15px;
}

.live_streams .form-group button:hover {
  color: #eee !important;
  transition: color .3s ease;
}


.add-existing-dropdown-ltr {
  position: absolute;
  left: 2.5vw;
  width: 20vw;
}
.add-existing-dropdown-rtl {
  position: absolute;
  left: -20.5vw;
  width: 20vw;
}

.add-child-dropdown-ltr {
  position: absolute;
  width: 28vw;
}
.add-child-dropdown-rtl {
  position: absolute;
  width: 28vw;
}


.details_long {
  padding-bottom: .5vw;
}

#episodes .content {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  top: 0px !important;
  left: 0px !important;
  transform: none !important;
  transform-origin: unset !important;
  transition-delay: unset !important;
}

#episodes .slick-track .overlay-meta {
  cursor: pointer !important;
  position: absolute !important;
  left: 5px !important;
  right: 5px !important;
  bottom: 5px !important;
}

#episodes .slick-track .overlay-progress{
  cursor: pointer !important;
  position: absolute !important;
  left: 3px !important;
  right: 3px !important;
  bottom: 1px !important;
}
#episodes .slick-track .overlay-progress-bar {
  height: 3px;
}


#episodes .slick-track h4 {
  margin: 0 !important;
  font-size: 1vw !important;
  font-weight: 700 !important;
  color: #eee !important;
  line-height: normal !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  overflow: hidden !important;
  text-align: center !important;
}

#episodes .slick-track .episodes-tile-inner {
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  padding-bottom: 56.25% !important;
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;;
  z-index: 1 !important;
  border-style: solid;
  border-color: #111;
  border-width: 3px;
  cursor: pointer !important;
}

#episodes .slick-track {
  margin-left: auto !important;
  margin-right: auto !important;
}

#episodes .tile-selected {
  border-color: #eee!important;
  border-style: solid!important;
  border-width: 3px!important;
}

#episodes .slick-list {
  overflow: hidden !important;
}

#episodes .slick-track .overlay .overlay-gradient {
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 5%, transparent 35%) !important;
}

.adContainer iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 3000 !important;
}


video::cue {
  background: transparent;
  text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.share_buttons {
  font-size: initial !important;
}
.share_buttons div {
  font-size: initial !important;
}
.share_buttons .button-container {
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 4px;
}
.share_buttons .copy-link-button {
  margin-top: 15px;
}
.share_buttons button {
  width: 100%;
  white-space: nowrap;
}
.share_buttons button, .share_buttons i {
  color: #fff !important;
  font-size: medium;
}

.embed-close-button-svg-icon {
  width: 3em;
  height: 3em;
}

.embed-close-button-svg-icon path,
.embed-close-button-svg-icon polygon,
.embed-close-button-svg-icon rect {
  fill: #eee;
}

.embed-close-button-svg-icon circle {
  stroke: #4691f6;
  stroke-width: 1;
}

.external-link-youtube {
  width: 100%;
  margin-left: 2vw;
}
.external-link-youtube img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
}

item-details .embedContainer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: 0px;
}

.tiers-play-icon {
  margin-right: .5vw;
}

.StripeElement {
  box-sizing: border-box;

  height: 36px;

  padding: 8px 12px;

  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #fdfdfd;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

  box-shadow: none;
  transition: border-color .15s linear,box-shadow .15s linear;
}

.StripeElement--focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.iti__flag {background-image: url('https://flixforge.b-cdn.net/common/images/flags.png')!important;}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url('https://flixforge.b-cdn.net/common/images/flags@2x.png')!important;}
}

.iti, .iti--allow-dropdown input {
  width: 100%;
  height: 34px;
}

.iti-mobile .iti--container {
  width: unset;
  height: unset;
  z-index: 10000;
}

.iti--separate-dial-code .iti__selected-flag {
  padding-bottom: 2px;
  font-size: 16px;
}

.iti__country-list {
  background-color: rgba(18,24,31,.97)!important;
  border: none!important;
}

.iti__divider {
  border-bottom: 1px solid #030506!important;
}

.form-group button.primary.apple-login {
  background-color: #ffffff;
}

.form-group button.primary.apple-login span,
.form-group button.primary.apple-login i {
  color: #000000;
}
.form-group button.primary.fb-login {
  background-color: #1877f2;
}
.form-group button.primary.fb-login > i {
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -1px;
}

.form-group__divider {
  padding: 30px 0;
  position: relative;
}

.form-group__divider > hr {
  border-style: solid;
  border-color: #2b2b2b;
  margin: 0;
}
.form-group__divider > span {
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #121921;
  padding: 0 20px;
}

.form-group .helper-link {
  padding-top: 5px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
}
.form-group.position-relative {
  position: relative;
}

.form-group.position-relative img.loader {
  width: 20px!important;
  right: 0;
  top: 5px;
  left: unset;
  position: absolute;
}

.form-group.position-relative input:-moz-read-only {
  opacity: .3;
}

.form-group.position-relative input:read-only {
  opacity: .3;
}

#purchase.abscbn-purchase-selector .loader {
  position: relative;
}

.synacore .loading img {
  width: 40px!important;
  display: block;
  margin: 0 auto;
}
.synacore .providers-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.synacore .providers-list .error {
  width: 100%;
}

.synacore .providers-list .provider-item {
  width: calc(50% - 8px);
  height: auto;
  padding: 10px;
  margin-bottom: 16px;
  background-color: #1b1d2d;
  min-height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.synacore .providers-list .provider-item.disabled,
.synacore .providers-list .provider-item.disabled:hover {
  background-color: #1b1d2d;
  opacity: .5;
}

.synacore .providers-list .provider-item:hover {
  background-color: #2d2f40;
}

.synacore .providers-list .provider-item img {
  max-height: 40px;
  max-width: 100%!important;
  width: auto!important;
}
.radio-btns {
  display: -ms-flexbox;
  display: flex;
}
.radio-btns button {
  border: none;
  background-color: #333;
  padding: .5vw 2vw;
}
.radio-btns button:first-child {
  border-radius: 3px 0 0 3px;
}
.radio-btns button:last-child {
  border-radius: 0 3px 3px 0;
}
.radio-btns button.active {
  background-color: #222;
  box-shadow: inset 0 0 0.5vw #000;
}
.ng-confirm.ng-confirm-abscbn .resend-confirmation-email a {
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
}

.ng-confirm.ng-confirm-abscbn a.disabled {
  opacity: .5!important;
}

.territory-blocked-overlay {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 5vw;
  top: 0;
  left: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.territory-blocked-overlay-blockedCountryMessage {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.territory-blocked-overlay #territoryBlocked {
  margin: 0!important;
}

item-details:-webkit-full-screen h1,
item-details.fullscreen h1 {
  margin-left: 6.5vw;
  max-width: 44vw;
}

item-details:-moz-full-screen h1,
item-details.fullscreen h1 {
  margin-left: 6.5vw;
  max-width: 44vw;
}

item-details:-ms-fullscreen h1,
item-details.fullscreen h1 {
  margin-left: 6.5vw;
  max-width: 44vw;
}

item-details:fullscreen h1,
item-details.fullscreen h1 {
  margin-left: 6.5vw;
  max-width: 44vw;
}
item-details:-webkit-full-screen h1.with-episodes,
item-details.fullscreen h1.with-episodes {
  max-width: 54vw;
  overflow: hidden;
}
item-details:-moz-full-screen h1.with-episodes,
item-details.fullscreen h1.with-episodes {
  max-width: 54vw;
  overflow: hidden;
}
item-details:-ms-fullscreen h1.with-episodes,
item-details.fullscreen h1.with-episodes {
  max-width: 54vw;
  overflow: hidden;
}
item-details:fullscreen h1.with-episodes,
item-details.fullscreen h1.with-episodes {
  max-width: 54vw;
  overflow: hidden;
}
item-details:-webkit-full-screen .inner-details,
item-details.fullscreen .inner-details {
  display: block;
}
item-details:-moz-full-screen .inner-details,
item-details.fullscreen .inner-details {
  display: block;
}
item-details:-ms-fullscreen .inner-details,
item-details.fullscreen .inner-details {
  display: block;
}
item-details:fullscreen .inner-details,
item-details.fullscreen .inner-details {
  display: block;
}
item-details:-webkit-full-screen .tier-description,
item-details:-webkit-full-screen .inner-details .details-short,
item-details:-webkit-full-screen .inner-details .details-free-items,
item-details:-webkit-full-screen .description,
item-details:-webkit-full-screen .tag,
item-details:-webkit-full-screen .cast,
item-details:-webkit-full-screen .director,
item-details:-webkit-full-screen .genre,
item-details:-webkit-full-screen .tv_show,
item-details:-webkit-full-screen tiers,
item-details:-webkit-full-screen .epg-now-container,
item-details:-webkit-full-screen .epg-next-container,
item-details:-webkit-full-screen .playing-episode-details,
item-details.fullscreen .tier-description,
item-details.fullscreen .inner-details .details-short,
item-details.fullscreen .inner-details .details-free-items,
item-details.fullscreen .description,
item-details.fullscreen .tag,
item-details.fullscreen .cast,
item-details.fullscreen .director,
item-details.fullscreen .genre,
item-details.fullscreen .tv_show,
item-details.fullscreen tiers,
item-details.fullscreen .epg-now-container,
item-details.fullscreen .epg-next-container,
item-details.fullscreen .playing-episode-details {
  margin-left: 6.5vw;
}
item-details:-moz-full-screen .tier-description,
item-details:-moz-full-screen .inner-details .details-short,
item-details:-moz-full-screen .inner-details .details-free-items,
item-details:-moz-full-screen .description,
item-details:-moz-full-screen .tag,
item-details:-moz-full-screen .cast,
item-details:-moz-full-screen .director,
item-details:-moz-full-screen .genre,
item-details:-moz-full-screen .tv_show,
item-details:-moz-full-screen tiers,
item-details:-moz-full-screen .epg-now-container,
item-details:-moz-full-screen .epg-next-container,
item-details:-moz-full-screen .playing-episode-details,
item-details.fullscreen .tier-description,
item-details.fullscreen .inner-details .details-short,
item-details.fullscreen .inner-details .details-free-items,
item-details.fullscreen .description,
item-details.fullscreen .tag,
item-details.fullscreen .cast,
item-details.fullscreen .director,
item-details.fullscreen .genre,
item-details.fullscreen .tv_show,
item-details.fullscreen tiers,
item-details.fullscreen .epg-now-container,
item-details.fullscreen .epg-next-container,
item-details.fullscreen .playing-episode-details {
  margin-left: 6.5vw;
}
item-details:-ms-fullscreen .tier-description,
item-details:-ms-fullscreen .inner-details .details-short,
item-details:-ms-fullscreen .inner-details .details-free-items,
item-details:-ms-fullscreen .description,
item-details:-ms-fullscreen .tag,
item-details:-ms-fullscreen .cast,
item-details:-ms-fullscreen .director,
item-details:-ms-fullscreen .genre,
item-details:-ms-fullscreen .tv_show,
item-details:-ms-fullscreen tiers,
item-details:-ms-fullscreen .epg-now-container,
item-details:-ms-fullscreen .epg-next-container,
item-details:-ms-fullscreen .playing-episode-details,
item-details.fullscreen .tier-description,
item-details.fullscreen .inner-details .details-short,
item-details.fullscreen .inner-details .details-free-items,
item-details.fullscreen .description,
item-details.fullscreen .tag,
item-details.fullscreen .cast,
item-details.fullscreen .director,
item-details.fullscreen .genre,
item-details.fullscreen .tv_show,
item-details.fullscreen tiers,
item-details.fullscreen .epg-now-container,
item-details.fullscreen .epg-next-container,
item-details.fullscreen .playing-episode-details {
  margin-left: 6.5vw;
}
item-details:fullscreen .tier-description,
item-details:fullscreen .inner-details .details-short,
item-details:fullscreen .inner-details .details-free-items,
item-details:fullscreen .description,
item-details:fullscreen .tag,
item-details:fullscreen .cast,
item-details:fullscreen .director,
item-details:fullscreen .genre,
item-details:fullscreen .tv_show,
item-details:fullscreen tiers,
item-details:fullscreen .epg-now-container,
item-details:fullscreen .epg-next-container,
item-details:fullscreen .playing-episode-details,
item-details.fullscreen .tier-description,
item-details.fullscreen .inner-details .details-short,
item-details.fullscreen .inner-details .details-free-items,
item-details.fullscreen .description,
item-details.fullscreen .tag,
item-details.fullscreen .cast,
item-details.fullscreen .director,
item-details.fullscreen .genre,
item-details.fullscreen .tv_show,
item-details.fullscreen tiers,
item-details.fullscreen .epg-now-container,
item-details.fullscreen .epg-next-container,
item-details.fullscreen .playing-episode-details {
  margin-left: 6.5vw;
}

body.ios-webview-fullscreen slick-slider.item-details--visible,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible,
body.ios-webview-fullscreen slick-slider.item-details--visible item-details,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details{
  position: fixed!important;
  width: 100%!important;
  height: 100%!important;
  left: 0;
  top: 0;
  margin: 0!important;
  background-color: #000;
  z-index: 999998!important;
}

body.ios-webview-fullscreen slick-slider.item-details--visible item-details .videoContainer,
body.ios-webview-fullscreen slick-slider.item-details--visible item-details .details-container,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .videoContainer,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .details-container {
  z-index: 999998!important;
}

body.ios-webview-fullscreen slick-slider.item-details--visible item-details .ng-confirm,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .ng-confirm,
body.ios-webview-fullscreen slick-slider.item-details--visible item-details .controlsContainer,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .controlsContainer {
  z-index: 999999!important;
}
body.ios-webview-fullscreen slick-slider.item-details--visible item-details .adContainer.topZ,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .adContainer.topZ {
  z-index: 1000001!important;
}

body.ios-webview-fullscreen slick-slider.item-details--visible item-details .adResume.topZ,
body.ios-webview-fullscreen slick-grid .slick-wrapper.item-details--visible item-details .adResume.topZ {
  z-index: 1000002!important;
}
body.ios-webview-fullscreen item-details h1{
  margin-left: 6.5vw;
  max-width: 44vw;
}
body.ios-webview-fullscreen .inner-details {
  display: block;
}
body.ios-webview-fullscreen item-details .tier-description,
body.ios-webview-fullscreen item-details .inner-details .details-short,
body.ios-webview-fullscreen item-details .inner-details .details-free-items,
body.ios-webview-fullscreen item-details .tag,
body.ios-webview-fullscreen item-details .cast,
body.ios-webview-fullscreen item-details .director,
body.ios-webview-fullscreen item-details .genre,
body.ios-webview-fullscreen item-details .tv_show,
body.ios-webview-fullscreen item-details tiers,
body.ios-webview-fullscreen item-details .playing-episode-details {
  margin-left: 6.5vw;
}
body.ios-webview-fullscreen item-details .controlsContainer {
  padding-left: 10vw!important;
  padding-right: 10vw!important;
}
body.ios-webview-fullscreen item-details .item-details--close {
  display: none;
}
body.fullwindow slick-slider.item-details--visible,
body.fullwindow slick-grid .slick-wrapper.item-details--visible,
body.fullwindow slick-slider.item-details--visible item-details,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details {
  position: fixed!important;
  width: 100%!important;
  height: 100%!important;
  left: 0;
  top: 0;
  margin: 0!important;
  background-color: #000;
  z-index: 2147483661!important;
}
body.fullwindow slick-slider.item-details--visible item-details .videoContainer,
body.fullwindow slick-slider.item-details--visible item-details .details-container,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .videoContainer,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .details-container {
  z-index: 2147483646!important;
}
body.fullwindow slick-slider.item-details--visible item-details .controlsContainer,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .controlsContainer {
  z-index: 2147483662!important;
}

body.fullwindow slick-slider.item-details--visible item-details .ng-confirm,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .ng-confirm {
  z-index: 2147483663!important;
}

body.fullwindow slick-slider.item-details--visible item-details .adContainer.topZ,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .adContainer.topZ {
  z-index: 2147483665!important;
}
body.fullwindow slick-slider.item-details--visible item-details .adResume.topZ,
body.fullwindow slick-grid .slick-wrapper.item-details--visible item-details .adResume.topZ {
  z-index: 2147483666!important;
}
body.fullwindow slick-slider.item-details--visible item-details .item-details--close {
  display: none;
}
body.fullwindow item-details .details-container-btn,
body.fullwindow item-details .epg-now-container,
body.fullwindow item-details .epg-next-container {
  margin-left: 6.5vw;
}
body.fullwindow item-details h1{
  margin-left: 6.5vw;
  max-width: 44vw;
}
body.fullwindow .inner-details {
  display: block;
}
body.fullwindow item-details .tier-description,
body.fullwindow item-details .inner-details .details-short,
body.fullwindow item-details .inner-details .details-free-items,
body.fullwindow item-details .description,
body.fullwindow item-details .tag,
body.fullwindow item-details .cast,
body.fullwindow item-details .director,
body.fullwindow item-details .genre,
body.fullwindow item-details .tv_show,
body.fullwindow item-details tiers,
body.fullwindow item-details .playing-episode-details {
  margin-left: 6.5vw;
}

.ng-confirm-android-confirm {
  color: #111;
}
.ng-confirm-android-confirm .ng-confirm-title-c {
  display: none!important;
}

.ng-confirm-android-confirm .cast-modal-confirm--actions__wrapper a.btn  {
  width: 100%;
  margin-right: 5px;
  text-decoration: none;
}

.cast-modal-confirm--body {
  padding-top: 10px;
}

.cast-modal-confirm--actions {
  margin-top: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}

.cast-modal-confirm--actions__wrapper {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
}

#home-infinite-scroll-pointer img {
  display: none;
  margin: 0 auto;
}

#home-infinite-scroll-pointer.loading img {
  display: block;
}

.ng-confirm.ng-confirm-purchase-info,
.ng-confirm.ng-confirm-purchase-info .ng-confirm-content-pane a {
  color: #2b2b2b;
}

.ng-confirm.ng-confirm-purchase-info .ng-confirm-box {
  max-height: 80vh;
}

.ng-confirm.ng-confirm-purchase-info .ng-confirm-content-pane {
  max-height: 60vh;
  overflow: auto!important;
}

.grecapture-tandcs {
  font-size: .7em;
  text-align: center;
  padding-top: 20px;
}

.register-error {
  color: #f00!important;
  padding-top: 10px;
}

.auth-input-password-container {
  position: relative;
}

.auth-password-input-error {
  right: 35px !important;
}

.auth-error {
  color: #f00!important;
  padding-left: 5px;
}

.register-terms {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: start;
  gap: 8px;
}

.play-trailer-btn, .skip-trailer-btn {
  background-color: rgba(205, 205, 205);
  padding: 0 !important;
}

.play-trailer-btn a, .skip-trailer-btn a {
  display: inline-block;
  text-decoration: none;
  color: #000000 !important;
  padding: 6px 12px;
}

.skip-trailer-wrapper {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

.details-short {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  gap: 8px 0;
  font-size: 1.5vw;
}

#purchase .billdesk-form .email {
  box-shadow: none;
}
#purchase .billdesk-form .region {
  position: relative;
}

#purchase .billdesk-form .region label {
  position: absolute;
  left: 12px;
  top: 7px;
  font-weight: normal;
  color: #878787;
}
#purchase .billdesk-form .region select {
  padding: 6px 12px 6px 70px;
}

.item-details--close, .item-details--close__fullscreen {
  color: rgb(238, 238, 238);
  position: absolute;
  right: 5.5vw;
  top: 15px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.3);
  width: 3vw;
  height: 3vw;
  text-align: center;
  cursor: pointer;
  z-index: 1000;
}
.item-details--close__fullscreen {
  top: 25px;
}
.item-details--close:hover,
.item-details--close__fullscreen:hover {
  background-color: rgba(0,0,0,.8);
}
.item-details--close-button {
  color: rgb(238, 238, 238);
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 2vw;
}

.admin-frame-users-container {
  width: 100%;
}

.skip-btn {
  position: relative;
  background: rgba(172, 172, 172, 0.7);
  border-radius: 5px;
  overflow: hidden;
  border: none;
  padding: 5px 15px 5px 10px;
}
.watch-credits-btn {
  position: relative;
  background: rgba(77, 77, 77, 0.7);
  border-radius: 5px;
  overflow: hidden;
  border: none;
  padding: 5px 8px 5px 8px;
}
.skip-btn:hover,
.watch-credits-btn:hover {
  background: rgba(172, 172, 172, 0.85);
}
.skip-btn-text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.2vw;
  z-index: 2;
  text-shadow: none;
  font-weight: 600;
  vertical-align: middle;
  opacity: 0.6;
}
.white-color {
  color: #FFFFFF !important;
}
.black-color {
  color: #000000 !important;
}
.skip-btn-icon {
  font-size: 1.2vw;
  color: #000000 !important;
  text-shadow: none;
  padding-right: 3px;
}
.skip-btn-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background: rgba(247, 247, 247, 0.6);
  transition: width 1s linear;
  z-index: 1;
}
.skip-btn-container {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  bottom: 8%;
  bottom: calc(100px + 2vw);
  z-index: 3;
}
.skip-btn-right {
  right: 5.5vw;
}
.skip-btn-left {
  left: 5.5vw;
}
.skip-btn-hidden {
  display: none !important;
}

.skip-btn-hidden {
  display: none !important;
}
.progress-bar-container {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity .4s;
  transition-delay: .4s;
  width: 93%;
  height: 5px;
  background-color: #888888;
  border-radius: 15px;
  overflow: hidden;
}
.progress-bar-container.hover {
  transition: opacity .4s;
  opacity: 0;
}
.progress-bar {
  height: 100%;
  background: #6854e0;
  transition: width 0.4s ease;
  border-radius: 15px;
}

.trailer-actions-skip-action button {
  cursor: pointer;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, .3);
  padding: 6px 12px;
  text-transform: uppercase;
  border-radius: 0.5vw;
  box-sizing: border-box;
  letter-spacing: 2px;
  font-size: 0.75em;
  box-shadow: 0 0 10px -2px #fff;
  opacity: .8;
  transition: .3s;
}
.trailer-actions-container {
  font-size: 1.5vw;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 55px;
  z-index: 1;
}
.trailer-actions-container-ltr {
  float: left;
  right: 5vw;
}
.trailer-actions-container-rtl {
  float: right;
  left: 5vw;
}
.trailer-actions-playback {
  display: -ms-flexbox;
  display: flex;
  margin-right: 2vw;
  margin-left: 2vw;
  -ms-flex-align: center;
      align-items: center;
}
.trailer-actions-playback-play,
.trailer-actions-playback-mute {
  width: 1vw;
  text-align: center;
  cursor: pointer;
}
.trailer-actions-playback-play .fa,
.trailer-actions-playback-mute .fa {
  text-shadow: 1px 1px 1px #000;
}
tiers .remove-ads-button-wrapper {
  margin-left: -3.5vw;
}
tiers .remove-ads-button-wrapper button {
  font-size: 2vw;
  border-radius: 0.5vw;
  background-color: transparent;
  color: #eee;
  margin-right: 5.5vw;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0.5vw 1.5vw;
  cursor: pointer;
  text-transform: capitalize;
  transition: background-color .3s ease, opacity .3s ease;
  opacity: 1;
  border: 1px solid #fff;
}

tiers .original-price {
  text-decoration: line-through;
  opacity: 0.8;
}
.shaka-text-container {
  position: absolute!important;
  width: 100%;
  height: 100%;
  bottom: 1vw;
  left: 0;
}
.video::-webkit-media-text-track-container {
  position: absolute !important;
  top: unset !important;
  bottom: 1vw !important;
}
.video::-webkit-media-text-track-display {
  font-size: 2.5vw !important;
}
.shaka-text-container span {
  font-size: 2.5vw;
  background: transparent;
  text-shadow:
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      1px 1px 0 #000;
}
.shaka-text-container-upper {
  bottom: calc(100px + 2vw);
}
.video-fairplayer-text-container-upper::-webkit-media-text-track-container {
  position: absolute !important;
  top: unset !important;
  bottom: calc(100px + 2vw) !important;
}
.child-items-admin-position-ltr {
  top: 65px;
}
.child-items-admin-position-rtl {
  left: auto !important;
  right: 65% !important;
  transform: translate(110%, 70%);
}

.btn.remove-from-history {
  font-size: 1.5vw;
}

.btn.remove-from-history a {
  color: #333!important;
}
.btn.remove-from-history a:hover {
  text-decoration: none;
}
.navbar-action-buttons button.btn {
  border: none;
}
.navbar-action-buttons button.btn.sign-in {
  background-color: #444;
  color: #fff;
}

live-channels-preview {
  margin-left: 2vw;
  padding-right: 1.5vw;
  width: 35%;
  max-width: 35vw;
  float: left;
  position: absolute;
  top: 20px;
  left: 54%;
}
live-channels-preview[dir="rtl"] {
  float: right;
  margin-left: auto;
  margin-right: 2vw;
  padding-left: 2vw;
  left: auto;
  right: 54%;
}

live-channels-preview .scroller {
  height: calc(100% - 30px);
  overflow-y: auto;
}

live-channels-preview .scroller::-webkit-scrollbar {
  -webkit-appearance: none;
}

live-channels-preview .scroller::-webkit-scrollbar:vertical {
  width: 6px;
}

live-channels-preview .scroller::-webkit-scrollbar {
  -webkit-appearance: none;
}

live-channels-preview .scroller::-webkit-scrollbar:vertical {
  width: 6px;
}

live-channels-preview .scroller::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

live-channels-preview .scroller::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
}

live-channels-preview .slick-arrow {
  position: absolute;
  width: 100%;
  z-index: 300;
  font-size: 0px;
  border: none;
  margin: 0px;
  padding: 0px;
}
live-channels-preview .slick-prev {
  background: none;
}
live-channels-preview .slick-prev:before {
  z-index: 300;
  content: "\203A";
  font-size: 4vw;
  line-height: 0.7;
  display: inline-block;
  transform: rotate(-90deg);
  margin-top: 4px;
}
[dir="rtl"] live-channels-preview .slick-prev:before {
  transform: rotate(90deg);
}
live-channels-preview .slick-disabled {
  z-index: -1;
}
live-channels-preview .slick-next {
  bottom: 0;
  background: none;
}
live-channels-preview .slick-next:before {
  content: "\2039";
  font-size: 4vw;
  line-height: 0.7;
  display: inline-block;
  transform: rotate(-90deg);
  margin: 0px;
  padding: 0px;
}
[dir="rtl"] live-channels-preview .slick-next:before {
  transform: rotate(90deg);
}

#playing-now-programs .slick-track .overlay-meta {
  cursor: pointer !important;
  position: absolute !important;
  left: 5px !important;
  right: 5px !important;
  bottom: 5px !important;
}

#playing-now-programs .slick-track .overlay-progress {
  cursor: pointer !important;
  position: absolute !important;
  left: 3px !important;
  right: 3px !important;
  bottom: 1px !important;
}
#playing-now-programs .slick-track .overlay-progress-bar {
  height: 3px;
}

#playing-now-programs .slick-track h4 {
  margin: 0 !important;
  font-size: 1vw !important;
  font-weight: 700 !important;
  color: #eee !important;
  line-height: normal !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  overflow: hidden !important;
  text-align: center !important;
}

#playing-now-programs  .slick-track .program-container {
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin-bottom: 0.8vw !important;
  position: relative !important;
  z-index: 1 !important;
  cursor: pointer !important;
}

#playing-now-programs  .slick-track {
  margin-left: auto !important;
  margin-right: auto !important;
}

#playing-now-programs  .tile-selected {
  border-color: #eee !important;
  border-style: solid !important;
  border-width: 3px !important;
}

#playing-now-programs  .slick-list {
  overflow: hidden !important;
}

#playing-now-programs  .slick-track .overlay .overlay-gradient {
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 5%,
    transparent 35%
  ) !important;
}

#playing-now-programs .program-details-container {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: calc(100%-3vw);
  height: 8vw;
  margin-left: 3vw;
  border-radius: 8px;
  background-color: #2d2d2d;
}

#playing-now-programs .channel-thumbnail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  box-sizing: border-box !important;
  position: absolute !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 2 !important;
  left: 0;
  top: 50%;
  border-radius: 8px;
  width: 6vw;
  height: 6vw;
  transform: translate(0, -50%);
}

#playing-now-programs .program-thumbnail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1 !important;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

#playing-now-programs .program-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1;
      flex: 1;
  height: 100%;
  padding: 1vw;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 50%;
}

#playing-now-programs .channel-playing {
  background-color: #e6e6e6;
}

#playing-now-programs .program-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  font-weight: bold;
  font-size: 1.3vw !important;
  color: #fff !important;
}

#playing-now-programs .channel-playing .program-title {
  color: #000 !important;
}

#playing-now-programs .program-time {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: end;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.1vw !important;
}

#playing-now-programs .channel-playing .program-time {
  color: #333 !important;
}

#playing-now-programs .elipsis-text {
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* autoprefixer: off */
}

#playing-now-programs .progress-bar-wrapper {
  width: 100%;
  margin-top: 5px;
}

#playing-now-programs .progress-bar {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}

#playing-now-programs .progress-bar-fill {
  display: block;
  height: 3px;
  background-color: rgb(229, 9, 20);
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: width 500ms ease-in-out;
}

.external-login-wrapper__divider p {
  text-align: center;
  margin: 10px 0;
}
.external-login-wrapper__loader {
  display: inline-block;
  line-height: 0;
}
.external-login-wrapper__loader loader {
  display: inline-block;
}
.ng-confirm .external-login-wrapper__loader loader img {
  display: block!important;
  position: relative!important;
  width: 14px!important;
  left: -2px!important;
  top: 2px!important;
}
.external-login-wrapper__option {
  margin-bottom: 10px;
}

.external-login-wrapper__option:last-child {
  margin-bottom: 0;
}

.external-login-wrapper__option button {
  display: block;
  width: 100%;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #555;
  margin-bottom: 10px;
}
.external-login-wrapper__option button:last-child {
  margin-bottom: 0;
}

.tags-search-loader-wrapper {
  text-align: center;
}
.tags-search-loader {
  max-width: 5vw;
  margin: 0 auto;
}
.tags-search-loader-box {
  display: inline-block;
  margin: 0 auto;
  padding: 1vw;
  border-radius: 10%;
  background-color: #1c1c1c;
}
.tags-search-loader-box p {
  margin: 0;
}
slick-grid-wrapper {
  display: block;
  margin-bottom: -50px;
}
.user-profile-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 15%;
  cursor: pointer;
  transition: .3s
}
.user-profile-icon-wrapper:hover {
  transform: scale(1.2);
}
.user-profile-icon-wrapper > p {
  margin: 0;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0,0,0,.5);
}

footer .social .svg-icon-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.line-md--twitter-x {
  display: inline-block;
  width: 1em;
  height: 1em;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23000'%3E%3Cpath d='M1 2h2.5L3.5 2h-2.5z'%3E%3Canimate fill='freeze' attributeName='d' dur='0.4s' values='M1 2h2.5L3.5 2h-2.5z;M1 2h2.5L18.5 22h-2.5z'/%3E%3C/path%3E%3Cpath d='M5.5 2h2.5L7.2 2h-2.5z'%3E%3Canimate fill='freeze' attributeName='d' dur='0.4s' values='M5.5 2h2.5L7.2 2h-2.5z;M5.5 2h2.5L23 22h-2.5z'/%3E%3C/path%3E%3Cpath d='M3 2h5v0h-5z' opacity='0'%3E%3Cset attributeName='opacity' begin='0.4s' to='1'/%3E%3Canimate fill='freeze' attributeName='d' begin='0.4s' dur='0.4s' values='M3 2h5v0h-5z;M3 2h5v2h-5z'/%3E%3C/path%3E%3Cpath d='M16 22h5v0h-5z' opacity='0'%3E%3Cset attributeName='opacity' begin='0.4s' to='1'/%3E%3Canimate fill='freeze' attributeName='d' begin='0.4s' dur='0.4s' values='M16 22h5v0h-5z;M16 22h5v-2h-5z'/%3E%3C/path%3E%3Cpath d='M18.5 2h3.5L22 2h-3.5z' opacity='0'%3E%3Cset attributeName='opacity' begin='0.5s' to='1'/%3E%3Canimate fill='freeze' attributeName='d' begin='0.5s' dur='0.4s' values='M18.5 2h3.5L22 2h-3.5z;M18.5 2h3.5L5 22h-3.5z'/%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.clickable-text {
  cursor: pointer;
  text-decoration: underline;
}
.item-details-rating {
  position: relative;
}
.item-details-rating-config-list {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  width: 40vw;
  min-width: 250px;
  max-height: 32vh;
  min-height: 10vh;
  left: 100%;
  top: -10px;
  background: rgba(0, 0, 0, .9);
  border-radius: 4px;
  box-shadow: 2px 2px 5px #111;
  overflow: hidden;
  z-index: 1;
}
.item-details-rating-value-edit {
  cursor: pointer;
}
.item-details-rating .item-details-rating-value {
  margin-right: 10px;
}
.item-details-rating .item-details-rating-value > img {
  max-height: calc(2vw + 2px);
  width: auto;
  margin-top: -4px;
  cursor: pointer;
}

.confirm-user-email {
  font-size: 12px;
}
.confirm-user-email .confirm-user-email-title {
  padding-bottom: 10px;
}
.confirm-user-email .confirm-user-email-body__label {
  display: -ms-flexbox;
  display: flex;
}
.confirm-user-email .confirm-user-email-body__label p:first-child {
  padding-right: 5px;
}
.confirm-user-email .confirm-user-email-body__label p.text-strong {
  font-weight: bold;
}
.confirm-user-email .confirm-user-email-body__password {
  padding-bottom: 10px;
}
.confirm-user-email .confirm-user-email-body__password label {
  font-weight: normal;
  font-size: 12px;
}
.confirm-user-email .confirm-user-email-body__password label,
.confirm-user-email .confirm-user-email-body__password input {
  width: 100%;
}
.confirm-user-email .confirm-user-email-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}
.confirm-user-email .confirm-user-email-actions .btn-primary {
  border: none;
  margin-right: 5px;
}

[truncatable] .truncatable-truncated {
  position: relative;
  overflow: hidden;
  text-overflow: clip;
}

[truncatable] .truncatable-expanded {
  overflow: visible;
}

[truncatable] .truncatable-ellipsis {
  display: inline;
  white-space: nowrap;
}

[truncatable] .truncatable-action {
  display: inline;
  background: none;
  border: none;
  border-bottom: 1px dotted;
  padding: 0;
  margin: 0 0 0 5px;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
  white-space: nowrap;
}

item-details .videoContainer.external-captions .shaka-text-container .shaka-text-region {
  left: 50%!important;
  transform: translateX(-50%)!important;
}
home .home-no-page-data {
  padding-top: 30vh;
  text-align: center;
}
tiers .rent-timer-info {
  font-size: 1.5vw;
}
.activate-rental-modal .activate-rental-modal__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: right;
      justify-content: right;
  padding: 10px 0;
}
.activate-rental-modal .activate-rental-modal__actions button.btn {
  background-color: #ccc;
  border-radius: 3px;
  font-weight: bold;
  text-align: center !important;
  transition: background-color .3s ease;
  margin-right: 5px;
}
.activate-rental-modal .activate-rental-modal__actions button.btn:last-child {
  margin-right: 0;
}
.activate-rental-modal .activate-rental-modal__actions button.btn.btn-default {
  border: none;
  background: #fff;
}

banner-settings {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  left: 3vw;
  width: 75vw;
  bottom: auto;
  background: rgba(48, 48, 48, .9);
  border-radius: 4px;
  box-shadow: 2px 2px 5px #111;
  z-index: 1000;
  overflow: hidden;
  padding: 1vw
}

navigation .description .back-btn-wrapper {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-right: 10px;
  cursor: pointer;
}

navigation .description .page-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.back-btn-wrapper .circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 0;
}

.back-btn-wrapper i {
  position: relative;
  font-size: 3rem;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 90%;
  height: 100%;
}


.purchase-modal .ng-confirm-content-pane,
.purchase-modal #purchase {
  overflow: visible !important;
}
.full-width-table table {
  width: 100%;
}

.banner-settings__select-input {
  z-index: 9999;
  width: 100%;
}

.banner-settings__select-input > .selectize-input {
  display: block;
}

.carousel-ui-select-dropdown {
  z-index: 1000;
}
@media screen and (max-width: 840px) {
  .trailer-actions-playback-play,
  .trailer-actions-playback-mute {
    width: 25px;
    text-align: center;
    cursor: pointer;
  }

  h1.alt-margins {
    margin-top: 40px;
    margin-bottom: -110px !important;
  }

  .form-group.search {
    position: relative;
    top: 60px;
    width: calc(100% - 30px);
    margin-left: 15px;
    margin-right: 15px;
  }

  .form-group.search i {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 14px;
    color: #333;
  }

  .form-group.search input {
    width: 100%;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    padding-left: 29px;
    font-size: 19px;
    height: 32px;
    color: #333;
  }

  slick-grid {
    padding-top: 30px!important;
  }

  .tags-in-search slick-grid {
    padding-top: 10px!important;
  }

  slick-grid .slick-track,
  .tags-search-result-row-title {
    margin-left: 15px!important;
    margin-right: 15px!important;
  }

  .container-fluid {
    top: 4px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .controlsContainer {
    margin-bottom: -2px;
  }
  .controlsContainer.controls-container-mobile {
    bottom: 2% !important;
    max-height: 80px;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
  }

/*  .controls {
    transform: scale(0.90);
  } */

  h2 {
    font-size: 16px;
  }

  .carousel-title {
    font-size: 16px;
    margin-top: 0;
  }

  .banner-overlay-meta {
    width: 45vw !important;
    top: -5vw !important;
  }

  .banner-overlay-meta h1 {
    font-size: 18px !important;
  }

  .banner-overlay-meta a {
    font-size: 12px !important;
    width: 25vw !important;
  }

  #siteLogo,
  .isTWA .fullBackground #siteLogo,
  .is-mobile.fullBackground #siteLogo,
  .ios-webkit-view.fullBackground #siteLogo {
    max-width: 100px !important;
    max-height: 30px !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    transition: top .3s ease;
  }

  .fullBackground #siteLogo {
    max-width: 75px !important;
    max-height: 18px !important;
    transition: top .3s ease;
  }

  item-details {
    margin-left: -15px !important;
    margin-top: 0px !important;
  }

  slick-grid item-details {
    margin-left: 0px !important;
    margin-top: 0px !important;
  }

/*
  item-details .close {
    top: -5px;
    right: 10px;
  }
*/

  item-details .full-window-close {
    margin-top: 13px;
    font-size: 18px;
  }
  item-details .full-window-close-ltr {
    left: 13px;
  }

  item-details .full-window-close-rtl {
    right: 13px;
  }

  item-details button span {
    font-size: 32px;
  }

  item-details .details-container-title h1 {
    margin-top: 13px;
    margin-bottom: 0px;
    font-size: 18px;
    overflow: hidden;
    max-width: 60vw;
  }

  item-details div {
    font-size: 14px;
  }

  /*item-details .inner-details {*/
  /*  width: 65%;*/
  /*}*/

  item-details .inner-details .left {
    width: calc(100% - 20px);
  }

  item-details .inner-details .right {
    display: none;
  }

  item-details .inner-details::-webkit-scrollbar {
    -webkit-appearance: none;
  }

  item-details .inner-details::-webkit-scrollbar:vertical {
    width: 5px;
  }

  item-details .inner-details::-webkit-scrollbar:horizontal {
    height: 5px;
  }

  item-details .inner-details::-webkit-scrollbar-thumb {
    background-color: rgba(128, 128, 128, .5);
    border-radius: 2px;
    border-width: 0px;
  }

  item-details .inner-details::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: rgba(32, 32, 32, .4);
  }

  item-details .inner-details .details-short {
    margin-top: -8px;
    margin-bottom: 15px;
/*    margin-left: 30px; */
  }

  item-details .season,
  item-details .episode,
  item-details .release {
    top: 8px;
  }
  item-details .release-ltr {
    margin-right: 8px;
  }
  item-details .release-rtl {
    margin-left: 8px;
  }

  item-details .rating {
    top: 8px;
    border-width: 1px;
    font-size: 14px;
    font-weight: 600;
    min-width: 0px;
  }
  item-details .rating-ltr {
    margin-right: 8px;
  }
  item-details .rating-rtl {
    margin-left: 8px;
  }

  item-details .definition {
    top: 8px;
    border-width: 1px;
    font-size: 14px;
    font-weight: 600;
  }
  item-details .definition-ltr {
    margin-right: 8px;
  }
  item-details .definition-rtl {
    margin-left: 8px;
  }


  item-details .definition .border-right {
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: rgba(200, 200, 200, .8);
    height: calc(100% - 5px);
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
  }

  item-details .definition .border-bottom {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(200, 200, 200, .8);
    height: 100%;
    width: calc(100% - 5px);
    position: absolute;
    top: 1px;
    left: -1px;
  }

  item-details .definition span {
    position: absolute;
    font-size: 14px;
    right: -2px;
    bottom: -8px;
    color: rgba(200, 200, 200, .8);
  }

  item-details .duration {
    top: 8px;
  }
  item-details .duration-ltr {
    margin-right: 8px;
  }
  item-details .duration-rtl {
    margin-left: 8px;
  }

  item-details .share, item-details .extras {
    top: 8px;
  }

  item-details .description {
    margin-top: 10px;
    margin-bottom: 5px;
/*    margin-left: 30px; */
    width: auto;
  }

  item-details .description span {
    font-size: 12px;
    width: 100%;
    max-width: initial;
  }

  user #user_login {
    font-size: 14px !important;
    padding: 0px;
    width: auto;
  }

  user #user_menu {
    padding: 0px 0px !important;
    right: 0px;
    top: -5px;
    width: auto;
  }

  user #user_menu button {
    width: 30px;
  }

  .ng-confirm .container {
    width: auto;
  }

  navigation nav,
  .isTWA navigation nav.fullBackground,
  navigation nav.is-mobile.fullBackground,
  navigation nav.ios-webkit-view.fullBackground {
    height: 64px !important;
  }

  .grid.browse-page-grid {
    top: 64px!important;
  }

  navigation nav.fullBackground {
    height: 24px !important;
  }

  navigation .navbar-brand {
    padding: 10px 15px;
  }

  navigation .navbar-header,
  .isTWA navigation .fullBackground .navbar-header,
  navigation .is-mobile.fullBackground .navbar-header,
  navigation .ios-webkit-view.fullBackground .navbar-header {
    margin-left: 15px !important;
    margin-top: 15px;
    transition: margin-top .3s ease;
  }

  navigation .fullBackground .navbar-header {
    margin-top: 5px;
    transition: margin-top .3s ease;
  }

  navigation .navbar-toggle {
    text-shadow: 2px 2px 2px #111;
    margin-top: 0px;
    padding-left: 2px;
  }

  navigation .navbar-toggle.leftAlign {
    margin-left: 6px;
  }

  navigation .navbar-brand img {
    margin-left: 20px !important;
  }

  navigation .navbar-right,
  .isTWA navigation .fullBackground .navbar-right,
  navigation .is-mobile.fullBackground .navbar-right,
  navigation .ios-webkit-view.fullBackground .navbar-right {
    position: unset;
    top: 9px;
    font-size: 18px;
    margin-top: 2vw !important;
    margin-left: 0 !important;
    /*margin-right: 0 !important;*/
    line-height: 20px !important;
    transition: margin .3s ease;
  }
  navigation .navbar-right.navbar-right-ltr,
  .isTWA navigation .navbar-right.navbar-right-ltr,
  navigation .ios-webkit-view .navbar-right.navbar-right-ltr {
    margin-right: 2vw!important;
  }
  navigation .navbar-right.navbar-right-rtl,
  .isTWA navigation .navbar-right.navbar-right-rtl,
  navigation .ios-webkit-view .navbar-right.navbar-right-rtl {
    margin-left: 2vw!important;
    float: none!important;
  }
  .hamburger-rtl .fa-bars {
    line-height: unset;
  }

  navigation .fullBackground .navbar-right {
    margin-top: -4px !important;
    transition: margin .3s ease;
  }

  navigation search-box {
    width: auto;
  }

  navigation search-box i {
    margin-right: 0;
  }

  navigation search-box i.fa-search {
    left: 5px;
  }

  navigation search-box i.fa-times {
    transition: unset;
    right: 5px;
  }

  navigation search-box input {
    font-size: 18px;
    width: 15px;
    padding: 5px 10px 5px 30px;
    transition: none;
  }

  /*navigation search-box input:focus {*/
  /*  width: 65vw;*/
  /*  border-radius: 4px;*/
  /*  padding: 0.15vw 7vw .15vw 7vw;*/
  /*}*/

  navigation search-box input.focus {
    width: 150px;
    border-radius: 4px;
    padding: 0.15vw 7vw .15vw 7vw;
  }

  .user-profile-icon {
    margin-right: 5px;
  }

  navigation ul {
    margin: 5px 0px 5px 0px !important;
  }

  navigation .nav>li {
    font-size: 16px;
    padding: 5px 0px;
  }

  navigation .description,
  .isTWA navigation .fullBackground .description,
  navigation .is-mobile.fullBackground .description,
  navigation .ios-webkit-view.fullBackground .description {
    top: 10px;
    left: 15px;
  }

  navigation .fullBackground .description {
    top: -10px;
  }

  navigation .description span {
    font-size: 12px;
  }

  navigation .description .page-title-wrapper {
    font-size: 2rem;
  }

  navigation .description .back-btn-wrapper{
    width: 3rem;
    height: 3rem;
  }

  navigation .description .back-btn-wrapper i {
    font-size: 2rem;
  }

  tiers {
    width: 100%;
    margin-top: 0px !important;
  }

  item-details tiers {
    width: 100%;
//    margin-top: 10px !important;
/*    margin-left: 30px; */
  }

  tiers.negative_margin {
    margin-top: auto;
  }

  tiers ul {
    width: auto;
    right: 0px;
  }

  tiers .tier-wrapper {
    margin-top: 10px;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: start;
  }

  tiers .tier-wrapper .tier-wrapper-btn-divider {
    margin: 5px 0;
  }

  tiers .tier-wrapper .tier-superchannel-wrapper {
    margin-left: 0;
  }

  tiers ul li,
  tiers .tier-wrapper .btn.tier-button {
    font-size: 16px;
    line-height: 24px;
    border-radius: 3px;
    padding: 3px 8px;
  }

  tiers .tier-wrapper .tier-wrapper-btn-divider,
  tiers  .rent-timer-info {
    font-size: 14px;
  }

  hero .overlay .details tiers .tier-wrapper .tier-wrapper-btn-divider {
    margin-left: 1.5vw;
  }

  item-details tiers ul li,
  tiers .tier-wrapper .btn.tier-button {
    z-index: 10000;
  }

  tiers .resume-description {
    padding-top: 14px;
  }

  hero .overlay h1 {
    font-size: 14px;
  }

  hero .overlay .details {
    bottom: 20px;
    padding-left: 15px;
  }

  hero .overlay .details h1 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 2px;
  }

  hero .overlay .details p {
    top: -24px !important;
  }

  item-details .cast, item-details .director, item-details .genre {
    line-height: 22px;
    display: inline;
    font-size: 12px;
/*    margin-left: 30px; */
  }

  item-details .cast span, item-details .director span, item-details .genre span {
    max-width: 72vw;
  }

  item-details .tag {
    line-height: 22px;
    font-size: 12px;
/*    margin-left: 30px; */
  }


  item-details .valueName,
  .tags-search-result-row-title .valueName {
    line-height: 22px;
    font-size: 12px;
  }
  .tags-search-result {
    padding-top: 60px!important;
  }

  hero .overlay .mini-controls {
    z-index: 2000;
  }

  hero .overlay .mini-controls img {
    float: left;
    display: block;
    width: 34px;
    height: 18px;
    opacity: .4;
    top: 14px !important;
    right: 25px !important;
  }
  hero .overlay .mini-controls img[dir='rtl'] {
    right: auto !important;
    left: 20px !important;
  }


  hero .overlay .mini-controls img.shadow {
    top: 15px !important;
    right: 24px !important;
  }

  hero .overlay .mini-controls {
    bottom: 55px;
  }
  hero .overlay .mini-controls-ltr {
    right: 20px;
  }
  hero .overlay .mini-controls-rtl {
    left: 30px;
  }

  hero .overlay .mini-controls button {
    position: absolute;
    top: 5px;
    right: -12px;
    font-size: 32px;
    width: auto;
  }

  hero item-picker.bottom {
    bottom: 0px;
  }

  #carousel .slick-track .tile .tile-loader img {
    position: relative!important;
    top: calc(50% - 24px)!important;
    left: calc(50% - 24px)!important;
    width: 48px!important;
    height: 48px!important;
  }

  #no_results {
    margin-left: 15px;
    font-size: 22px;
    margin-top: 60px;
  }
  #no_results[dir='rtl'] {
    margin-left: auto;
    margin-right: 5.5vw;
  }

  footer .social a {
    width: 25px;
    height: 25px;
    padding: 4px;
    font-size: 12px;
    border-width: 1px;
  }

  tags, sorting {
    font-size: 1.4em;
  }

  tags, tv-show {
    top: 25px !important;
    left: 15px !important;
  }

  item-details .tv_show {
    font-size: 14px;
    margin-top: -3px;
    margin-bottom: -32px;
/*    margin-left: 30px; */
  }

  item-details .tv_show span a {
    display: inline-block;
  }

  sorting {
    top: 25px !important;
    right: 15px;
  }

  sorting[dir='rtl'] {
    right: auto;
    left: 15px !important;
  }


  #purchase .expiry-wrapper {
    background-color: #fff;
    border-radius: 2px;
    border-style: solid;
    border-width: 1px;
    border-color: #ddd;
  }

  #purchase .expiry-wrapper select {
    border: none;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }

  #purchase .expiry-wrapper select:focus {
    box-shadow: none;
  }

  child-items .admin-episodes {
    left: initial;
    top: initial;
  }
  child-items .addChildPicker {
    left: initial;
    top: initial;
  }

  child-items .episodes,
  child-items span {
    font-size: 14px!important;
    margin: 3px 0 3px;
  }
  child-items .episodes {
    margin: 0!important;
  }

  child-items {
    font-size: 14px;
    max-width: 100%;
    top: 13px;
  }

  .item-details--close__fullscreen {
    top: 17px;
  }

  child-items ul li img label {
    width: 150px!important;
  }

  child-items ul li label {
    font-size: 10px!important;
  }

  .tile-inner .overlay-meta h4 {
    font-size: 22px!important;
  }

  slick-grid .slick-wrapper {
    margin-bottom: 4px!important;
  }

  #episodes .slick-track h4 {
    font-size: 9px!important;
  }

  #episodes .slick-track .overlay-meta {
    cursor: pointer;
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
  }

  .controls .controlsButtonsContainer {
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-top: 5px;
  }
  .controls .controlsButtonsContainer .leftContainer {
    -ms-flex: none;
        flex: none;
  }
  .controls .controlsButtonsContainer .centerContainer {
    display: none;
  }
  .controls .controlsButtonsContainer .rightContainer {
    -ms-flex: none;
        flex: none;
  }

  item-details .tier-description,
  item-details .inner-details .details-free-items {
    font-size: 12px;
  }

  child-items .episodes span.episodes-number {
    padding: 3px 5px;
    margin-top: 0!important;
    line-height: 24px;
  }
  child-items .episodes span.episodes-number > i {
    margin-right: 1vw;
    font-size: .8em;
  }

  child-items .episodes span.sort-episodes {
    display: none;
  }

  .titleWrapper {
    margin-top: 0;
  }
  .carousel-image {
    min-height: 18px;
  }
  .sub-title {
    font-size: 12px;
  }
  .skip-btn-container {
    bottom: calc(80px + 4%);
  }
  .skip-btn-text {
    font-size: 2.5vw;
  }
  .skip-btn-right {
    left: 5.5vw;
  }
  .skip-btn-icon {
    font-size: 3vw;
  }
  .progress-bar-container {
    height: 2px;
    bottom: -6px;
  }
  .browse-page-grid #carousel .slick-slide:last-child,
  .library-page-grid #carousel .slick-slide:last-child {
    padding-right: 4px;
  }
  #carousel .slick-slide {
    padding-right: 4px;
  }
  #carousel .slick-track .tile-selected {
    border-width: 3px;
    border-radius: 6px;
  }
  #carousel .slick-track .tile-selected .tile-inner {
    border-radius: 3px;
  }
  #carousel .tile-selected:after {
    bottom: -7px;
    border-width: 8px 13px 0 13px;
  }
  .trailer-actions-container {
    bottom: 10px;
  }

  item-details:-webkit-full-screen .description,
  item-details.fullscreen .description,
  item-details:-webkit-full-screen h1,
  item-details.fullscreen h1,
  item-details:-webkit-full-screen .details-container-btn,
  item-details.fullscreen .details-container-btn {
    margin-left: 6.5vw;
  }

  item-details:-moz-full-screen .description,
  item-details.fullscreen .description,
  item-details:-moz-full-screen h1,
  item-details.fullscreen h1,
  item-details:-moz-full-screen .details-container-btn,
  item-details.fullscreen .details-container-btn {
    margin-left: 6.5vw;
  }

  item-details:-ms-fullscreen .description,
  item-details.fullscreen .description,
  item-details:-ms-fullscreen h1,
  item-details.fullscreen h1,
  item-details:-ms-fullscreen .details-container-btn,
  item-details.fullscreen .details-container-btn {
    margin-left: 6.5vw;
  }

  item-details:fullscreen .description,
  item-details.fullscreen .description,
  item-details:fullscreen h1,
  item-details.fullscreen h1,
  item-details:fullscreen .details-container-btn,
  item-details.fullscreen .details-container-btn {
    margin-left: 6.5vw;
  }

  item-details h1 {
    margin-top: 13px;
    margin-bottom: 0px;
    font-size: 18px;
    overflow: hidden;
    max-width: 100vw;
  }

  item-details:-webkit-full-screen h1,
  item-details.fullscreen h1 {
    max-width: 54vw;
  }

  item-details:-moz-full-screen h1,
  item-details.fullscreen h1 {
    max-width: 54vw;
  }

  item-details:-ms-fullscreen h1,
  item-details.fullscreen h1 {
    max-width: 54vw;
  }

  item-details:fullscreen h1,
  item-details.fullscreen h1 {
    max-width: 54vw;
  }
  item-details:-webkit-full-screen .inner-details,
  item-details.fullscreen .inner-details {
    display: block;
  }
  item-details:-moz-full-screen .inner-details,
  item-details.fullscreen .inner-details {
    display: block;
  }
  item-details:-ms-fullscreen .inner-details,
  item-details.fullscreen .inner-details {
    display: block;
  }
  item-details:fullscreen .inner-details,
  item-details.fullscreen .inner-details {
    display: block;
  }
  item-details:-webkit-full-screen .tier-description,
  item-details:-webkit-full-screen .inner-details .details-short,
  item-details:-webkit-full-screen .inner-details .details-free-items,
  item-details:-webkit-full-screen .tag,
  item-details:-webkit-full-screen .cast,
  item-details:-webkit-full-screen .director,
  item-details:-webkit-full-screen .genre,
  item-details:-webkit-full-screen .tv_show,
  item-details:-webkit-full-screen tiers,
  item-details:-webkit-full-screen .playing-episode-details,
  item-details.fullscreen .tier-description,
  item-details.fullscreen .inner-details .details-short,
  item-details.fullscreen .inner-details .details-free-items,
  item-details.fullscreen .tag,
  item-details.fullscreen .cast,
  item-details.fullscreen .director,
  item-details.fullscreen .genre,
  item-details.fullscreen .tv_show,
  item-details.fullscreen tiers,
  item-details.fullscreen .playing-episode-details {
    margin-left: 6.5vw;
  }
  item-details:-moz-full-screen .tier-description,
  item-details:-moz-full-screen .inner-details .details-short,
  item-details:-moz-full-screen .inner-details .details-free-items,
  item-details:-moz-full-screen .tag,
  item-details:-moz-full-screen .cast,
  item-details:-moz-full-screen .director,
  item-details:-moz-full-screen .genre,
  item-details:-moz-full-screen .tv_show,
  item-details:-moz-full-screen tiers,
  item-details:-moz-full-screen .playing-episode-details,
  item-details.fullscreen .tier-description,
  item-details.fullscreen .inner-details .details-short,
  item-details.fullscreen .inner-details .details-free-items,
  item-details.fullscreen .tag,
  item-details.fullscreen .cast,
  item-details.fullscreen .director,
  item-details.fullscreen .genre,
  item-details.fullscreen .tv_show,
  item-details.fullscreen tiers,
  item-details.fullscreen .playing-episode-details {
    margin-left: 6.5vw;
  }
  item-details:-ms-fullscreen .tier-description,
  item-details:-ms-fullscreen .inner-details .details-short,
  item-details:-ms-fullscreen .inner-details .details-free-items,
  item-details:-ms-fullscreen .tag,
  item-details:-ms-fullscreen .cast,
  item-details:-ms-fullscreen .director,
  item-details:-ms-fullscreen .genre,
  item-details:-ms-fullscreen .tv_show,
  item-details:-ms-fullscreen tiers,
  item-details:-ms-fullscreen .playing-episode-details,
  item-details.fullscreen .tier-description,
  item-details.fullscreen .inner-details .details-short,
  item-details.fullscreen .inner-details .details-free-items,
  item-details.fullscreen .tag,
  item-details.fullscreen .cast,
  item-details.fullscreen .director,
  item-details.fullscreen .genre,
  item-details.fullscreen .tv_show,
  item-details.fullscreen tiers,
  item-details.fullscreen .playing-episode-details {
    margin-left: 6.5vw;
  }
  item-details:fullscreen .tier-description,
  item-details:fullscreen .inner-details .details-short,
  item-details:fullscreen .inner-details .details-free-items,
  item-details:fullscreen .tag,
  item-details:fullscreen .cast,
  item-details:fullscreen .director,
  item-details:fullscreen .genre,
  item-details:fullscreen .tv_show,
  item-details:fullscreen tiers,
  item-details:fullscreen .playing-episode-details,
  item-details.fullscreen .tier-description,
  item-details.fullscreen .inner-details .details-short,
  item-details.fullscreen .inner-details .details-free-items,
  item-details.fullscreen .tag,
  item-details.fullscreen .cast,
  item-details.fullscreen .director,
  item-details.fullscreen .genre,
  item-details.fullscreen .tv_show,
  item-details.fullscreen tiers,
  item-details.fullscreen .playing-episode-details {
    margin-left: 6.5vw;
  }
  body.ios-webview-fullscreen item-details h1{
    margin-left: 6.5vw;
    max-width: 54vw;
  }

  body.ios-webview-fullscreen .inner-details {
    display: block;
  }

  body.ios-webview-fullscreen item-details .tier-description,
  body.ios-webview-fullscreen item-details .inner-details .details-short,
  body.ios-webview-fullscreen item-details .inner-details .details-free-items,
  body.ios-webview-fullscreen item-details .tag,
  body.ios-webview-fullscreen item-details .cast,
  body.ios-webview-fullscreen item-details .director,
  body.ios-webview-fullscreen item-details .genre,
  body.ios-webview-fullscreen item-details .tv_show,
  body.ios-webview-fullscreen item-details tiers,
  body.ios-webview-fullscreen item-details .playing-episode-details {
    margin-left: 6.5vw;
  }
  body.fullwindow item-details h1{
    margin-left: 6.5vw;
    max-width: 54vw;
  }

  body.fullwindow .inner-details {
    display: block;
  }

  body.fullwindow item-details .tier-description,
  body.fullwindow item-details .inner-details .details-short,
  body.fullwindow item-details .inner-details .details-free-items,
  body.fullwindow item-details .description,
  body.fullwindow item-details .tag,
  body.fullwindow item-details .cast,
  body.fullwindow item-details .director,
  body.fullwindow item-details .genre,
  body.fullwindow item-details .tv_show,
  body.fullwindow item-details tiers,
  body.fullwindow item-details .playing-episode-details {
    margin-left: 6.5vw;
  }
  .shaka-text-container {
    bottom: 2%;
  }
  .shaka-text-container span {
    font-size: 18px;
  }
  .video::-webkit-media-text-track-container {
    position: absolute !important;
    top: unset !important;
    bottom: 2% !important;
  }
  .video::-webkit-media-text-track-display {
    font-size: 18px !important;
  }
  .shaka-text-container-upper {
    bottom: calc(80px + 4%);
  }
  .video-fairplayer-text-container-upper::-webkit-media-text-track-container {
    position: absolute !important;
    top: unset !important;
    bottom: calc(80px + 4%) !important;
  }
  tiers .remove-ads-button-wrapper button {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    border-radius: 3px;
    padding: 3px 8px;
  }

  .play-trailer-btn {
    position: relative;
    top: 8px;
  }

  .play-trailer-btn a, .skip-trailer-btn a {
    padding: 3px 6px;
  }

  .skip-trailer-wrapper {
    bottom: 36px;
    right: 3px;
    text-align: right;
  }

  item-details .details-container-btn .egp-button,
  item-details .details-container-btn .add-to-favourites-btn,
  item-details .details-container-btn .watch-more-btn {
    margin-top: 13px;
    margin-bottom: 0;
    font-size: 14px;
  }

  item-details .details-container-btn .add-to-favourites-btn > span {
    font-size: 14px;
  }

  .favourites-list-btn__loader {
    width: 14px;
    height: 14px;
    display: inline-block;
    padding: 2px 0;
  }

  .item-details--close {
    display: none;
  }

  live-channels-preview {
    /* max-width: 100%;
    width: 40%; */
    top: 12px;
    left: 63%;
  }

  live-channels-preview .scroller {
    height: calc(100% - 24px);
  }

  #playing-now-programs .progress-bar-wrapper {
    margin-top: 3px;
  }

  /* #playing-now-programs .program-details-container {
    height: 18vw;
  }

  #playing-now-programs .channel-thumbnail {
    width: 10vw;
    height: 10vw;
  }

  #playing-now-programs .program-title {
    font-size: 2.5vw !important;
  }
  #playing-now-programs .program-time {
    font-size: 2vw !important;
    justify-content: center;
  } */

  .btn.remove-from-history {
    font-size: 14px;
    position: relative;
    top: 8px;
    padding: 4px 12px;
  }

  .item-details-rating .item-details-rating-value {
    margin-top: 16px;
  }

  .item-details-rating .item-details-rating-value > img {
    max-height: 23px;
    margin-top: 0px;
  }
  .browse-page-grid .browse-heading-actions {
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  slick-slider.banner-slider {
    padding-top: 0;
  }
}

@media screen and (max-width: 600px) {
  live-channels-preview {
    display: none;
  }
}

hamburger {
  transition: top .3s ease;
}

hamburger.top {
  top: -6px;
  transition: top .3s ease;
}

hamburger button {
  background: none;
  border: none;
  padding: 5px;
  font-size: 22px;
  text-shadow: 2px 2px 2px #111;
  color: #eee;
  opacity: 1;
  transition: opacity .3s ease;
}

hamburger .open button {
  opacity: .6;
  transition: opacity .3s ease;
}

.dropdown-menu {
  text-align: initial;
}

hamburger .dropdown-menu {
  background-color: rgba(32, 32, 32, .8);
  margin-top: -5px;
}

hamburger .dropdown-item {
  font-size: 18px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #eee;
}

hamburger .dropdown-item a {
  color: #eee !important;
}

hamburger .dropdown-item a:focus, hamburger .dropdown-item a:hover {
  text-decoration: none;
}

hamburger .dropdown-item a.bold {
  font-weight: 800;
}

hamburger hr {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 15px;
  margin-right: 15px;
  border-style: dashed;
  border-color: #aaa;
  border-width: 1px;
}

add-to-home-screen {
  width: calc(100% - 10px);
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 1000;
}

add-to-home-screen .instructions {
  width: 100%;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  background-color: rgba(32, 32, 32, .8);
  color: #eee;
  font-size: 14px;
  text-align: center;
}

add-to-home-screen .instructions img {
  position: relative;
  top: -2px;
  height: 14px;
}

add-to-home-screen .instructions .fa {
  font-size: 12px;
  font-weight: lighter;
}

add-to-home-screen button {
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 16px;
  color: #eee;
  background: none;
  border: none;
  padding: 0px 5px;
}

add-to-home-screen .pointer {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(32, 32, 32, .8);
  width: 10px;
  height: 10px;
  position: relative;
  top: -1px;
  left: calc(50% - 10px);
}
.iti {
  position: relative;
  display: inline-block; }
  .iti * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .iti__hide {
    display: none; }
  .iti__v-hide {
    visibility: hidden; }
  .iti input, .iti input[type=text], .iti input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 100%;
    padding: 0 6px 0 8px; }
  .iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555; }
    .iti__arrow--up {
      border-top: none;
      border-bottom: 4px solid #555; }
  .iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .iti__country-list--dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    @media (max-width: 500px) {
      .iti__country-list {
        white-space: normal; } }
  .iti__flag-box {
    display: inline-block;
    width: 20px; }
  .iti__divider {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #CCC; }
  .iti__country {
    padding: 5px 10px;
    outline: none; }
  .iti__dial-code {
    color: #999; }
  .iti__country.iti__highlight {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti__flag-box, .iti__country-name, .iti__dial-code {
    vertical-align: middle; }
  .iti__flag-box, .iti__country-name {
    margin-right: 6px; }
  .iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    right: auto;
    left: 0; }
  .iti--allow-dropdown .iti__flag-container:hover {
    cursor: pointer; }
    .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
  .iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
    cursor: default; }
    .iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
    .iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
      background-color: transparent; }
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.05); }
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px; }
  .iti--container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .iti--container:hover {
      cursor: pointer; }

.iti-mobile .iti--container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .iti__country-list {
  max-height: 100%;
  width: 100%; }

.iti-mobile .iti__country {
  padding: 10px 10px;
  line-height: 1.5em; }

.iti__flag {
  width: 20px; }
  .iti__flag.iti__be {
    width: 18px; }
  .iti__flag.iti__ch {
    width: 15px; }
  .iti__flag.iti__mc {
    width: 19px; }
  .iti__flag.iti__ne {
    width: 18px; }
  .iti__flag.iti__np {
    width: 13px; }
  .iti__flag.iti__va {
    width: 15px; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-size: 5652px 15px; } }
  .iti__flag.iti__ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti__flag.iti__ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti__flag.iti__ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti__flag.iti__af {
    height: 14px;
    background-position: -66px 0px; }
  .iti__flag.iti__ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti__flag.iti__ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti__flag.iti__al {
    height: 15px;
    background-position: -132px 0px; }
  .iti__flag.iti__am {
    height: 10px;
    background-position: -154px 0px; }
  .iti__flag.iti__ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti__flag.iti__aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti__flag.iti__ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti__flag.iti__as {
    height: 10px;
    background-position: -242px 0px; }
  .iti__flag.iti__at {
    height: 14px;
    background-position: -264px 0px; }
  .iti__flag.iti__au {
    height: 10px;
    background-position: -286px 0px; }
  .iti__flag.iti__aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti__flag.iti__ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti__flag.iti__az {
    height: 10px;
    background-position: -352px 0px; }
  .iti__flag.iti__ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti__flag.iti__bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti__flag.iti__bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti__flag.iti__be {
    height: 15px;
    background-position: -440px 0px; }
  .iti__flag.iti__bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti__flag.iti__bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti__flag.iti__bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti__flag.iti__bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti__flag.iti__bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti__flag.iti__bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti__flag.iti__bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti__flag.iti__bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti__flag.iti__bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti__flag.iti__bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti__flag.iti__br {
    height: 14px;
    background-position: -680px 0px; }
  .iti__flag.iti__bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti__flag.iti__bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti__flag.iti__bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti__flag.iti__bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti__flag.iti__by {
    height: 10px;
    background-position: -790px 0px; }
  .iti__flag.iti__bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti__flag.iti__ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti__flag.iti__cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti__flag.iti__cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti__flag.iti__cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti__flag.iti__cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti__flag.iti__ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti__flag.iti__ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti__flag.iti__ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti__flag.iti__cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti__flag.iti__cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti__flag.iti__cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti__flag.iti__co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti__flag.iti__cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti__flag.iti__cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti__flag.iti__cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti__flag.iti__cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti__flag.iti__cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti__flag.iti__cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti__flag.iti__cy {
    height: 14px;
    background-position: -1225px 0px; }
  .iti__flag.iti__cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti__flag.iti__de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti__flag.iti__dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti__flag.iti__dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti__flag.iti__dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti__flag.iti__dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti__flag.iti__do {
    height: 14px;
    background-position: -1379px 0px; }
  .iti__flag.iti__dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti__flag.iti__ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti__flag.iti__ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti__flag.iti__ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti__flag.iti__eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti__flag.iti__eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti__flag.iti__er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti__flag.iti__es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti__flag.iti__et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti__flag.iti__eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti__flag.iti__fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti__flag.iti__fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti__flag.iti__fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti__flag.iti__fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti__flag.iti__fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti__flag.iti__fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti__flag.iti__ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti__flag.iti__gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti__flag.iti__gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti__flag.iti__ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti__flag.iti__gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti__flag.iti__gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti__flag.iti__gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti__flag.iti__gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti__flag.iti__gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti__flag.iti__gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti__flag.iti__gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti__flag.iti__gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti__flag.iti__gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti__flag.iti__gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti__flag.iti__gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti__flag.iti__gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti__flag.iti__gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti__flag.iti__gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti__flag.iti__gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti__flag.iti__hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti__flag.iti__hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti__flag.iti__hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti__flag.iti__hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti__flag.iti__ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti__flag.iti__hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti__flag.iti__ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti__flag.iti__id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti__flag.iti__ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti__flag.iti__il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti__flag.iti__im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti__flag.iti__in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti__flag.iti__io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti__flag.iti__iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti__flag.iti__ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti__flag.iti__is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti__flag.iti__it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti__flag.iti__je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti__flag.iti__jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti__flag.iti__jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti__flag.iti__jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti__flag.iti__ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti__flag.iti__kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti__flag.iti__kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti__flag.iti__ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti__flag.iti__km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti__flag.iti__kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti__flag.iti__kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti__flag.iti__kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti__flag.iti__kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti__flag.iti__ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti__flag.iti__kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti__flag.iti__la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti__flag.iti__lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti__flag.iti__lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti__flag.iti__li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti__flag.iti__lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti__flag.iti__lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti__flag.iti__ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti__flag.iti__lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti__flag.iti__lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti__flag.iti__lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti__flag.iti__ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti__flag.iti__ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti__flag.iti__mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti__flag.iti__md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti__flag.iti__me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti__flag.iti__mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti__flag.iti__mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti__flag.iti__mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti__flag.iti__mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti__flag.iti__ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti__flag.iti__mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti__flag.iti__mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti__flag.iti__mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti__flag.iti__mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti__flag.iti__mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti__flag.iti__mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti__flag.iti__ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti__flag.iti__mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti__flag.iti__mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti__flag.iti__mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti__flag.iti__mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti__flag.iti__mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti__flag.iti__my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti__flag.iti__mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti__flag.iti__na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti__flag.iti__nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti__flag.iti__ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti__flag.iti__nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti__flag.iti__ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti__flag.iti__ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti__flag.iti__nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti__flag.iti__no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti__flag.iti__np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti__flag.iti__nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti__flag.iti__nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti__flag.iti__nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti__flag.iti__om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti__flag.iti__pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti__flag.iti__pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti__flag.iti__pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti__flag.iti__pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti__flag.iti__ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti__flag.iti__pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti__flag.iti__pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti__flag.iti__pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti__flag.iti__pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti__flag.iti__pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti__flag.iti__ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti__flag.iti__pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti__flag.iti__pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti__flag.iti__py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti__flag.iti__qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti__flag.iti__re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti__flag.iti__ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti__flag.iti__rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti__flag.iti__ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti__flag.iti__rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti__flag.iti__sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti__flag.iti__sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti__flag.iti__sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti__flag.iti__sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti__flag.iti__se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti__flag.iti__sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti__flag.iti__sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti__flag.iti__si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti__flag.iti__sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti__flag.iti__sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti__flag.iti__sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti__flag.iti__sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti__flag.iti__sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti__flag.iti__so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti__flag.iti__sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti__flag.iti__ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti__flag.iti__st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti__flag.iti__sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti__flag.iti__sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti__flag.iti__sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti__flag.iti__sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti__flag.iti__ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti__flag.iti__tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti__flag.iti__td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti__flag.iti__tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti__flag.iti__tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti__flag.iti__th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti__flag.iti__tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti__flag.iti__tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti__flag.iti__tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti__flag.iti__tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti__flag.iti__tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti__flag.iti__to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti__flag.iti__tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti__flag.iti__tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti__flag.iti__tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti__flag.iti__tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti__flag.iti__tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti__flag.iti__ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti__flag.iti__ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti__flag.iti__um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti__flag.iti__un {
    height: 14px;
    background-position: -5241px 0px; }
  .iti__flag.iti__us {
    height: 11px;
    background-position: -5263px 0px; }
  .iti__flag.iti__uy {
    height: 14px;
    background-position: -5285px 0px; }
  .iti__flag.iti__uz {
    height: 10px;
    background-position: -5307px 0px; }
  .iti__flag.iti__va {
    height: 15px;
    background-position: -5329px 0px; }
  .iti__flag.iti__vc {
    height: 14px;
    background-position: -5346px 0px; }
  .iti__flag.iti__ve {
    height: 14px;
    background-position: -5368px 0px; }
  .iti__flag.iti__vg {
    height: 10px;
    background-position: -5390px 0px; }
  .iti__flag.iti__vi {
    height: 14px;
    background-position: -5412px 0px; }
  .iti__flag.iti__vn {
    height: 14px;
    background-position: -5434px 0px; }
  .iti__flag.iti__vu {
    height: 12px;
    background-position: -5456px 0px; }
  .iti__flag.iti__wf {
    height: 14px;
    background-position: -5478px 0px; }
  .iti__flag.iti__ws {
    height: 10px;
    background-position: -5500px 0px; }
  .iti__flag.iti__xk {
    height: 15px;
    background-position: -5522px 0px; }
  .iti__flag.iti__ye {
    height: 14px;
    background-position: -5544px 0px; }
  .iti__flag.iti__yt {
    height: 14px;
    background-position: -5566px 0px; }
  .iti__flag.iti__za {
    height: 14px;
    background-position: -5588px 0px; }
  .iti__flag.iti__zm {
    height: 14px;
    background-position: -5610px 0px; }
  .iti__flag.iti__zw {
    height: 10px;
    background-position: -5632px 0px; }

.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url(/assets/flags.png);
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url(/assets/flags@2x.png); } }

.iti__flag.iti__np {
  background-color: transparent; }
.tv-code {
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-align: center;
  align-items: center;
}

.tv-code form button.primary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  background-color: #283083;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  border: 0;
  line-height: 1;
}

.tv-code form button.primary[disabled] {
  background-color: #3b4283;
}

.tv-code h3 {
  text-align: center;
}

.tv-code form {
  padding: 20px;
  border: 2px solid #7a7a7a;
}

.tv-code form input {
  border-radius: 0;
  height: 40px;
  font-size: 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid #7a7a7a;
  padding: 0;
  color: #ffffff;
  outline: none !important;
  box-shadow: none !important;
}

.tv-code form .form-group:last-child {
  margin: 0;
}

.tv-code form input:focus {
  border-bottom: 2px solid #ffffff;
}
.tv-code form button > img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.tv-code form button > span {
  font-size: 20px;
  line-height: 30px;
}
.file-editor-rules {
  font-size: 1.1vw;
}
.file-editor-rules button {
  border: none;
  background-color: #333;
  padding: .5vw 1vw;
  font-size: 1.1vw;
  border-radius: 3px;
}
.file-editor-rules button:hover {
  background-color: #2b2b2b;
}
.file-editor-rules__type {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.file-editor-rules__type > span {
  margin-right: 1vw;
  font-size: 1.1vw;
}
.file-editor-rules__list {
  padding-bottom: 10px;
}
.file-editor-rules__list-body {
  max-height: 15vh;
  overflow: auto;
}
.file-editor-rules__date {
  width: 20vw;
  padding: .5vw;
  font-size: 1.1vw;
  border-radius: 3px;
  border: none;
  background-color: #292929;
}
.file-editor-rules__list-item .row {
  margin: 0 0 .5vw 0;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.file-editor-rules__list-item .row::before,
.file-editor-rules__list-item .row::after {
  content: unset;
  display: unset;
}
.file-editor-rules__countries {
  width: 100%;
}
.file-editor-rules__countries tags-input {
  margin: 0;
  width: 100%;
  border: 1px solid #696969;
  border-radius: 3px;
  background-color: #fff;
  padding: .5vw;
}
.file-editor-rules__countries tags-input input {
  font-size: 1vw;
  color: #222!important;
  float: none;
}
.file-editor-rules__countries tags-input .tag-list {
  margin: 0;
  width: auto;
  display: inline-block;
}
.file-editor-rules__countries tags-input .tag-item {
  display: inline-block;
  background-color: #ccc;
  box-shadow: none;
  font-size: 1vw;
  color: #222!important;
}
.file-editor-rules__countries tags-input .tag-item span {
  color: #222!important;
}

.file-editor-rules__countries tags-input .tag-item a.remove-button {
  text-decoration: none;
  color: #222!important;
}

.file-editor-rules button .file-editor-rules__countries-counter {
  font-size: .7vw;
  display: inline-block;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: #fff;
  color: #333;
  vertical-align: middle;
  position: absolute;
  top: .4vw;
  right: .4vw;
}

.file-editor-rules button .file-editor-rules__countries-counter > span {
  font-size: .7vw;
  color: #333!important;
  text-shadow: none;
  vertical-align: middle;
}.file-editor-cuepoints {
    height: 200px;
}

.file-editor-cuepoints button {
    border: none;
    background-color: #333;
    padding: .5vw 1vw;
    font-size: 1.1vw;
    border-radius: 3px;
}

.file-editor-cuepoints button:hover {
    background-color: #2b2b2b;
}

.file-editor-cuepoints .add-cuepoints-form {
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

.file-editor-cuepoints .add-cuepoints-form > input {
    -ms-flex: 1;
        flex: 1;
    color: #222;
    font-size: 1vw;
}

.file-editor-cuepoints .error {
    color: red !important;
    font-size: 1.25rem !important;
    text-align: left !important;
    margin-top: 5px;
}

.file-editor-cuepoints tags-input {
    width: 100%;
    margin: 5px 0 0;
}

.file-editor-cuepoints tags-input input {
    display: none;
}

.file-editor-cuepoints tags-input .tag-list {
    margin: 0;
    width: auto;
    display: inline-block;
}
.file-editor-cuepoints tags-input .tag-item {
    display: inline-block;
    background-color: #ccc;
    box-shadow: none;
    font-size: 1vw;
    color: #222 !important;
}
.file-editor-cuepoints tags-input .tag-item span {
    color: #222 !important;
}

.file-editor-cuepoints tags-input .tag-item a.remove-button {
    text-decoration: none;
    color: #222 !important;
}.file-editor-extra {
  padding-bottom: 10px;
}
.file-editor-extra__inline-form-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.file-editor-extra__inline-form-group-item {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: end;
}
.file-editor-extra .file-editor-extra__form-group {
  display: -ms-flexbox;
  display: flex;
}
.file-editor-extra .file-editor-extra__form-group input {
  width: 100%;
  margin-right: 10px;
  padding: .5vw;
  font-size: 1.1vw;
  border-radius: 3px;
  border: none;
  background-color: #292929;
}

.file-editor-extra .file-editor-extra__form-group button {
  border: none;
  background-color: #333;
  padding: .5vw 1vw;
  font-size: 1.1vw;
  border-radius: 3px;
}.ng-confirm-episodes-explorer-modal {
  perspective: unset;
  z-index: 2147483663!important;
}
.ng-confirm-episodes-explorer-modal .ng-confirm-scrollpane{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
  perspective: unset;
}

.ng-confirm-episodes-explorer-modal .container {
  width: 100% !important;
}

.ng-confirm-episodes-explorer-modal .ng-confirm-bg {
  background-color: rgb(17, 17, 17);
}
.ng-confirm-episodes-explorer-modal .ng-confirm-box-p {
  min-width: 300px;
  max-width: 400px;
  padding: 0;
}
.episodes-explorer-modal .ng-confirm-closeIcon {
  top: 10px!important;
  z-index: 1;
}
.episodes-explorer-modal .ng-confirm-closeIcon span {
  color: #fff!important;
}
.episodes-explorer-modal .ng-confirm-box {
  margin: 5vh 0 0!important;
  padding: 0!important;
  background-color: transparent!important;
  transition-timing-function: unset!important;
  border-radius: 0;
}

.episodes-explorer-modal
.ng-confirm-box
.ng-confirm-content-pane {
  margin-bottom: 0!important;
  transition-timing-function: unset!important;
}
.episodes-explorer {
  height: 80vh;
  overflow: hidden;
  padding: 10px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  background-color: rgba(0,0,0,.8);
}
.episodes-explorer .episodes-title {
  padding: 0 30px;
  overflow: hidden;
}
.episodes-explorer .episodes-title h2 {
  width: 100%;
  margin: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episodes-explorer .episodes-search {
  padding: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: stretch;
      justify-content: stretch;
}
.episodes-explorer .episodes-search .episodes-search-input {
  position: relative;
  -ms-flex: 1;
      flex: 1;
}
.episodes-explorer .episodes-search .episodes-search-input input {
  width: 100%;
  background-color: transparent;
  padding: 5px 30px 5px 10px;
  color: #dddddd;
  font-size: 1.2em;
  border: 1px solid #555;
  border-radius: 4px;
}
.episodes-explorer .episodes-search .episodes-search-input input:-ms-input-placeholder {
  color: #555555;
  font-weight: 600;
}
.episodes-explorer .episodes-search .episodes-search-input input::placeholder {
  color: #555555;
  font-weight: 600;
}
.episodes-explorer .episodes-search .fa.fa-search {
  position: absolute;
  right: 10px;
  top: 10px;
}
.episodes-explorer .episodes-search .episodes-search-dropdown,
.episodes-explorer .episodes-search .episodes-search-sort {
  -ms-flex: 0;
      flex: 0;
  padding: 0 0 0 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
.episodes-explorer .episodes-list {
  -ms-flex: 1;
      flex: 1;
  overflow: auto;
  padding: 0 10px;
  -webkit-overflow-scrolling: touch;
}

.episodes-explorer .episodes-search .episodes-search-dropdown button {
  background-color: transparent;
  border: 1px solid #555;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 5px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  white-space: nowrap;
  text-transform: capitalize;
}
.episodes-explorer .episodes-search .episodes-search-dropdown button i.fa {
  margin-left: 5px;
  font-size: 0.7em;
}
.episodes-explorer .episodes-search .episodes-search-dropdown .dropdown-menu {
  max-width: 200px;
  left: auto;
  right: 0;
  background-color: #555;
  padding: 0;
  margin: 0;
}
.episodes-explorer .episodes-search .episodes-search-dropdown .dropdown-menu .dropdown-menu__item {
  padding: 5px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
}
.episodes-explorer .episodes-search .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:hover {
  background-color: #444444;
}
.episodes-explorer .episodes-search .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:first-child {
  padding: 10px 10px 5px;
}
.episodes-explorer .episodes-search .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:last-child {
  padding: 5px 10px 10px;
}
.itemVideoContainer .episodes-explorer-modal .ng-confirm-box {
  opacity: 1!important;
}
.itemVideoContainer .episodes-explorer-modal .ng-confirm-content-pane {
  height: 75vh!important;
}
.fullscreen-episode-explorer-container,
.fullscreen-episode-explorer__backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000005;
}
.fullscreen-episode-explorer__backdrop {
  background-color: rgba(0,0,0,.8);
  z-index: 100;
}
.fullscreen-episode-explorer-wrapper {
  position: absolute;
  height: 80vh;
  width: 90vw;
  max-width: 400px;
  top: 5vh;
  left: 50%;
  z-index: 101;
  margin: 0 auto;
  transform: translateX(-50%);
}
.episodes-close-wrapper {
  padding: 10px;
}
.episodes-close-wrapper button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
  color: #000;
  padding: 3px 8px;
  font-size: 1.2em;
}
.episodes-explorer .episodes-close-icon {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  right: 5px;
  top: 5px;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.episodes-explorer .episodes-close-icon:hover {
  color: #fff;
}
.episodes-explorer-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  cursor: pointer;
  margin: 0 -10px 10px;
  padding: 0 10px 0;
  min-height: 43px;
}
.episodes-explorer-item,
.episodes-explorer-item p {
  color: #fff!important;
}
.episodes-explorer-item .episodes-loader {
  height: 43px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(17,17,17,.9);
  z-index: 10;
}
.episodes-explorer-item .episodes-loader > img {
  height: 100%!important;
  width: auto!important;
}
.episodes-explorer-item .thumbnail {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 0;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  border-radius: 0;
  z-index: 1;
}
.episodes-explorer-item .thumbnail .overlay-play-button {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  background-color: rgba(17,17,17, .5);
  text-align: center;
  font-size: 2.5em;
  padding: 0;
}
.episodes-explorer-item .thumbnail .overlay-play-button .fa {
  margin-right: 0;
  margin-left: 7px;
}
.episodes-explorer-item .title {
  padding-left: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  vertical-align: middle;
}

.episodes-explorer-item .title p {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
}

.episodes-explorer-item .title .title-info {
  width: 100%;
  overflow: hidden;
  padding-right: 10px;
}
.episodes-explorer-item .overlay-progress {
  width: 80%;
  height: 3px;
  background-color: #999;
}
.episodes-explorer-item .overlay-progress .overlay-progress-bar {
  height: 3px;
}
.episodes-explorer-item__list-view {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  transition: opacity .3s .2s;
}
.episodes-explorer-item.selected {
  box-sizing: content-box;
  padding: 10px;
  background: #191919;
  cursor: default;
}
.episodes-explorer-item.selected .episodes-explorer-item__list-view {
  transition: opacity .3s 0s;
}
.episodes-explorer-item.selected .episodes-explorer-item__full-view {
  transition: opacity .3s .2s;
}
.episodes-explorer-item__list-view .thumbnail-wrapper {
  width: 70px;
}
.episodes-explorer-item__list-view .title {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: start;
}
.episodes-explorer-item .episodes-explorer-item__list-view .title p {
  padding-bottom: 5px;
}
.episodes-explorer-item__full-view {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: opacity .3s 0s;
  overflow: hidden;
}
.episodes-explorer-item.selected .episodes-explorer-item__list-view {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.episodes-explorer-item.selected .episodes-explorer-item__full-view {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.episodes-explorer-item__full-view .thumbnail-wrapper {
  padding-bottom: 10px;
}
.episodes-explorer-item__full-view .title {
  padding: 0;
}
.episodes-explorer-item__full-view .title .title-info p {
  font-size: 1.2em;
}
.episodes-explorer-item__full-view .description {
  padding-top: 10px;
  max-height: 100px;
  overflow: auto;
}
.episodes-explorer-item__full-view .overlay-progress {
  width: 100%;
  background-color: transparent;
}
.episodes-explorer-item.selected .edit-episode-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 3rem;
  line-height: 1;
  background: transparent;
  border-width: 0;
  z-index: 2;
  opacity: 0.5;
}
.episodes-explorer-item.selected .edit-episode-btn:hover {
  opacity: 1;
}.ng-confirm-epg-explorer-modal {
    perspective: unset;
    z-index: 999999!important;
}

.ng-confirm-epg-explorer-modal .ng-confirm-scrollpane{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    overflow: hidden;
    perspective: unset;
}

.ng-confirm-epg-explorer-modal .container {
    width: 100% !important;
}

.ng-confirm-epg-explorer-modal .ng-confirm-bg {
    background-color: rgb(17, 17, 17);
}
.ng-confirm-epg-explorer-modal .ng-confirm-box-p {
    min-width: 300px;
    max-width: 1380px;
    width: 92vw;
    padding: 0;
}
.epg-explorer-modal .ng-confirm-closeIcon {
    top: 10px!important;
    z-index: 1;
}
.epg-explorer-modal .ng-confirm-closeIcon span {
    color: #fff!important;
}
.epg-explorer-modal .ng-confirm-box {
    margin: 5vh 0 0!important;
    padding: 0!important;
    background-color: transparent!important;
    transition-timing-function: unset!important;
    border-radius: 0;
}

.epg-explorer-modal,
.ng-confirm-box,
.ng-confirm-content-pane {
    margin-bottom: 0!important;
    transition-timing-function: unset!important;
}
.epg-explorer {
    max-height: 70vh;
    min-height: 20vh;
    overflow: hidden;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    background-color: rgba(0,0,0,.8);
    flex-direction: column;
    height: 100%;
}

.epg-explorer__channels-list {
    padding: 0 10px;
}

.epg-explorer__timetable-wrapper,
.epg-explorer__timetable-timeframe-wrapper {
    display: inline-block;
}

.epg-explorer__timetable-timeframe-wrapper {
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.epg-explorer__btn_back,
.epg-explorer__btn_forward {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    position: absolute;
    font-size: 24px;
    background-color: black;
    height: 100%;
    top: 0;
    color: white;
    z-index: 1;
    width: 48px;
}
.epg-explorer__btn_back:hover,
.epg-explorer__btn_forward:hover {
    background-color: #333;
}
.epg-explorer__btn_back {
    left: 0;
}
.epg-explorer__btn_forward {
    right: 0;
}
.epg-explorer__timetable-wrapper {
    scrollbar-width: none;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    height: 100%;
    width: 100%;
    padding-left: 0;
}
.epg-explorer__programs-scroller-wrapper {
    overflow-x: hidden;
    height: 100%;
    padding-left: 0;
    position: relative;
}
.epg-explorer__timetable-wrapper::-webkit-scrollbar {
    display: none;
}
.epg-explorer__timetable-timeframe-scroller,
.epg-explorer__timetable-programs {
    display: inline-block;
}

.epg-explorer__timetable-time,
.epg-explorer__content {
    display: -ms-flexbox;
    display: flex;
}

.epg-explorer__content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -ms-flex-direction: column;
        flex-direction: column;
}
.epg-explorer__content-header,
.epg-explorer__content-body {
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}
.epg-explorer__content-body {
    overflow: auto;
}
.epg-explorer__content-header {
    -ms-flex-direction: column;
        flex-direction: column;
}

.epg-explorer__channels-list__date,
.epg-explorer__timetable-time {
    height: 39px;
}

.epg-explorer__timetable-time {
    width: 100%;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 0 5px;
}

.epg-explorer__timetable-channel-row {
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    margin-bottom: 5px;
}
epg-channel:last-child {
    margin-bottom: 0;
}
.epg-explorer__timetable-timeframe {
    display: inline-block;
    font-size: 14px;
    color: #bbb;
    line-height: 34px;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(255,255,255,.15);
}
.epg-explorer__timetable-timeframe:not(:first-child) {
    border-left: 5px solid rgba(255,255,255,.1);
}
.epg-explorer__timetable-timeframe:first-child {
    border-left: 5px solid rgba(0, 0, 0, 1);
}
.epg-explorer__timetable-programs {
    display: inline-block;
    position: relative;
    font-size: initial;
    padding: 0;
}
.epg-explorer__programs {
    width: 100%;
}
.epg-explorer__timetable-program {
    display: inline-block;
    height: 68px;
    vertical-align: middle;
    text-overflow: ellipsis;
    box-sizing: border-box;
    background-color: #4a4a4a;
    cursor: pointer;
    font-size: 13px;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    color: rgba(255,255,255,.8);
}
.epg-explorer__timetable-program.empty-program:last-child {
    -ms-flex: 1;
        flex: 1;
    width: 100%;
    background: rgba(0,0,0,1)!important;
}
.epg-explorer__timetable-program:last-child {
    min-width: 150px;
}
.epg-explorer__timetable-program.empty-program:last-child,
.epg-explorer__timetable-program.empty {
    color: #525252;
}

.epg-explorer__timetable-program:hover(not) {
    color: #fff;
    background-color: #525252;
}

.epg-explorer__timetable-program.empty {
    background-color: transparent;
    border-right: 1px solid transparent;
}
.epg-explorer__timetable-program.now-playing {
    background-color: #e6e6e6;
    font-weight: bold;
    border-right: 3px solid rgba(255,255,255,.2);
    color: #333;
}

.epg-explorer__timetable-program.now-playing:hover {
    color: black;
    background-color: white;
}

.epg-explorer__timetable-program.in-blackout {
    background-color: #222;
    color: rgba(255,255,255,.3);
    font-weight: normal;
    border: none;
}

.epg-explorer__timetable-program.in-blackout:hover {
    cursor: default;
    background-color: #222;
    color: rgba(255,255,255,.3);
    font-weight: normal;
    border: none;
}

.epg-explorer__channels-list-item-thumbnail {
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    cursor: pointer;
    height: 68px;
    width: 68px;
    margin-bottom: 5px;
}
.epg-explorer__channels-list-item-thumbnail:last-child {
    margin-bottom: 0;
}

.epg-explorer__active-channel {
   border: 3px solid #fff;
   border-radius: 0;
}

.epg-explorer__actions {
    padding: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: end;
}
.epg-explorer__actions .btn-close {
    display: block;
    color: #000;
    box-sizing: border-box;
}
.epg-explorer__timetable-current {
    position: absolute;
    border-right: 3px solid;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    width: 1px;
}

.epg-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
}

.epg-item-thumbnail {
    -ms-flex: 1;
        flex: 1;
    object-fit: cover;
    position: relative;
    min-height: 20vw;
    background-color: transparent;
}

.epg-item-thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  cursor: pointer;
}

.epg-item-details-container {
    -ms-flex: 1;
        flex: 1;
}

.epg-item-details {
    padding: 10px;
}

.epg-item-description {
    font-size: 1rem;
    margin: 5px 0 0 0;
    padding-top: 10px;
}

.epg-explorer__timetable-program-title {
    width: 100%;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 24px;
}

.epg-explorer__timetable-program-info {
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 15px 0 15px 11px;
    border-left: 5px solid black;
    position: -webkit-sticky;
    position: sticky;
    height: 100%;
    left: 0;
    font-size: 14px;
}

.epg-explorer__timetable-date {
    display: -ms-flexbox;
    display: flex;
    padding: 10px 10px;
    position: relative;
}
.epg-explorer__timetable-date-cell-now {
    min-width: 88px;
    padding: 0 10px;
}
.epg-explorer__timetable-date-cell-now button {
    width: 100%;
}
.epg-explorer__timetable-date-days-wrapper {
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -ms-flex: 1;
        flex: 1;
    overflow: auto;
    padding: 0px 48px;
}

.epg-explorer__timetable-date-days-wrapper--no-padding {
    padding: 0px;
}

.epg-explorer__timetable-date-days-wrapper::-webkit-scrollbar {
    display: none;
}
.epg-explorer__timetable-date-cell {
    cursor: pointer;
    color: #bbb;
    line-height: 34px;
    text-align: center;
    vertical-align: middle;
    padding-right: 10px;
}
.epg-explorer__timetable-date-cell:last-child {
    border-right: none;
}
button.btn.epg-explorer__timetable-date-button {
    background-color: #aaa;
    color: #333;
}
button.btn.epg-explorer__timetable-date-button .epg-explorer__timetable-date-button-date,
button.btn.epg-explorer__timetable-date-button .epg-explorer__timetable-date-button-day {
    color: #333!important;
    text-shadow: none;
    font-size: 14px;
}
.epg-explorer__timetable-date-cell-now button.btn.epg-explorer__timetable-date-button,
button.btn.epg-explorer__timetable-date-button.current {
    background-color: #eee;
    color: #111;
}
.epg-item-thumbnail .overlay-play-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-color: rgba(17,17,17, .5);
    text-align: center;
    font-size: 2.5em;
    padding: 0;
}
.epg-item-thumbnail .overlay-play-button .fa {
    margin-right: 0;
    margin-left: 7px;
}

/*.epg-explorer__timetable-time-scroll-to,*/
/*.epg-explorer__timetable-timeframe-scroller-wrapper,*/
/*.epg-explorer__timetable-timeframe-scroller-content {*/
/*    display: flex;*/
/*}*/

/*.epg-explorer__timetable-timeframe-scroller-wrapper {*/
/*    width: 100%;*/
/*    scrollbar-width: none;*/
/*    overflow-x: scroll;*/
/*    -ms-overflow-style: none;*/
/*    -webkit-overflow-scrolling: touch;*/
/*    -webkit-touch-callout: none;*/
/*}*/
/*.epg-explorer__timetable-timeframe-scroller-wrapper::-webkit-scrollbar {*/
/*    display: none;*/
/*}*/
/*.epg-explorer__timetable-time-scroll-to {*/
/*    position: relative;*/
/*    padding-bottom: 10px;*/
/*    overflow: hidden;*/
/*}*/
/*.epg-explorer__timetable-time-scroll-to .forward,*/
/*.epg-explorer__timetable-time-scroll-to .back {*/
/*    cursor: pointer;*/
/*    top: 0;*/
/*    position: absolute;*/
/*    font-size: 14px;*/
/*    padding: 10px 15px;*/
/*    line-height: 14px;*/
/*    background-color: #000;*/
/*    z-index: 1;*/
/*}*/
/*.epg-explorer__timetable-time-scroll-to .forward:hover,*/
/*.epg-explorer__timetable-time-scroll-to .back:hover {*/
/*    background-color: #111111;*/
/*}*/
/*.epg-explorer__timetable-time-scroll-to .forward {*/
/*    right: 0;*/
/*}*/
/*.epg-explorer__timetable-time-scroll-to .back {*/
/*    left: 0;*/
/*}*/

/* TODO: Move the following code to a separate theme file */
.ng-confirm.ng-confirm-epg-item-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000000!important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-bg.ng-confirm-bg-h {
    background-color: rgba(0, 0, 0, 0);
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-scrollpane {
    overflow: auto;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box {
    position: relative;
    background-color: #191919;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0px;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box.ng-confirm-loading:before,
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box.ng-confirm-loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #fff;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon:empty {
    display: none;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon .fa,
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon .glyphicon,
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon .zmdi {
    font-size: 16px;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-closeIcon:hover {
    opacity: 0.8;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c i {
    font-size: 24px;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c .ng-confirm-icon-c:empty {
    display: none;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title {
    display: inline-block;
    vertical-align: middle;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-title-c .ng-confirm-title {
    font-size: 18px;
    color: #fff;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane {
    height: auto !important;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content {
    margin-bottom: 10px;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content img {
    max-width: 100%;
    height: auto;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content:empty {
    display: none;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding: 10px;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    color: black;
    cursor: pointer;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button span {
    font-size: initial;
    color: #cdcdcd;
    text-shadow: none;
}
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button.btn-default span {
    color: #000;
}
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button.btn-default.btn-outline span {
    color: #cdcdcd;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button.btn-hidden {
    display: none!important;
}
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button.btn-outline {
    background-color: transparent!important;
    color: #cdcdcd!important;
    border: 1px solid #cdcdcd!important;
}
.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button.btn-outline:hover {
    background-color: transparent!important;
    color: #fff!important;
    border: 1px solid #fff!important;
}

.ng-confirm.ng-confirm-epg-item-modal .ng-confirm-clear {
    clear: both;
}

.ng-confirm.ng-confirm-epg-item-modal.ng-confirm-rtl {
    direction: rtl;
}

.ng-confirm.ng-confirm-epg-item-modal.ng-confirm-rtl .ng-confirm-closeIcon {
    left: 10px;
    right: auto;
}

.ng-confirm.ng-confirm-epg-item-modal .epg-item-time {
    font-size: 13px;
    font-weight: 400;
    padding-top: 10px;
}

.ng-confirm.ng-confirm-epg-item-modal .epg-item-title {
    font-size: 1.2em;
    font-weight: bold;
}
.ng-confirm.ng-confirm-epg-item-modal .epg-item-subtitle {
    font-size: 1em;
}
.epg-explorer__content-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.8);
    z-index: 1000;
    transition: opacity .2s;
}
.epg-explorer__day-button {
    position: absolute;
    background: #000;
    border: 1px solid #fff;
    padding: 10px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
    pointer-events: none;
    font-size: 14px;
}
.epg-explorer__day-button--previous {
    left: 88px;
    transform: translateX(-100%);
    opacity: 0;
}
.epg-explorer__day-button--next {
    right: 10px;
    transform: translateX(100%);
    opacity: 0;
}
.epg-explorer__day-button--previous.show,
.epg-explorer__day-button--next.show {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}
.epg-explorer__day-button.show:hover {
    transform: translateX(0) scale(1.1)!important;
}


@media screen and (max-width: 490px) {
    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons {
        -ms-flex-direction: column;
            flex-direction: column;
    }
    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button {
        margin: 5px 0;
    }
    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button:first-child {
        margin-top: 0;
    }
    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box .ng-confirm-buttons button:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-height: 600px) {
    .epg-item {
        -ms-flex-direction: row;
            flex-direction: row;
    }

    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ng-confirm.ng-confirm-epg-item-modal .ng-confirm-box div.ng-confirm-content-pane .ng-confirm-content {
        margin-bottom: 0px;
    }
}
.rules-editor {
  width: 25vw;
  font-size: 1.1vw;
  padding: 10px;
  background-color: rgba(255,255,255,.3);
  border-radius: 4px;
}

.rules-editor button {
  border: none;
  background-color: #333;
  padding: .5vw 1vw;
  font-size: 1.1vw;
  border-radius: 3px;
}
.rules-editor button:hover {
  background-color: #2b2b2b;
}
.rules-editor__type {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.rules-editor__type > span {
  margin-right: 1vw;
  font-size: 1.1vw;
}
.rules-editor__list {
  padding-bottom: 10px;
}
.rules-editor__list-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.rules-editor__list-header p {
  margin: 0;
}
.rules-editor__list-body {
  max-height: 25vh;
  overflow: auto;
  margin-top: .5vw;
}
.rules-editor__date {
  width: 20vw;
  padding: .5vw;
  font-size: 1.1vw;
  border-radius: 3px;
  border: none;
  background-color: #292929;
}
.rules-editor__list-item .row {
  margin: 0 0 .5vw 0;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.rules-editor__list-item .row::before,
.rules-editor__list-item .row::after {
  content: unset;
  display: unset;
}
.rules-editor__countries {
  width: 100%;
}
.rules-editor__countries tags-input {
  margin: 0;
  width: 100%;
  border: 1px solid #696969;
  border-radius: 3px;
  background-color: #fff;
  padding: .5vw;
}
.rules-editor__countries tags-input input {
  font-size: 1vw;
  color: #222!important;
  float: none;
}
.rules-editor__countries tags-input .tag-list {
  margin: 0;
  width: auto;
  display: inline-block;
}
.rules-editor__countries tags-input .tag-item {
  display: inline-block;
  background-color: #ccc;
  box-shadow: none;
  font-size: 1vw;
  color: #222!important;
}
.rules-editor__countries tags-input .tag-item span {
  color: #222!important;
}

.rules-editor__countries tags-input .tag-item a.remove-button {
  text-decoration: none;
  color: #222!important;
}

.rules-editor button .rules-editor__countries-counter {
  font-size: .7vw;
  display: inline-block;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: #fff;
  color: #333;
  vertical-align: middle;
  position: absolute;
  top: .4vw;
  right: .4vw;
}

.rules-editor button .rules-editor__countries-counter > span {
  font-size: .7vw;
  color: #333!important;
  text-shadow: none;
  vertical-align: middle;
}
.rules-editor button i.fa {
  top: 0;
}
.rules-editor__item-select {
  line-height: 0;
  border-radius: 4px;
  width: 100%;
  z-index: 1000;
}
.rules-editor__item-select .selectize-input {
  padding: 5px!important;
  color: #fff!important;
}
.rules-editor__item-select.selectize-control.single .selectize-input input {
  font-size: 1.1vw;
}
.rules-editor__item-select .selectize-dropdown [data-selectable] {
  padding: .5vw 10px;
}.network-notifier {
    pointer-events: none;
    opacity: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
    height: 4vh;
    background-color: #B63737;
    color: #ffffff;
    transition: .3s transform, .15s opacity;
    transform: translateY(110%);
    z-index: 999999;
}

.network-notifier.show-network-notifier {
    opacity: 1;
    transform: translateY(0);
}

.network-notifier .network-notifier-body p {
    margin: 0;
    font-weight: bold;
    font-size: 2.5vh;
}file-editor .files .menu.language-selector {
  text-align: start;
}

file-editor .files .dropdown-menu.language-selector {
  max-height: 30vh;
  overflow: auto;
  background: rgba(33, 33, 33);
}

file-editor .files .details .btn {
  font-size: 1.2vw;
}
.stream-blackout-rule-modal .ng-confirm-box {
    background-color: #000000;
}

.stream-blackout-config__image {
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #999999;
    background-size: cover;
    background-position: center center;
}
.stream-blackout-config__image-wrapper {
    position: relative;
}
.stream-blackout-config__image-wrapper > label {
    line-height: 1;
    position: absolute;
    cursor: pointer;
    margin: 0;
    bottom: 5px;
    left: 5px;
    text-shadow: 0 0 3px #000;
    color: #dddddd;
    font-size: 2vw;
}
.stream-blackout-config__image-wrapper > p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #eeeeee;
    margin: 0;
    font-size: 2vw;
}
.stream-blackout-config__image-wrapper > label:hover,
.stream-blackout-config__image-wrapper > button.btn.btn-outline:hover {
    color: #ffffff;
}
.stream-blackout-config__image-wrapper input[type="file"] {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}
.stream-blackout-config__image-wrapper > button.btn.btn-outline {
    position: absolute;
    cursor: pointer;
    right: 5px;
    bottom: 7px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 2vw;
    text-shadow: 0 0 3px #000;
    color: #ddd;
    line-height: 1;
}
.ng-confirm-stream-blackout-rule-modal .ng-confirm-content-pane {
    height: auto!important;
}.file-editor-blackouts {
  font-size: 1.1vw;
  margin: 0 -10px;
}
.file-editor-blackouts button {
  border: none;
  background-color: #333;
  padding: .5vw 1vw;
  font-size: 1.1vw;
  border-radius: 3px;
}
.file-editor-blackouts__list-header,
.file-editor-blackouts__list-item {
  padding: 0 10px;
}
.file-editor-blackouts button:hover {
  background-color: #2b2b2b;
}
.file-editor-blackouts__type {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.file-editor-blackouts__type > span {
  margin-right: 1vw;
  font-size: 1.1vw;
}
.file-editor-blackouts__list {
  padding-bottom: 10px;
}
.file-editor-blackouts__list-body {
  max-height: 15vh;
  overflow: auto;
  background-color: #111;
  padding-top: 10px;
  padding-bottom: 10px;
}
.file-editor-blackouts__date {
  width: 20vw;
  padding: .5vw;
  font-size: 1.1vw;
  border-radius: 3px;
  border: none;
  background-color: #292929;
}
.file-editor-blackouts__list-item.empty {
  color: #666;
  font-size: 1vw;
}
.file-editor-blackouts__list-item .row {
  margin: 0 0 .5vw 0;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.file-editor-blackouts__list-item .row:last-child {
  margin: 0;
}
.file-editor-blackouts__list-item .row::before,
.file-editor-blackouts__list-item .row::after {
  content: unset;
  display: unset;
}
.file-editor-blackouts__countries {
  width: 100%;
}
.file-editor-blackouts__countries tags-input {
  margin: 0;
  width: 100%;
  border: none;
  border-radius: 3px;
  background-color: #292929;
  padding: .5vw;
}
.file-editor-blackouts__countries tags-input input {
  font-size: 1vw;
  color: #fff!important;
  float: none;
}
.file-editor-blackouts__countries tags-input input:-ms-input-placeholder {
  color: #999999;
  text-decoration: none;
}
.file-editor-blackouts__countries tags-input input::placeholder {
  color: #999999;
  text-decoration: none;
}
.file-editor-blackouts__countries tags-input .tag-list {
  margin: 0;
  width: auto;
  display: inline-block;
}
.file-editor-blackouts__countries tags-input .tag-item {
  display: inline-block;
  background-color: #ccc;
  box-shadow: none;
  font-size: 1vw;
  color: #222!important;
}
.file-editor-blackouts__countries tags-input .tag-item span {
  color: #222!important;
}

.file-editor-blackouts__countries tags-input .tag-item a.remove-button {
  text-decoration: none;
  color: #222!important;
}

.file-editor-blackouts button .file-editor-blackouts__countries-counter {
  font-size: .7vw;
  display: inline-block;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background: #fff;
  color: #333;
  vertical-align: middle;
  position: absolute;
  top: .4vw;
  right: .4vw;
}

.file-editor-blackouts button .file-editor-blackouts__countries-counter > span {
  font-size: .7vw;
  color: #333!important;
  text-shadow: none;
  vertical-align: middle;
}
.file-editor-blackouts .file-editor-blackouts__add {
  margin-left: 10px;
  margin-top: 10px;
}.profiles-select {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 6049;
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}
.profiles-select-content {
    max-width: 100%;
}
.profiles-select.show-profiles {
    opacity: 1;
    pointer-events: auto;
}
.profiles-select-wrapper {
    width: 100%;
}
.profiles-select-wrapper profiles-select-list,
.profiles-select-wrapper profile-edit {
    width: 100%;
    height: 100%;
    padding: 0 5vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #111;
    transition: .3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
}

.profiles-select-wrapper profile-edit {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 100%);
}

.profiles-select-wrapper profile-edit.show-profile-edit {
    transform: translate(-50%, -50%);
    pointer-events: unset;
    opacity: 1;
}
.profiles-select-wrapper profiles-select-list.hide-profiles-select-list {
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -150%);
}
.profiles-select-wrapper-cancel {
    position: absolute;
    right: 5vw;
    top: 5vw;
    z-index: 1;
    color: #999;
    font-size: 20px;
    width: 40px;
    height: 40px;
    /* background-color: #000; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    border-radius: 50%;
    border: 1px solid #999;
    cursor: pointer;
    transition: .3s;
}
.profiles-select-wrapper-cancel:hover {
    color: #fff;
    border: 1px solid #fff;
}.profiles-select-header {
    margin-bottom: 2vw;
}
.profiles-select-header h1 {
    text-align: center;
}
.profiles-select-items {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.profiles-select-item,
.profiles-select-item__add {
    cursor: pointer;
    margin-right: 1vw;
    transition: .3s;
    overflow: hidden;
    max-width: 8vw;
}
.profiles-select-item__add {
    margin-right: 0;
}
.profiles-select-item:hover {
    transform: scale(1.1);
}
.profiles-select-item__add:hover .profiles-select-item__add-icon p,
.profiles-select-item__add:hover .profiles-select-item__add-title {
    color: #fff;
}
.profiles-select-item__add:hover .profiles-select-item__add-icon {
    border-color: #fff;
}
.profiles-select-item-icon {
    position: relative;
    overflow: hidden;
}
.profiles-select-item-icon .profiles-select-item-icon__edit-overlay {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    transition: .3s;
}
.profiles-select-item-icon .profiles-select-item-icon__edit-overlay .fa {
    font-size: 3vw;
}
.profiles-select-item-icon .profiles-select-item-icon__edit-overlay.edit-mode {
    opacity: 1;
}
.profiles-select-item-icon,
.profiles-select-item__add-icon {
    width: 8vw;
    height: 8vw;
    border-radius: 15%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
}
.profiles-select-item__add-icon {
    margin: 0;
    border: 1px dashed #999999;
}
.profiles-select-item-icon p {
    margin: 0;
    font-size: 4vw;
    text-shadow: 0 0 5px rgba(0,0,0,.5);
    color: #fff;
}
.profiles-select-item__add-icon p {
    margin: 0;
    font-size: 4vw;
    color: #999999;
    transition: .3s;
}
.profiles-select-item__add-title {
    color: #999;
    transition: .3s;
}
.profiles-select-item__add-title,
.profiles-select-item-name {
    text-align: center;
    margin: 1vw 0 0;
    font-size: 1.5vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.profiles-select-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 2vw;
}
.profiles-select-actions button {
    padding: 0.5vw 3vw;
    border: none;
    background-color: transparent;
    font-size: 1.5vw;
    color: #999;
    text-decoration: underline;
    transition: .3s;
}
.profiles-select-actions button:hover {
    color: #fff;
}
.profiles-select-actions button .fa {
    margin-left: 1vw;
}

@media screen and (max-width: 500px) {
    .profiles-select-item,
    .profiles-select-item__add {
        max-width: 80px;
        margin-right: 10px;
        margin-bottom: 5px;
    }
    .profiles-select-item__add {
        margin-right: 0;
        margin-bottom: 0;
    }
    .profiles-select-item-icon,
    .profiles-select-item__add-icon {
        width: 80px;
        height: 80px;
    }
    .profiles-select-item-icon p,
    .profiles-select-item__add-icon p,
    .profiles-select-item-icon .profiles-select-item-icon__edit-overlay .fa {
        font-size: 40px;
    }
    .profiles-select-actions button,
    .profiles-select-item__add-title,
    .profiles-select-item-name {
        font-size: 16px;
    }
}.profiles-edit-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
}
.profile-edit-icon-preview {
    width: 8vw;
    height: 8vw;
    border-radius: 15%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 1vw;
}
.profile-edit-icon-preview > p {
    margin: 0;
    font-size: 4vw;
    text-shadow: 0 0 5px rgba(0,0,0,.5);
    color: #fff;
}
.profile-edit-body form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: column;
        flex-direction: column;
}
.profile-edit-data {
    width: 100%;
}
.profile-edit-data .profile-edit-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    border: 1px solid #999;
    border-radius: 0.5vw;
    padding: 0.5vw 1vw;
    margin-bottom: 1vw;
}
.profile-edit-data .profile-edit-row label {
    font-weight: 100;
    color: #999;
    margin: 0;
}
.profile-edit-data .profile-edit-row input {
    background: transparent;
    border: none;
    padding: 0;
    color: #fff;
}
.profile-edit-actions {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
}
.profile-edit-actions > button {
    display: block;
    width: 100%;
    background: transparent;
    color: #ddd;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: .5vw
}
.profile-edit-actions > button:hover {
    color: #fff;
    border: 1px solid #fff;
}
.profile-edit-actions > button.red {
    background-color: #c12323;
    border: none;
}
.profile-edit-actions > button.red:hover {
    background-color: #cd2323;
}
.profiles-edit-content__loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
}
.profiles-edit-content__loader-body {
    width: 40px;
    height: 40px;
    padding: 10px;
    box-sizing: content-box;
    background: #000;
    border-radius: 15%;
}
.profile-edit-parent-control {
    width: 100%;
}
.profile-edit-parent-control .episodes-search-dropdown {
    -ms-flex: 0;
        flex: 0;
    padding: 0 0 1vw 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    cursor: pointer;
}
.profile-edit-parent-control .episodes-search-dropdown button {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 5px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    white-space: nowrap;
    text-transform: capitalize;
}
.profile-edit-parent-control .episodes-search-dropdown button i.fa {
    margin-left: 5px;
    font-size: 0.7em;
}
.profile-edit-parent-control .episodes-search-dropdown .dropdown-menu {
    max-width: 200px;
    left: auto;
    right: 0;
    background-color: #555;
    padding: 0;
    margin: 0;
}
.profile-edit-parent-control .episodes-search-dropdown .dropdown-menu .dropdown-menu__item {
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: capitalize;
}
.profile-edit-parent-control .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:hover {
    background-color: #444444;
}
.profile-edit-parent-control .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:first-child {
    padding: 10px 10px 5px;
}
.profile-edit-parent-control .episodes-search-dropdown .dropdown-menu .dropdown-menu__item:last-child {
    padding: 5px 10px 10px;
}
@media screen and (max-width: 500px) {
    .profile-edit-icon-preview {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }
    .profile-edit-icon-preview > p {
        font-size: 40px;
    }
    .profile-edit-data .profile-edit-row {
        border-radius: 4px;
        margin-bottom: 10px;
        padding: 5px 10px;
    }
    .profile-edit-actions > button {
        margin-bottom: 5px;
    }
    .profile-edit-data .profile-edit-row input {
        width: 250px;
    }
}searchable-list {
  width: 100%;
}
.searchable-list,
.searchable-list-wrapper {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -ms-flex-direction: column;
      flex-direction: column;
}
.searchable-list-wrapper {
  padding-bottom: 10px;
}
.searchable-list .searchable-list-elements {
  overflow: auto;
}
.searchable-list .searchable-list-header {
  padding: 10px;
  position: relative;
  background: rgba(25, 25, 25, 1);
}
.searchable-list .searchable-list-header > input {
  width: 100%;
  background-color: transparent;
  padding: 5px 30px 5px 10px;
  color: #dddddd;
  font-size: 1em;
  border: 1px solid #555;
  border-radius: 4px;
}
.searchable-list .searchable-list-header > .fa-search {
  position: absolute;
  right: 20px;
  top: 20px;
}
.searchable-list .searchable-list-elements {
  background: rgba(0,0,0,.6)
}
.searchable-list .searchable-list-elements .searchable-list-element__header {
  font-weight: bold;
  margin: 0 -10px;
  padding: 10px;
  background: rgba(25, 25, 25, .7);
}
.searchable-list .searchable-list-element, .searchable-list .searchable-list-element__body {
  margin: 0 10px;
}
.searchable-list .searchable-list-element__subitem {
  margin-bottom: 5px;
}
.searchable-list .searchable-list-element__subitem:first-child {
  margin-top: 5px;
}
.searchable-list .searchable-list-element__subitem.searchable-list-element--disabled {
  opacity: .5;
  pointer-events: none;
}
.searchable-list .searchable-list-element__subitem .form-group {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -ms-flex-align: center;
      align-items: center;
}
.searchable-list .searchable-list-element__subitem .form-group > input {
  display: inline-block;
  width: 2vw;
  height: 2vw;
  min-width: 2vw;
  margin: 0 10px 0 0;
  outline: none!important;
  box-shadow: none!important;
}
.searchable-list .searchable-list-element__subitem .form-group > label {
  margin: 0;
  line-height: 1;
  font-weight: 100;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.searchable-list .searchable-list-element__subitem .form-group > label > img {
  height: 2vw;
  width: auto;
  margin-right: 5px;
}
.searchable-list .searchable-list-element__subitem .form-group > input,
.searchable-list .searchable-list-element__subitem .form-group > label {
  cursor: pointer;
}
.searchable-list .searchable-list-element__subitem.searchable-list-element--disabled .form-group > input,
.searchable-list .searchable-list-element__subitem.searchable-list-element--disabled .form-group > label {
  cursor: not-allowed;
}.input-password__container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-password__input {
    padding-right: 30px;
    width: 100%;
}

.input-password__toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}.pages-editor {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  pointer-events: auto!important;
}
.pages-editor .pages-editor-button .btn {
  color: #111;
  font-size: 1vw;
}
.pages-editor .pages-editor-pages {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  padding-top: 5px;
}

@media screen and (max-width: 1400px) {
  .pages-editor .pages-editor-button .btn,
  .pages-editor-dropdown .pages-editor-dropdown__search-wrapper input,
  .pages-editor-dropdown .pages-editor-dropdown__list-item {
    font-size: 12px;
  }
}
.pages-editor-dropdown {
  padding: 10px;
  min-width: 250px;
  max-width: 400px;
  background: rgba(32, 32, 32, .7);
  border-radius: 4px;
  pointer-events: auto!important;
}
.pages-editor-dropdown .pages-editor-dropdown__search-wrapper {
  position: relative;
}
.pages-editor-dropdown .pages-editor-dropdown__search-wrapper .fa {
  position: absolute;
  right: 10px;
  top: 8px;
}
.pages-editor-dropdown .pages-editor-dropdown__search-wrapper input {
  width: 100%;
  border: 1px solid #555;
  background-color: rgb(37, 37, 37);
  color: #eee;
  border-radius: 4px;
  padding: 5px 30px 5px 10px;
}
.pages-editor-dropdown .btn.pages-editor-dropdown__add-page {
  width: 100%;
  color: #111;
  padding: 3px 6px;
  font-size: 1em;
  text-align: center;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item {
  min-height: 32px;
  padding: 5px 10px;
  margin: 0 -10px;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item:hover {
  background-color: rgba(255,255,255,.1);
}
.pages-editor-dropdown .pages-editor-dropdown__list-item.pages-editor-dropdown__list-item--selected:hover,
.pages-editor-dropdown .pages-editor-dropdown__list-item.pages-editor-dropdown__list-item--selected {
  background-color: rgba(0,0,0,.6);
}
.pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-title {
  overflow: hidden;
  width: 100%;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-title p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-left: 5px;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-actions button {
  padding: 0 5px!important;
  margin-left: 5px;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-actions button:first-child {
  margin: 0;
}
.pages-editor-dropdown .pages-editor-dropdown__list-item.dropdown__add-page {
  padding: 10px;
  background-color: transparent!important;
}

@media screen and (min-width: 2800px) {
  .pages-editor-dropdown {
    min-width: 350px;
    max-width: 500px;
  }
  .pages-editor-dropdown .pages-editor-dropdown__list-item {
    min-height: 54px;
    padding: 10px 20px;
  }
  .pages-editor-dropdown .pages-editor-dropdown__list-item .pages-editor-dropdown__list-item-actions button {
    font-size: 24px;
    padding: 0 10px !important;
  }
}
.pages-editor-update-page-modal {
  width: 450px;
}
.pages-editor-update-page-modal .btn {
  margin-right: 5px;
}
.pages-editor-update-page-modal .btn:last-child {
  margin-right: 0;
}
.pages-editor-update-page-modal .btn.btn-grey {
  background-color: #ccc;
  color: #111;
  font-weight: bold;
}
.pages-editor-update-page-modal .page-editor-config-modal__actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
}
.pages-editor-update-page-modal .page-title-wrapper {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 8px;
}
.pages-editor-update-page-modal .page-title-wrapper .dropdown-menu {
  max-height: 150px;
  overflow: auto;
}
.pages-editor-update-page-modal .error {
  color: #d00 !important;
  font-size: small;
}.banner-container {
    position: relative;
    width: 100%;
    padding-bottom: calc(56.25% / 6 + 1.5vw + 30px);
}

.banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.banner:hover {
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .banner-container {
        padding-bottom: calc(56.25% / 5 + 1.5vw + 30px);
    }
}

@media screen and (max-width: 1200px) {
    .banner-container {
        padding-bottom: calc(56.25% / 4 + 1.5vw + 30px);
    }
}

@media screen and (max-width: 860px) {
    .banner-container {
        padding-bottom: calc(56.25% / 3 + 26px);
    }
}

@media screen and (max-width: 768px) {
    .banner-container {
        padding-bottom: calc(56.25% / 3 + 26px);
    }
}

@media screen and (max-width: 500px) {
    .banner-container {
        padding-bottom: calc(56.25% / 2 + 26px);
    }
}








.banner-breakpoint-selector-container {
    margin-bottom: 10px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
}

.banner-breakpoint-selector {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding: 5px;
    margin-right: 0.5vw;
    font-size: 1vw;
    position: relative;
    min-width: 10px;
    border: 1px solid #888;
    border-radius: 6px;
}

.banner-breakpoint-selector:hover:not(:has(.remove-banner-breakpoint-button:hover)) {
    cursor: pointer;
    border-color: #ddd;
    background-color: #444;
}

.banner-breakpoint-selector.selected-banner-breakpoint {
    border-color: #eee;
    background-color: #555;
}

.banner-breakpoint-selector.selected-banner-breakpoint:hover:not(:has(.remove-banner-breakpoint-button:hover)) {
    cursor: default;
    border-color: #eee;
    background-color: #555;
}

.banner-breakpoint-action-button {
    font-size: 1vw;
    line-height: 1.5vw;
    cursor: pointer;
    position: relative;
    background-color: #333;
    opacity: 0.8;
    color: #eee;
    padding: 0 4px;
    width: 1.5vw;
    height: 1.5vw;
    text-align: center;
    border-radius: 3px;
    transition: background-color .3s ease;
    margin-bottom: 0;
}

.banner-breakpoint-action-button:hover {
    opacity: 1.0;
    transition: opacity .3s ease;
}

.banner-breakpoint-action-button.disabled {
    cursor: default;
    opacity: 0.25 !important;
}

.add-banner-breakpoint-button {
    margin-left: 0.5vw;
}

.remove-banner-breakpoint-button {
    margin-left: 0.7vw;
    pointer-events: auto;
}

.add-banner-breakpoint-select {
    width: 20vw;
    z-index: 2000;
}

@media screen and (max-width: 840px) {
    .banner-breakpoint-selector-container {
        font-size: 16px;
        margin-top: 0;
    }

    .banner-breakpoint-action-button {
        font-size: 7px;
        line-height: 14px;
        width: 14px;
        height: 14px;
        padding: 0;
    }
}
.banner-settings-container {
    display: -ms-flexbox;
    display: flex;

    .breakpoint-values-container {
        margin-right: 0.5vw;
        width: 100%;
    }

    .input-container {
        position: relative;
        margin-top: 0.5vw;
        margin-bottom: 0.5vw;
        font-size: 1.1vw;
        width: 100%;
    }

    .input-container input, select {
        width: 100%;
        background-color: transparent;
        padding: 5px 30px 5px 10px;
        color: #dddddd;
        font-size: 1.2em;
        border: 1px solid #555;
        border-radius: 4px;
    }

    .breakpoint-image-container {
        margin-left: 0.5vw;
        width: 100%;

        .breakpoint-image-description {
            margin-bottom: 5px;
            font-weight: 700;
            font-size: 1.2vw;
        }

        .breakpoint-image-language-menu {
            position: relative;
            z-index: 100;
            width: 100%;
            text-align: center;
            border-color: rgba(128, 128, 128, .6);
            padding: 5px;

            .btn {
                opacity: initial;
                margin: initial;
                float: initial;
                width: auto;
                height: auto;
                border: none;
                background: transparent;
                color: #ddd;
                transition: color .3s ease;
                font-size: 1.2vw;
                padding: 0px;
            }

            a {
                color: #ddd !important;
                font-size: 1.2vw;
            }

            .btn:hover {
                color: #fff;
                transition: color .3s ease;
            }

            .btn:focus {
                color: #fff;
                transition: color .3s ease;
            }
        }

        .breakpoint-image-language-menu.language-selector {
            text-align: start;
        }

        .dropdown-menu.language-selector {
            max-height: 30vh;
            overflow: auto;
            background: rgba(33, 33, 33);
        }

        .file-editor-menu::-webkit-scrollbar {
            -webkit-appearance: none;
        }

        .file-editor-menu::-webkit-scrollbar:vertical {
            width: 6px;
        }

        .file-editor-menu::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, .5);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, .3);
        }

        .file-editor-menu::-webkit-scrollbar-track {
            border-radius: 10px;
            background-color: rgba(255, 255, 255, .4);
        }

        .dropbox {
            border-style: dashed;
            border-radius: 4px;
            color: #ddd;
            border-color: rgba(128, 128, 128, .6);
            border-width: 2px;
            padding: 10px;
            margin-bottom: 10px;
            text-align: center;
        }

        .dropbox.dragOver {
            background-color: rgba(200, 200, 200, .6);
        }

        .dropbox .label.dragOver {
            background-color: rgba(200, 200, 200, .6);
        }

        .dropbox i {
            font-size: 6vw;
            opacity: .8;
        }

        .dropbox .btn {
            background-color: #777;
            position: relative;
        }

        .form-control-file {
            display: none !important;
        }

        .uploading {
            display: -ms-flexbox;
            display: flex;
            img {
                width: 25%;
                margin: 10% auto;
            }
        }
    }
}






/*# sourceMappingURL=app.css.map*/