+
+ top: 70px;
+ left: 16px;
+
+ @include rwd($break-flow) {
+ top: -27px;
+ left: 0;
+ }
+}
+
+.c-player__chapters {
+ top: 35px - 8.4px;
+ right: calc(10% - 50px);
+ width: 100px;
+ position: absolute;
+ font-style: normal;
+ font-weight: normal;
+ font-size: 12px;
+ line-height: 140%;
+ letter-spacing: 0.05em;
+ color: #083F4D;
+ z-index: 1;
+
+ @include rwd($break-flow) {
+ top: -27px;
+ right: 0;
+ }
+
+ &.is-active {
+ > span {
+ &:after {
+ transform: rotate(180deg);
+ }
+ }
+ ul {
+ opacity: 1;
+ transform: none;
+ pointer-events: all;
+ }
+ }
+
+ > span {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ justify-content: center;
+
+ &:after {
+ margin-left: 5px;
+ content: $icon-arrow-down;
+ font-family: '#{$icomoon-font-family}' !important;
+ transition: transform $ease-out 450ms;
+ }
+ }
+
+ ul {
+ width: 283px;
+ position: absolute;
+ background-color: #083F4D;
+ transform: translateY(-10px);
+ opacity: 0;
+ box-shadow: 0 0 20px rgba(1, 129, 137, 0.2);
+ transition: all $ease-out 450ms;
+ list-style-position: inside;
+ border-radius: 10px;
+ right: 0;
+ margin: 10px 0 0;
+ padding: 15px;
+ pointer-events: none;
+ li {
+ font-size: 12px;
+ line-height: 140%;
+ letter-spacing: 0.05em;
+ list-style-type: decimal;
+ margin: 5px 0;
+ color: white;
+ cursor: pointer;
+
+ span {
+ display: none;
+ }
+ span.title {
+ display: inline;
+ }
+ }
+ }