.frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../img/bg.jpg);
  background-size: cover;
}
.frame .colums {
  width: 100%;
  max-width: 640px;
  height: 100%;
}
.frame .rectangle {
  background: linear-gradient(155deg, rgb(238, 64, 55) 0%, rgb(107, 21, 16) 74%, rgba(187, 50, 43, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 50px;
}
.frame .plus-icon {
  position: absolute;
  width: 82px;
  height: 82px;
  cursor: pointer;
}
.frame .plus-icon.t-l, .frame .plus-icon.t-l-1 {
  top: 0;
  left: 0;
}
.frame .plus-icon.t-r {
  top: 0;
  right: 0;
}
.frame .plus-icon.b-l {
  bottom: 0;
  left: 0;
}
.frame .plus-icon.b-r {
  bottom: 0;
  right: 0;
}
.frame .plus-icon:hover, .frame .plus-icon.active {
  background-color: rgba(0, 0, 0, 0.25);
}
.frame .plus-icon span {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background-color: var(--plus-color);
}
.frame .plus-icon.active span {
  background-color: #fff;
}
.frame .plus-icon.active:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.frame .plus-icon.close {
  left: 200%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.frame .plus-icon.close span {
  transform: rotate(45deg);
}
.frame .plus-icon.inactive span:first-of-type {
  height: 20px;
  width: 2px;
  margin-top: -10px;
}
.frame .plus-icon.hide {
  display: none;
}
.frame .plus-icon.inactive span:nth-of-type(2) {
  display: none;
}
.frame .plus-icon.inactive span:nth-of-type(3) {
  margin-top: -13px;
}
.frame nav {
  position: absolute;
  bottom: 0;
  left: -100%;
  width: calc(100% - 84px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.frame nav.active {
  left: 84px;
}
.frame nav .nav-item {
  height: 82px;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 1.5rem;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}
.frame nav .nav-item.hide {
  height: 0px;
  padding: 0px;
  overflow: hidden;
}
.frame nav .nav-item.hide:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.frame nav .nav-item.open {
  width: 200%;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.5) 80%);
}
.frame nav .nav-item.open .link {
  padding: 10px 30px;
}
.frame nav .up, .frame nav .down {
  background-image: url(../img/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 340px;
}
.frame nav .down {
  margin-top: 424px;
  transform: rotate(180deg);
}
.frame .hero-section {
  padding: 40px;
}
.frame .logo {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 65px;
  height: 65px;
}
.frame .last-episode {
  font-weight: 600;
  color: #ffffff;
}
.frame .last-episode span {
  background-color: rgba(226, 3, 7, 0.7);
  padding: 2px 5px;
  border-radius: 2px;
}
.frame .hero-section h1 {
  color: var(--ligth-red);
  font-size: 3.5rem;
  letter-spacing: 0;
  line-height: 50px;
}

.player {
  height: 45px;
  background-color: var(--white-color);
  border-radius: 22.5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2509803922);
  padding: 2px;
}
.player .play-btn {
  width: 41px;
  height: 41px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background-image: url(../img/play-btn.png);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.player .play-btn:hover {
  background-color: rgba(0, 0, 0, 0.3137254902);
  scale: 1.1;
}
.player .duration {
  font-size: 12px;
}
.player .duration .left {
  font-weight: 700;
  color: #ee4037;
}
.player .volume {
  width: 20%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}
.player .timeline {
  width: 20%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 60%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}
.player .rectangle-2, .player .timeline .rectangle-2 {
  width: 23px;
  height: 4px;
  background-color: rgba(238, 64, 55, 0.8);
}

.next-episode {
  padding: 40px;
  justify-content: flex-end;
}
.next-episode .title {
  font-size: 1.5rem;
  color: #fff;
}
.next-episode p {
  color: #fff;
  border-bottom: 1px dotted #fff;
  padding-bottom: 20px;
}
.next-episode .record {
  width: 64px;
  height: 64px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.next-episode .record .ellipse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FF0000;
}

.footer-logo {
  width: 150px;
}
.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer a {
  width: 24px;
  height: 24px;
}
.footer a:hover {
  scale: 1.1;
  cursor: pointer;
}

.gap {
  overflow: hidden;
  position: relative;
}
.gap:has(.screen.open) {
  overflow-y: scroll;
}
.gap .screen {
  background: linear-gradient(125deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 80%);
  left: 100%;
  padding: 30px;
  padding-top: 100px;
  position: absolute;
  overflow: hidden;
  z-index: 0;
  top: 0;
  width: 100%;
}
.gap .screen.open {
  left: 0;
}
.gap .screen p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7);
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .flex-big {
    flex-direction: column;
  }
  .frame {
    height: 200%;
    background-size: auto auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  .frame .colums {
    max-width: 100%;
  }
  .frame .gap {
    display: none;
  }
  .next-episode {
    background-color: rgba(0, 0, 0, 0.5);
  }
}/*# sourceMappingURL=style.css.map */