@import url("./icons/iconfont.css");
:root {
  --player-primary-color: #01b9d1;
  --player-font-color: rgba(255, 255, 255, 0.5);
  --player-wnd-color: #171c22;
  --player-border-color: #2a3451;
}

.swp-section {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--player-wnd-color);
  color: var(--player-font-color);
}

.swp-player {
  flex: 1;
  height: 0;
  position: relative;
}
.swp-player__loading {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background-color: var(--player-wnd-color);
  justify-content: center;
  align-items: center;
  color: var(--player-primary-color);
  font-size: 14px;
  z-index: 2;
}
.swp-player__loading p {
  -webkit-animation: load 1.04s ease infinite;
  animation: load 1.04s ease infinite;
  opacity: 0;
}
.swp-player__player {
  width: 100%;
  height: 100%;
}
.swp-player__windows {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.swp-player__windows.full .swp-player__window {
  width: 0 !important;
  height: 0 !important;
}
.swp-player__windows.full .swp-player__window.full {
  width: 100% !important;
  height: 100% !important;
}
.swp-player__windows.layout1 .swp-player__window {
  width: 100%;
  height: 100%;
}
.swp-player__windows.layout4 .swp-player__window {
  width: 50%;
  height: 50%;
}
.swp-player__windows.layout9 .swp-player__window {
  width: 33.3333%;
  height: 33.3333%;
}
.swp-player__windows.layout6 .swp-player__window {
  width: 33.3333%;
  height: 50%;
}
.swp-player__windows.layout12 .swp-player__window {
  width: 25%;
  height: 33.3333%;
}
.swp-player__windows.layout16 .swp-player__window {
  width: 25%;
  height: 25%;
}
.swp-player__windows.layout25 .swp-player__window {
  width: 20%;
  height: 20%;
}
.swp-player__windows.layout32 .swp-player__window {
  width: 12.5%;
  height: 25%;
}
.swp-player__wndContent {
  width: 100%;
  height: 100%;
  border: var(--player-border-color) solid 1px;
  position: relative;
}
.swp-player__wndContent.active {
  border: var(--player-primary-color) solid 2px;
}
.swp-player__window {
  width: 100%;
  padding: 0px;
  transition: all 0.1s ease-in;
  border-left-color: var(--player-border-color);
  border-top-color: var(--player-border-color);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 150ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}
.swp-player__window.last {
  border-right-color: var(--player-border-color);
}
.swp-player__window.active {
  border-color: var(--player-primary-color) !important;
}
.swp-player__window.full {
  width: 100% !important;
  height: 100% !important;
}
.swp-player__window:hover .swp-player__titleBar {
  transform: translateY(0);
}
.swp-player__window:hover .swp-player__control {
  transform: translateY(0);
}
.swp-player__free {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  letter-spacing: 0.1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--player-wnd-color);
}
.swp-player__free i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.08);
}
.swp-player__free p {
  margin: 0;
  font-style: italic;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.1);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.swp-player iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}
.swp-player__error {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 12px;
  background-color: var(--player-wnd-color);
  color: var(--player-font-color);
  align-items: center;
  justify-content: center;
}
.swp-player__error button:first-child {
  margin-right: 10px;
}
.swp-player__titleBar {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #fff;
  padding: 0 5px;
  z-index: 22;
  transform: translateY(-100%);
  transition: transform 250ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}
.swp-player__arrow {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fff;
  z-index: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 13px;
}
.swp-player__arrow.back span:first-child {
  background-color: #f7214b;
}
.swp-player__arrow span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: transparent;
  margin-right: 5px;
}
.swp-player__control {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 22;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  transform: translateY(100%);
  transition: transform 250ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  display: flex;
}
.swp-player__control.horizontal {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  height: 36px;
}
.swp-player__control.vertical {
  flex-direction: column;
}
.swp-player__control i {
  color: #fff;
}
.swp-player__horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 5px;
}
.swp-player__back {
  height: 36px;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.swp-player__ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
}
.swp-player__li {
  line-height: 36px;
  padding: 0 3px;
}
.swp-player__li.zoom {
  padding: 0 10px;
}
.swp-player__li.zoom i {
  font-size: 28px;
}
.swp-player__li i {
  font-size: 20px;
}
.swp-player__li:hover::before {
  content: attr(data-title);
  display: inline-block;
  padding: 2px 5px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  border-radius: 2px;
  position: fixed;
  font-size: 12px;
  line-height: 1;
  margin-top: -15px;
  margin-left: -10px;
  color: #fff;
}
.swp-player__li:hover i {
  color: var(--player-primary-color);
}
.swp-player__li.active i {
  color: var(--player-primary-color) !important;
}

.swp-btn {
  border: var(--player-primary-color) solid 1px;
  color: var(--player-primary-color);
  padding: 3px 5px;
  background-color: transparent;
  border-radius: 4px;
}

.soc-web-loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--player-primary-color);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: var(--player-wnd-color);
}
.soc-web-loading__text {
  font-size: 12px;
  margin-top: 20px !important;
  margin-bottom: 0px !important;
}

.swp-windows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.swp-windows li {
  line-height: 30px;
  font-size: 12px;
  text-align: center;
  padding: 0 15px;
  cursor: pointer;
  letter-spacing: 0.2em;
  color: var(--player-font-color);
}
.swp-windows li strong {
  margin-left: 5px;
}
.swp-windows li i {
  font-size: 16px;
  color: var(--player-font-color);
}
.swp-windows li:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.swp-windows li.active {
  color: var(--player-primary-color);
}
.swp-windows li.active i {
  color: var(--player-primary-color);
}

.swp-rec {
  position: absolute;
  left: 10px;
  top: 40px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  font-size: 12px;
  color: #fff;
  padding: 3px 10px 3px 5px;
  border-radius: 10px;
  line-height: 1;
  align-items: center;
}
.swp-rec__point {
  height: 8px;
  width: 8px;
  background-color: #f54747;
  border-radius: 50%;
  margin-right: 4px;
  -webkit-animation: breathe 2000ms ease infinite;
  -moz-animation: breathe 2000ms ease infinite;
  -o-animation: breathe 2000ms ease infinite;
  animation: breathe 2000ms ease infinite;
}
.swp-rec i {
  color: #f54747;
  margin-left: 5px;
}

.spinner {
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.spinner > div {
  background-color: var(--player-primary-color);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
@-webkit-keyframes breathe {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes breathe {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes breathe {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}
@keyframes breathe {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
}
.loading {
  width: 150px;
  height: 8px;
  margin: 0 auto;
  text-align: center;
}
.loading span {
  display: inline-block;
  width: 8px;
  height: 100%;
  margin-right: 8px;
  background: var(--player-primary-color);
  transform-origin: right bottom;
  -webkit-animation: load 1s infinite alternate;
  animation: load 1s infinite alternate;
}
.loading span:last-child {
  margin-right: 0px;
}
.loading span:nth-child(1) {
  -webkit-animation-delay: 0.2;
  animation-delay: 0.2;
}
.loading span:nth-child(2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loading span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loading span:nth-child(4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.loading span:nth-child(5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@keyframes load {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}