
.link-tree {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 5px;
  width: 100%;
  padding: 35px 0;
  flex-wrap: wrap;
}

.link-tree p {
  margin: 0;
  font-weight: 500;
  color: #181818;
  font-size: 18px;
}

.link-tree a {
  color: #181818;
  font-size: 18px;
}

.link-tree a:last-child {
  font-weight: 500;
}

.reader {
  display: grid;
  grid-row: auto;
  direction: ltr;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "left left left left left left left left left right right right"
    "left left left left left left left left left right right right";
}

.reader .reader-card {
  grid-area: right;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin: 20px 0px 100px 0px;
  gap: 20px;
}

.reader .reader-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 1000px;
  border: 10px solid #ffffff;
}

.reader .reader-card .reader-details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.reader .reader-card .reader-details .name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reader .reader-card .reader-details .name i {
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: #01273a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 5px;
}

.reader .reader-card .reader-details .name p {
  margin: 0;
  background-color: #01273a;
  color: #fff;
  border-radius: 5px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.reader .reader-card .reader-details .country {
  background-color: #01273a;
  color: #fff;
  border-radius: 5px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.reader .quran-parts {
  grid-area: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.reader .quran-parts .part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  height: 80px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

.reader .quran-parts .part .right-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  height: 100%;
  gap: 10px;
}

.reader .quran-parts .part .right-side .num-box {
  width: 30px;
  height: 100%;
  background-color: #01273a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
}

.reader .quran-parts .part .right-side p {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 500;
}

.reader .quran-parts .part .left-side {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  height: 100%;
  gap: 20px;
  margin-left: 20px;
}

.reader .quran-parts .part .left-side > div {
  background-color: #01273a;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: 0.3s;
}

.reader .quran-parts .part .left-side > div:hover {
  background-color: #1c6e97;
}

.reader .quran-parts .part .left-side > div i {
  font-size: 22px;
  color: #fff;
}

.reader .quran-parts .part .left-side > a {
  background-color: #01273a;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: 0.3s;
}

.reader .quran-parts .part .left-side > a:hover {
  background-color: #1c6e97;
}

.reader .quran-parts .part .left-side > a i {
  font-size: 22px;
  color: #fff;
}

.audio-player {
  width: 100%;
  height: 120px;
  background-color: #01273a;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  flex-direction: column;
  visibility: hidden;
  transition: .5s;
}

.audio-player.show {
  position: fixed;
  visibility: visible;
}

.audio-player input {
  width: 100%;
  direction: ltr;
}

input[type="range"] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: #658da1; /* Otherwise white in Chrome */
  height: 8px;
  overflow: hidden;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 8px;
  background-color: #fff;
  z-index: 100;
  box-shadow: -10000px 0px 0px 10000px #1c6e97;
}

.play {
  animation: pulse 2s linear infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0;
  }
  50% {
    box-shadow: 0 0 0 5px #155d81;
  }
  100% {
    box-shadow: 0 0 0 5px #0c425d;
  }
}

.audio-player .time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  padding-bottom: 0px;
}
.audio-player .time span {
  color: #E2E2E2;
  font-size: 15px;
}

.audio-player .play-puas {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

.audio-player .play-puas > div {
  background-color: #1C6E97;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.audio-player .play-puas > div:active {
  background-color: #0e4d6d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.audio-player .play-puas > div i {
  font-size: 22px;
    color: #fff;
}

.audio-player .play-puas button {
  width: 35px;
  height: 35px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
}

.audio-player .play-puas button i {
  font-size: 30px;
    color: #658DA1;
}
/* respnsive  */

@media (max-width: 767px) {
  .link-tree a {
    font-size: 18px;
  }

  .reader {
    grid-template-areas:
      "right right right right right right right right right right right right"
      "left left left left left left left left left left left left";
  }
}

@media (max-width: 551px) {
}

@media (min-width: 768px) {
  .link-tree a {
    font-size: 18px;
  }

  .reader {
    grid-template-areas:
      "left left left left left left left left right right right right"
      "left left left left left left left left right right right right";
  }

  .reader .reader-card {
    margin: 20px 0px 100px 20px;
  }
}

@media (min-width: 992px) {
  .reader .reader-card {
    margin: 20px 0px 100px 0px;
  }
}

@media (min-width: 1200px) {
  .reader {
    grid-template-areas:
      "left left left left left left left left left right right right"
      "left left left left left left left left left right right right";
  }
}
