#viewAll {
  position: fixed;
  top: 50%;
  left: var(--marginLeft);
  transform: translateY(-50%);
  z-index: 50;
  line-height: 1;
  padding: 6px 12px 10px;
  cursor: pointer;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  color: #fff;
  font-size: 2.8rem;
}
/* hover */
/* @media screen and (min-width:1125px){
  #viewAll:hover{ background-color:var(--lightgrey); color:#000; }
} */

@media screen and (min-width: 1125px) {
  #categoryList {
    position: fixed;
    top: var(--headerHeight);
    left: 17px;
    width: 250px;
    border: 1px solid;
    border-color: rgba(200, 200, 200, 0.3);
    border-radius: 4px;
    background-color: rgba(29, 29, 29, 0.3);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    z-index: 50;
    font-size: 0;
    display: none;
  }
  #categoryList .categories {
    padding: 12px 12px 4px;
    overflow: hidden;
    max-height: 200px;
  }
  #categoryList .categories [class*='btn'] {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  #categoryList .search {
    position: relative;
    border-top: 1px solid;
    border-color: rgba(200, 200, 200, 0.3);
  }
  #categoryList .search form {
  }
  #categoryList .search form input[type='text'] {
    display: block;
    width: 100%;
    padding: 12px;
    color: #fff;
  }
  #categoryList .search form input[type='image'] {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 5;
  }
}
@media screen and (max-width: 1125px) {
  #categoryList {
    right: var(--marginLeft);
    left: var(--marginLeft);
    text-align: center;
  }
  #categoryList .categories {
    display: flex !important;
    justify-content: space-between;
  }
  #categoryList .categories [class*='btn'] {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
  }
  #categoryList .categories [class*='btn']:before {
    width: 16px;
    height: 16px;
  }
}

#indicator {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  margin-left: 37.5vw;
  z-index: 10;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
#indicator > li {
  display: block;
  cursor: pointer;
  opacity: 0.35;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
#indicator > li:last-of-type {
  margin-bottom: 12px;
}
/* on */
#indicator > li.on {
  opacity: 1;
  padding-left: 6px;
}
/* shuffle */
/* #indicator > .btnShuffle{ display:inline-block; text-transform:none; margin-top:4px; background-color:rgba(0,0,0,0.3); backdrop-filter:blur(17px); -webkit-backdrop-filter:blur(17px); }
  #indicator > .btnShuffle:before{ content:''; display:inline-block; vertical-align:top; width:15px; height:15px; margin-right:4px;
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    background-image:url('/img/icon_shuffle.svg');
  } */
#indicator [class*='btn'] {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}
.btnShuffle {
}
.btnShuffle:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 15px;
  height: 15px;
  margin-right: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('/img/icon_refresh.svg');
  /* display:none; */
}
/* hover */
@media screen and (min-width: 1125px) {
  #categoryList [class*='btn']:hover {
    background-color: #fff;
  }

  #indicator > li:hover {
    opacity: 1;
    padding-left: 6px;
  }
  #indicator [class*='btn']:hover {
    background-color: #fff;
  }
  .btnShuffle:hover:before {
    filter: brightness(10) invert(1);
  }

  /* css 추가  */
  #indicator li:hover {
    opacity: 1;
    padding-left: 6px;
  }
}

#rolling {
}
#rolling > section {
  position: relative;
  z-index: -1;
}
#rolling > section .videoWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - var(--marginLeft) * 2);
  max-width: 75%;
  perspective: 580px;
  perspective-origin: center;
  cursor: pointer;
}
#rolling > section .videoWrap .video {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  padding-top: 56.25%;
  box-shadow: 0 0 17px rgba(0, 0, 0, 0.3);
}
#rolling > section .videoWrap .video :is(video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-property: opacity;
  z-index: 5;
  pointer-events: none;
}
#rolling > section .videoWrap .video iframe {
  display: none !important;
}
#rolling > section .videoWrap .video img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  transition-property: opacity;
}
#rolling > section .videoWrap .video a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
#rolling > section .videoWrap h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 12px;
  opacity: 0;
  transition-property: opacity;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#rolling > section .videoWrap h3 a {
  color: #fff;
  pointer-events: none;
}
#rolling > section .videoWrap h3 span.author {
  font-size: 1rem;
}
/* hover */
@media screen and (min-width: 1125px) {
  #rolling > section .videoWrap h3 a:hover {
    text-decoration: underline;
  }
}
/* on */
#rolling > section.on {
  z-index: 5;
}
#rolling > section.on .videoWrap {
}
#rolling > section.on .videoWrap iframe {
  display: block !important;
}
#rolling > section.on .videoWrap .video {
  display: block !important;
}
#rolling > section.on .videoWrap .video :is(video, iframe) {
  opacity: 1;
}
/* #rolling > section.on .videoWrap .video img{ opacity:0; } */
#rolling > section.on .videoWrap h3 {
  opacity: 1;
}

/* video back */
#backVideo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  filter: blur(17px);
}
#backVideo .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-property: opacity;
  opacity: 0;
}
#backVideo .video :is(video, iframe) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-aspect-ratio: 16/9) {
  #backVideo .video {
    width: 100vw;
    height: 56.25vw;
  }
}
@media screen and (max-aspect-ratio: 16/9) {
  #backVideo .video {
    width: 177.777777777777778vh;
    height: 100vh;
  }
}

/* css 추가 */
#indicator ol {
  display: flex;
  flex-flow: column wrap;
  gap: 4px;
}

#indicator li {
  display: block;
  cursor: pointer;
  opacity: 0.35;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
#indicator li:last-of-type {
  margin-bottom: 12px;
}
/* on */
#indicator li.on {
  opacity: 1;
  padding-left: 6px;
}

@media screen and (orientation: landscape) and (max-height: 800px) {
  #rolling > section {
    min-height: 100vh !important;
  }
  #rolling > section .videoWrap {
    width: calc(80vw - var(--marginLeft) * 2) !important;
  }
}

#rolling > section .videoWrap .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-property: opacity;
}
#rolling > section.on .videoWrap .video iframe {
  opacity: 1;
  border: 0;
}
#rolling > section.on .videoWrap .video iframe + img {
  opacity: 0;
}
/* #rolling > section .videoWrap{cursor:default;} */
#rolling > section .videoWrap h3 a {
  pointer-events: visible;
}
#rolling > section .videoWrap .video iframe {
  pointer-events: visible;
}
