@charset "UTF-8";
/*!
* Style Sheet for ""
* version: 1
* last modified:2023 By Applab
* author: Applab
* website: www.applab.qa
*/
/*b5 start -------------------------------------------------------------------------------------------------------------------*/
/*b5 end ---------------------------------------------------------------------------------------------------------------------*/
audio {
  font-size: 1rem;
}

.bg-orange {
  background: #F48F00 !important;
}
.station-main {
  width: 100%;
  position: fixed;
  bottom: -127px;
  transition: all 0.3s;
  min-height: 110px;
  z-index: 9;
  display: none;
  transition: all 0.3s;
}
.station-main.show-player {
  transition: all 0.3s;
  display: block !important;
  bottom: -1px;
}
@media (max-width: 1199px) {
  .station-main {
    position: relative;
    bottom: 0;
  }
}
.station-main.scrolled-near-bottom {
  position: sticky;
  transition: all 0.3s;
  min-height: 90px;
  bottom: -127px;
}
.station-main p {
  margin: 0;
}
@media (max-width: 1679px) {
  .station-main p {
    font-size: 14px !important;
  }
}
.station-main .close-frame {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  inset-inline-start: 100px;
  padding: 0;
}
.radio-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
}
.radio-player .controls {
  display: flex;
  align-items: center;
  gap: 40px;
}
.radio-player .controls button {
  background: transparent;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  outline: none;
}
.radio-player .controls button.play-pause-btn {
  background-color: white;
  color: #f08c30;
  border-radius: 50%;
  padding: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-player .controls button.play-btn img {
  position: relative;
  left: 1px;
  width: 20px;
}

.audio-image {
  width: 100px;
  height: 94px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1679px) {
  .audio-image {
    width: 80px;
    height: 74px;
  }
}

.livePlayer .audio-image {
  width: 81px;
  height: 81px;
}

.seek-bar-container {
  direction: ltr;
}

.seek-bar-range {
  cursor: pointer;
}

/* Styling the progress bar with image background */
.seek-bar-range {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 9;
  /* opacity: 0; */
  /* display: none; */
  height: 100%;
  width: 100%;
  opacity: 0;
}

.seek-bar {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  overflow: hidden;
  background: url("../images/seek-bg.svg") no-repeat center;
  background-size: contain;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.seek-bar.orange-seek-bar {
  background: url("../images/orange-seek-bg.svg") no-repeat center;
}

.seek-bar-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-container {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 92px; /* Adjust to match the seek bar height */
}

@media (max-width: 1679px) {
  .station-main, .seek-bar-container {
    min-height: 70px;
  }
}

.mix-blend {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ddd; /* The color of the progress */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: width 0.1s linear;
  z-index: 0;
}

.mix-blend {
  mix-blend-mode: luminosity;
  opacity: 0.5;
}

.time-display {
  position: relative;
  z-index: 9;
  font-size: 14px;
  color: #fff;
}

.seek-bar-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: default;
  z-index: 9;
}
.seek-bar-loader .loader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seek-bar-loader .dot {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Change color as needed */
  animation: bounce 0.6s infinite alternate;
}
.seek-bar-loader .dot:nth-child(1) {
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}
.seek-bar-loader .dot:nth-child(2) {
  animation-delay: 0.1s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(3) {
  animation-delay: 0.2s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(4) {
  animation-delay: 0.3s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(5) {
  animation-delay: 0.4s;
  width: 12px;
  height: 12px;
}
.seek-bar-loader .dot:nth-child(6) {
  animation-delay: 0.5s;
  width: 14px;
  height: 14px;
}
.seek-bar-loader .dot:nth-child(7) {
  animation-delay: 0.6s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(8) {
  animation-delay: 0.7s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(9) {
  animation-delay: 0.8s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(10) {
  animation-delay: 0.9s;
  width: 4px;
  height: 4px;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

.bg-orange {
  background-color: #F48F00 !important;
}
.bg-orange .seek-bar-loader, .bg-orange .mix-blend {
  background-color: #F48F00 !important;
}

.bg-grey .seek-bar-loader, .bg-grey .mix-blend {
  background-color: #F6F6F6 !important;
}
.bg-grey .mix-blend {
  mix-blend-mode: color;
  opacity: 1;
}
.bg-grey .time-display {
  color: #000;
}
.bg-grey .play-pause-btn {
  background-color: #F48F00 !important;
}
.bg-grey .play-pause-btn img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1); /* For Safari and older WebKit browsers */
}
.bg-grey .seek-bar-loader .dot {
  background-color: #c3c3c3;
}

.seekbar-otr {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.station-small {
  position: static;
}
.station-small .seekbar-otr {
  width: 80.1%;
}
.station-small .seek-bar.orange-seek-bar {
  background-position: right;
}
.station-small .time-display {
  font-size: 16px;
}
.station-small .seek-bar-container {
  justify-content: end;
  padding-inline-end: 25px;
}

@media (max-width: 1679px) {
  .station-main .close-frame {
    inset-inline-start: 15px;
  }
}
@media (max-width: 1500px) {
  .station-main .close-frame {
    inset-inline-end: 15px;
    text-align: left;
    z-index: 9;
    top: 25px;
    inset-inline-start: auto;
  }
  .station-main .close-frame img {
    width: 27px;
  }
}
@media (max-width: 991px) {
  .seek-bar-loader .dot {
    margin: 0 5px;
  }
  .radio-player .controls {
    gap: 15px;
  }
  .radio-player .controls button.play-pause-btn {
    width: 40px;
    height: 40px;
  }
  .radio-player .controls button.play-btn img {
    width: 15px;
  }
  .program-details h4 {
    font-size: 18px;
  }
  .seek-bar-container {
    margin: 0;
    justify-content: flex-end;
    display: flex;
  }
  .station-small .seek-bar {
    background-size: 80%;
    background-repeat: repeat-x;
  }
}
@media (max-width: 767px) {
  .audio-image {
    width: 75px;
    border-radius: 8px;
    box-shadow: 3px 4px 16px -7px rgba(0, 0, 0, 0.55);
    border: 3px solid #F48F00;
  }
  .station-main .close-frame {
    top: 40px;
  }
  .station-main .close-frame img {
    width: 25px;
  }
  .program-details {
    row-gap: 10px;
    flex-direction: row !important;
  }
  .seek-bar-container {
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
    min-height: 60px;
  }
  .seekbar-otr {
    width: 100%;
  }
  .radio-player {
    order: 3;
    justify-content: center !important;
  }
  .radio-player .controls {
    gap: 10px;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
  }
  .program-details {
    margin-bottom: 15px;
  }
  .station-small .seek-bar-container {
    margin-bottom: 0;
  }
  .station-small .radio-player {
    order: inherit !important;
  }
  .station-main .seek-bar-loader {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .station-small .seekbar-otr {
    width: 100%;
  }
  .station-small .seek-bar-container {
    width: 100%;
  }
  .program-details h4 {
    font-size: 16px;
  }
  .program-details {
    margin-bottom: 0px;
  }
}
.inner-banner {
  position: relative;
}
.inner-banner figure {
  margin: 0;
}
.inner-banner .banner-content {
  position: absolute;
  inset-inline-start: 15px;
  bottom: 100px;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .inner-banner .banner-content {
    bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .inner-banner .banner-content {
    bottom: 10px;
  }
}
.breadcrumb li {
  position: relative;
  padding-inline-end: 50px !important;
  font-size: 16px;
}
.breadcrumb li a:hover {
  color: #8D1B3D !important;
}
@media (max-width: 1199.98px) {
  .breadcrumb li {
    font-size: 13px;
    padding-inline-end: 30px !important;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb li {
    padding-inline-end: 30px !important;
  }
}
.breadcrumb li:last-child {
  padding-inline-end: 0 !important;
}
.breadcrumb li.active {
  font-weight: 600;
  color: #8D1B3D !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
.breadcrumb-item + .breadcrumb-item::after {
  content: "";
  border: solid #292D32;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 2px;
  inset-inline-start: -30px;
  top: 7px;
}
@media (max-width: 1199.98px) {
  .breadcrumb-item + .breadcrumb-item::after {
    inset-inline-start: -20px;
  }
}
.pagination {
  gap: 7px;
}
.pagination .page-link, .pagination .page-numbers {
  border: 1px solid #F1F1F1 !important;
  border-radius: 10px;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pagination .page-link.current, .pagination .page-numbers.current {
  background-color: #114782;
  color: #fff !important;
}
.pagination .page-link.current:hover, .pagination .page-numbers.current:hover {
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .pagination .page-link, .pagination .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-radius: 8px;
  }
}
.pagination .page-link.border-0, .pagination .page-numbers.border-0 {
  border: 0 !important;
}
.pagination .page-link.border-0:hover, .pagination .page-numbers.border-0:hover {
  background: none !important;
  color: inherit !important;
}
.pagination .page-link:hover, .pagination .page-numbers:hover {
  color: #0d6efd !important;
}
.responsive-tabs .card-body {
  background-color: transparent;
  padding: 40px 0 20px 0;
}
.responsive-tabs .nav-tabs {
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-left: 0;
  border-right: 0;
}
.responsive-tabs .nav-tabs .nav-item {
  flex-grow: 1;
}
.responsive-tabs .nav-tabs .nav-link {
  background-color: transparent;
  border: 0;
  position: relative;
  min-width: 180px;
  height: 74px;
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsive-tabs .nav-tabs .nav-link:hover {
  color: #114782 !important;
}
.responsive-tabs .nav-tabs .nav-link.active {
  color: #114782;
  font-weight: 700;
}
.responsive-tabs .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #114782;
  right: 0;
}

.responsive-tabs .nav-tabs {
  display: none;
}

.schedule-info-outer {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 991.98px) {
  .schedule-info-outer {
    grid-template-columns: 1fr;
  }
}
.schedule-info-outer .schedule-info {
  background-color: transparent;
  border-radius: 24px;
  overflow: hidden;
  min-height: 164px;
  border: 1px solid rgba(41, 45, 50, 0.3);
  padding: 8px;
  width: 100%;
  grid-column: span 1;
}
.schedule-info-outer .schedule-info:only-child {
  grid-column: span 2;
}
.schedule-info-outer .schedule-info .details {
  width: 100%;
  padding-inline-start: 32px;
  padding-inline-end: 63px;
  padding-bottom: 32px;
  padding-top: 32px;
  background-color: #fff;
  border-radius: 16px 0px 0px 16px;
  border: 1px solid rgb(222, 216, 216);
  border-inline-start: 0;
}
.schedule-info-outer .schedule-info .details .modal-dialog {
  top: 30%;
  max-width: 600px;
}
.schedule-info-outer .schedule-info .details .modal-content {
  max-width: 600px;
}
.schedule-info-outer .schedule-info .details .sm-head span {
  color: #F48F00;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6.5px;
}
.schedule-info-outer .schedule-info .details .sm-head span img {
  width: 20px;
}
.schedule-info-outer .schedule-info .details .sm-head h3 {
  font-size: 24px;
  color: #1E1E1E;
  font-weight: 600;
}
.schedule-info-outer .schedule-info .details p {
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  height: 3em;
  margin-bottom: 3px;
}
.schedule-info-outer .schedule-info .date-box {
  background-color: #F48F00;
  min-width: 192px;
  border-radius: 0px 16px 16px 0;
}
.schedule-info-outer .schedule-info .date-box h4 {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}
.schedule-info-outer .schedule-info .date-box p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

@media (max-width: 1679px) {
  .responsive-tabs .nav-tabs .nav-link {
    height: 60px;
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .date-box {
    min-width: 150px;
  }
  .schedule-info-outer .schedule-info .details {
    padding-inline-start: 22px;
    padding-inline-end: 53px;
    padding-bottom: 22px;
    padding-top: 22px;
  }
  .schedule-info-outer .schedule-info .details p {
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .date-box h4 {
    font-size: 38px;
    line-height: 40px;
  }
  .schedule-info-outer .schedule-info .date-box p {
    font-size: 15px;
  }
  .schedule-info-outer .schedule-info .details .sm-head h3 {
    font-size: 20px;
  }
  .schedule-info-outer .schedule-info .details .sm-head span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .responsive-tabs .nav-tabs .nav-link {
    min-width: 130px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .schedule-info-outer {
    gap: 30px;
  }
}
@media (min-width: 991px) {
  .responsive-tabs .nav-tabs {
    display: flex;
  }
  .responsive-tabs .card {
    border: none;
    background-color: transparent;
  }
  .responsive-tabs .card .card-header {
    display: none;
  }
  .responsive-tabs .card .collapse {
    display: block;
  }
}
@media (max-width: 991px) {
  .responsive-tabs .card-body {
    padding: 30px 20px;
  }
  .responsive-tabs .card-header {
    padding: 10px 18px;
  }
  .responsive-tabs .card-header h3 {
    font-size: 20px;
  }
  .responsive-tabs .card-header a {
    color: #114782;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }
  .schedule-info-outer .schedule-info .date-box {
    min-width: 100px;
  }
  .schedule-info-outer .schedule-info {
    min-height: auto;
  }
  .responsive-tabs [aria-expanded=false]:after {
    content: "+";
    margin-inline-start: auto;
    font-size: 30px;
    font-weight: 300;
  }
  .responsive-tabs [aria-expanded=true]:after {
    content: "−";
    margin-inline-start: auto;
    font-size: 30px;
    font-weight: 300;
  }
  .responsive-tabs {
    padding: 0;
    margin-top: 40px;
  }
  .responsive-tabs .tab-pane {
    display: block !important;
    opacity: 1;
    margin-bottom: 10px;
  }
  .schedule-info-outer .schedule-info .details {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .schedule-info-outer .schedule-info .details .sm-head {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 767px) {
  .responsive-tabs .card-header h3 {
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .details p {
    font-size: 14px;
  }
  .schedule-info-outer .schedule-info .date-box h4 {
    font-size: 30px;
  }
  .schedule-info-outer {
    flex-direction: column;
  }
  .responsive-tabs .card-body {
    padding: 20px 20px;
  }
  .responsive-tabs .card-header {
    padding: 5px 18px;
    overflow: hidden;
    border-bottom: 0;
  }
}
@media (max-width: 479px) {
  .schedule-info-outer .schedule-info {
    flex-direction: column;
    padding: 0;
  }
  .schedule-info-outer .schedule-info .details {
    border: 0;
  }
  .schedule-info-outer .schedule-info .date-box {
    border-radius: 0;
    align-items: center !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 10px 15px;
    gap: 10px;
  }
  .responsive-tabs .card-header {
    padding: 5px 15px;
  }
}
.content-card {
  border: 1px solid rgba(17, 71, 130, 0.2);
  padding: 20px;
}
.content-card p {
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .content-card {
    padding: 20px;
  }
}

.custom-table th {
  background-color: #EAECF0 !important;
  color: #114782;
  font-weight: 600;
}
.custom-table th,
.custom-table td {
  height: 52px;
  vertical-align: middle;
  font-size: 16px;
  text-align: center;
  border-right: 1px solid #c2d3f5 !important;
}
.custom-table th:first-child,
.custom-table td:first-child {
  border-right: 1px solid transparent !important;
}
.custom-table td {
  color: rgba(30, 30, 30, 0.65);
}

.card-box {
  position: relative;
}
.card-box figure {
  height: 335px;
}
@media (max-width: 767.98px) {
  .card-box figure {
    height: auto;
  }
}
.card-box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.card-box p {
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .card-box p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .card-box p {
    font-size: 14px;
  }
}
.card-box .date-info .line {
  width: 1px;
  height: 15px;
}
.card-box .btm {
  position: absolute;
  bottom: 0;
  background: rgba(17, 71, 130, 0.3);
  -webkit-backdrop-filter: blur(90.5px);
          backdrop-filter: blur(90.5px);
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px 24px;
}
@media (max-width: 767.98px) {
  .card-box .btm .text-orange {
    font-size: 13px;
  }
}
@media (max-width: 767.98px) {
  .card-box .btm a {
    font-size: 14px;
  }
}
.card-box .image-border {
  border: 1px solid rgba(41, 45, 50, 0.3);
}
.card-box .content-info {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  align-items: flex-start;
}
.card-box .content-info .line-clamp-2 {
  text-overflow: ellipsis;
  height: 54px;
}
.card-box .content-info .read-more-primary {
  margin-top: auto !important;
}
@media (max-width: 991.98px) {
  .card-box .content-info .read-more-primary {
    margin-top: 1rem !important;
  }
}
@media (max-width: 575.98px) {
  .card-box .content-info .read-more-primary {
    margin-top: 0 !important;
  }
}
.card-box h4 {
  margin-bottom: 1.5rem !important;
}
@media (max-width: 991.98px) {
  .card-box h4 {
    margin-bottom: 0.8rem !important;
  }
}

.content-info.min-h {
  min-height: auto !important;
}

article .rounded-4 {
  max-width: 700px;
  margin: auto;
}
article .rounded-4 img {
  max-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
