* {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* smoother Font-Rendering */
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

html,
body {
  margin: 0;
  padding: 0;
  background: transparent;
}

#player-and-chat {
  margin: 0;
  padding: 0;
  position: relative;
}

#chat-layer {
  /* das ist der iframe */
  /* Hintergrund vom Chat-Layer */
  opacity: 1;
  background: transparent;
}
    
#urg-prevent-doubleTap-iOS {
  /* Doppelklick auf JW-Player unter iOS verhindern, */
  /* damit das Device nicht in den eigenen Fullscreen-Player wechselt */
  /* und somit keine Overlays über dem Video angezeigt werden können */
  position: absolute;
  top: 0;
  bottom: 50px;
  left: 0;
  right: 0;
  /* background-color: rgba(255, 255, 0, 0.5); */
  background-color: transparent;
}

.hide {
  display: none;
}

#urg-chat-overlay {
  position: absolute;
  top: 0;
  bottom: 54px;
  left: 0;
  right: 0;
  width: 360px;
  z-index: 0;
  background: transparent;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#urg-chat-overlay.collapsed {
  top: 0;
  bottom: 54px;
  left: 100%;
  right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

#urg-chat-overlay.collapsible {
  top: 0;
  bottom: 54px;
  left: calc(100% - 360px);
  right: 0;
}

.chat-inner {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
  background-color: rgba(255,255,255,0.75);
  background: transparent;
}

.chat-header {
  flex-grow: 1;
  position: relative;
  background: rgba(255,255,255,0.9);
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0;
  padding: 0;
}

.chat-close-x {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 22px;
  font-weight: bold;
  background-color: rgba(0,0,0,1);
  color: rgba(255,255,255,1);
  opacity: 0.5;
}
.chat-close-x:after {
  display: inline-block;
  margin: 0;
  padding: 0;
  /*
  font-size: 24px;
  line-height: 22px;
  font-weight: bold;
  */
  content: "\00d7"; /* This will render the 'X' */
}
.chat-close-x:hover {
  opacity: 1;
}
.chat-brand-icon {
  display: inline-block;
  position: relative;
  top: 0px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0 0 0 30px;
  padding: 0;
}
.chat-brand-icon img {
  height: 20px;
  margin: 0;
  padding: 0;
  border: 0;
  padding-top: 2px;
}
.chat-headline {
  display: inline-block;
  position: absolute;
  top: 3px;
  font-size: 16px;
  margin: 0 0 0 8px;
  padding: 0;
  color: #f00;
}


.btn.ripple {
  margin: 0;
}

.btn.ripple.hide {
  display: none;
}