body {
  font-family: "Helvetica Neue", "Calibri Light", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

video {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.ckin__player {
  margin-bottom: 1.25rem;
  font-family: "Helvetica Neue", "Calibri Light", Roboto, sans-serif;
  letter-spacing: 0.02em;
}

.ckin__player.ckin__fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 10000000;
  background: #000;
  border-radius: 0 !important;
  display: flex;
}

.ckin__overlay {
  position: relative;
}

.ckin__overlay:before {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.ckin__overlay--2:before {
  background: rgba(24, 24, 24, 0.8);
}

.default {
  position: relative;
  font-size: 0;
  overflow: hidden;
  cursor: pointer;
}

.default:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity .2s;
  opacity: 1;
  visibility: visible;
}

.default__title {
  position: absolute;
  left: 1.25rem;
  top: .75rem;
  z-index: 1;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.default__button {
  background: none;
  margin-bottom: .625rem;
  border: 0;
  line-height: 1;
  color: #1777d8;
  outline: 0;
  padding: 0;
  cursor: pointer;
  justify-content: center;
  display: flex;
  max-width: 3.125rem;
}

.default__button i {
  align-self: center;
}

.fullscreen {
  display: none;
}

.default__button--big {
  background: none;
  border: 0;
  line-height: 1;
  color: #1777d8;
  text-align: center;
  outline: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 4rem;
  transition: all .2s;
  touch-action: manipulation;
}

.default__slider {
  width: .625rem;
  height: 1.875rem;
}

.default__controls {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all .3s;
  flex-wrap: wrap;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  font-size: 1.25rem;
  align-items: center;
  padding: .625rem;
  transform: translateY(0);
  justify-content: space-between;
  border-radius: 0 0 .3125rem .3125rem;
}

.default.is-playing:before {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(1.3);
}

.default.is-playing .default__button--big {
  opacity: 0;
  visibility: hidden;
}

.default.is-playing .default__controls {
  transform: translateY(3.25rem);
}

.default.is-playing:hover .default__controls {
  transform: translateY(0);
}

.default__controls>* {
  flex: 1;
}

.default .progress {
  position: relative;
  display: flex;
  height: .25rem;
  margin-top: -0.625rem;
  transition: height 0.3s;
  background: #f1f1f1;
  cursor: pointer;
}

.default .progress__filled {
  width: 0%;
  background: #1777d8;
  flex: 0;
  flex-basis: 0%;
}

.minimal {
  border: 0 solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
  position: relative;
  font-size: 0;
  overflow: hidden;
  border-radius: .3125rem;
  cursor: pointer;
}

.minimal:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: .3125rem;
  transition: opacity .2s;
  opacity: 1;
  visibility: visible;
}

.minimal__title {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 1;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.minimal__button {
  background: none;
  border: 0;
  line-height: 1;
  color: #1777d8;
  outline: 0;
  padding: 0;
  cursor: pointer;
  justify-content: center;
  display: flex;
  max-width: 3.125rem;
}

.minimal__button i {
  align-self: center;
}

.minimal__button--big {
  background: none;
  border: 0;
  line-height: 1;
  color: #1777d8;
  text-align: center;
  outline: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 4rem;
  transition: all .2s ease-in;
  touch-action: manipulation;
}

.minimal__slider {
  width: .625rem;
  height: 1.875rem;
}

.minimal__controls {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all .3s;
  flex-wrap: wrap;
  background: #242424;
  font-size: 2rem;
  align-items: center;
  padding: .625rem;
  transform: translateY(0);
  justify-content: space-between;
  border-radius: 0 0 .3125rem .3125rem;
}

.minimal.is-playing:before {
  opacity: 0;
  visibility: hidden;
}

.minimal.is-playing .minimal__button--big {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(1.3);
}

.minimal.is-playing .minimal__controls {
  transform: translateY(3.25rem);
}

.minimal.is-playing:hover .minimal__controls {
  transform: translateY(0);
}

.minimal__controls>* {
  flex: 1;
}

.minimal .progress {
  position: relative;
  display: flex;
  height: .625rem;
  transition: height 0.3s;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border-radius: .25rem;
}

.minimal .progress__filled {
  width: 0%;
  background: #1777d8;
  flex: 0;
  flex-basis: 0%;
  border-radius: .25rem;
}

.compact {
  border: 0 solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
  position: relative;
  font-size: 0;
  overflow: hidden;
  border-radius: .3125rem;
  cursor: pointer;
}

.compact:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: .3125rem;
  transition: opacity .2s;
  opacity: 1;
  visibility: visible;
}

.compact__title {
  position: absolute;
  left: 1.25rem;  
  top: 1.25rem;
  z-index: 1;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.compact__button {
  background: none;
  border: 0;
  line-height: 1;
  color: #1777d8;
  outline: 0;
  padding: 0;
  cursor: pointer;
  justify-content: center;
  display: flex;
  max-width: 3.125rem;
}

.compact__button i {
  align-self: center;
}

.compact__button--big {
  background: none;
  border: 0;
  line-height: 1;
  color: #1777d8;
  text-align: center;
  outline: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 4rem;
  transition: all .2s ease-in;
  touch-action: manipulation;
}

.compact__slider {
  width: .625rem;
  height: 1.875rem;
}

.compact__controls {
  display: flex;
  position: absolute;
  max-width: 25rem;
  bottom: 0;
  right: 0;
  left: 50%;
  transition: all .3s;
  flex-wrap: wrap;
  background: #242424;
  font-size: 2rem;
  align-items: center;
  padding: .625rem;
  transform: translateY(-1.25rem) translateX(-50%);
  justify-content: space-between;
  border-radius: .3125rem;
}

.compact.is-playing:before {
  opacity: 0;
  visibility: hidden;
}

.compact.is-playing .compact__button--big {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(1.3);
}

.compact.is-playing .compact__controls {
  transform: translateY(3.25rem) translateX(-50%);
}

.compact.is-playing:hover .compact__controls {
  transform: translateY(-1.25rem) translateX(-50%);
}

.compact__controls>* {
  flex: 1;
}

.compact .progress {
  position: relative;
  display: flex;
  height: .625rem;
  transition: height 0.3s;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border-radius: .25rem;
}

.compact .progress__filled {
  width: 0%;
  background: #1777d8;
  flex: 0;
  flex-basis: 0%;
  border-radius: .25rem;
}

@media (max-width: 30rem) {
  .ckin__player button {
    font-size: 1.125rem;
  }
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}
