.strytl .item.em-icehockey:not(.event) .timestamp .group .time {
    width: 3ch;
    overflow: hidden;
    white-space: nowrap;	
}


body.strytl {
    padding-bottom: 40px;
}

.strytl .load-next {
    background: var(--color-contrast);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    bottom: 80px;
    margin-left: -25px;
}

.strytl .load-next img, .strytl .load-next .img {
    border: 0;
    padding: 0;
    width: 50px;
    height: 80px;
    margin-top: -13px;
}


/* Privacy Addition 2022 */
#strytl-user-consent-banner,
#strytl-last-update,
#strytl-live {
  display: none;
}

#priv-btn {
    position: fixed;
    bottom: 20px;
    transform: translate(-50%, 0%);
    left: 50%;

    padding: 10px;

    background: var(--color-contrast);
    color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);

    cursor: pointer;
    z-index: 999998;
}
@media screen and (max-width: 500px) {
	#priv-btn {
		font-size: .8em;
    	text-align: center;
    }
}

#priv-btn #eye {
  display: block;
  filter:  invert(1);
  width: 26px;
  margin: 7px;
}


#priv {
    display: none;
    position: fixed;
    left: 20px;
    bottom: 80px;
    width: calc(100% - 40px);
    background: #fff;
    box-shadow: 0 0 60px rgb(0 0 0 / 30%);
    z-index: 999999;
    padding: 60px 20px 0;
    box-sizing: border-box;
    color: #000;
    overflow: auto;
}

#priv-close {
  position: absolute;
  right: 20px;
  top: -6px;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  color: #fff;
  z-index: 99999;
}
#priv-close:hover {
  color: #000;
}

#priv-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 15px 20px;
  box-sizing: border-box;
  background-color: var(--color-contrast);
  color: #fff;
  font-weight: bold;
}

#priv .priv-label {
  display: inline-block;
  width: calc(100% - 70px);
  margin-bottom: 20px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-contrast);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-contrast);
}

input:checked + .slider:before {
  -webkit-transform: translateX(28px);
  -ms-transform: translateX(28px);
  transform: translateX(28px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}

.slider.round:before {
  border-radius: 50%;
}
