.headline-btn,
.headline-btn a {
  display: flex;
  align-items: center;

  position: relative;
  gap: 4px;
  margin-top: 8px;

  font-family: Century Gothic Medium;
  font-size: 12px;
  line-height: 140%;
}

.headline-btn a i {
  position: relative;
  width: 32px;
  height: 32px;
  background: url("../img/btn-play-2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.playlist-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.playlist-btn {
  position: relative;
  width: fit-content;
  height: fit-content;
  border-radius: 5px;
  font-size: 12px;
  line-height: 14px;
  background: #fff;
  color: rgba(25, 63, 110, 1);
  border: 1px solid rgba(25, 63, 110, 1);
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.playlist-btn:hover,
.playlist-btn.active {
  background: rgba(25, 63, 110, 1);
  color: #fff;
}

.ck-playlist {
  display: block;
  position: absolute;
  bottom: 11px;
  left: 11px;

  width: 18px;
  height: 18px;

  font-size: 14px;
  line-height: 20px;
  font-weight: 400;

  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 4;
}

.ck-playlist.unseen {
  display: none;
}

.ck-playlist input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.ck-playlist .input-checkbox-checkmark {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-white);
}

.ck-playlist .input-checkbox-checkmark.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.ck-playlist .input-checkbox-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid rgba(32, 77, 127, 1);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ck-playlist:hover input ~ .input-checkbox-checkmark,
.ck-playlist input ~ .input-checkbox-checkmark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
}

.ck-playlist input:checked ~ .input-checkbox-checkmark {
  background-color: rgba(255, 255, 255, 1);
}

.ck-playlist input:checked ~ .input-checkbox-checkmark:after {
  display: block;
}

.cardImg, .text-body--1 {
  cursor: pointer;
}

.cardImg .bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(32, 77, 127, 0);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.cardImg.checked .bg-overlay {
  background: rgba(32, 77, 127, 0.8);
  z-index: 3;
}

.playlist-count {
    position: fixed;
    left: auto;
    bottom: 66px;
    width: 816px;
    height: 54px;
    z-index: 5;
    transition: all 0.6s ease-in-out;
}

.btn-blue {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  line-height: 140%;
  color: #fff;
  cursor: pointer;

  background: rgba(32, 77, 127, 1);
  border: 0px;
}

.playlist-count.unseen {
  bottom: -100%;
}

.ch-clear.hide {
    display: none;
}