/*
 Theme Name:   Ejan 2024
 Description:  Plant3 Child Theme by SeedWebs.com
 Author:       SeedWebs
 Template:     plant3
 Version:      3.0.58
*/

/*
===========================================

This theme use SCSS, please check

1. assets/scss/style-m.scss - will be compiled to assets/css/style-m.css and used for mobile version.
2. assets/scss/style-d.scss - will be compiled to assets/css/style-d.css and used for desktop version.

===========================================
*/



/* Audio Player Shortcode */
.ap-player {
  display: flex;
  align-items: center;
  background: #111;
  color: #fff;
  min-height: 90px;
  margin: 1rem 0;
  overflow: hidden;
}

.ap-player .ap-cover {
  flex-shrink: 0;
  width: 88px;
  align-self: stretch;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  overflow: hidden;
}

.ap-player .ap-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-player .ap-cover .ap-cover-l1 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.ap-player .ap-cover .ap-cover-l2 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  opacity: 0.85;
}

.ap-player .ap-body {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.ap-player .ap-body .ap-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ap-player .ap-body .ap-subtitle {
  font-size: 0.8rem;
  color: var(--s-color-2, #cb0c08);
  margin-bottom: 10px;
}

.ap-player .ap-body .ap-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ap-player .ap-body .ap-controls .ap-wave {
  flex-shrink: 0;
  width: 30px;
  height: 14px;
  fill: #bbb;
}

.ap-player .ap-body .ap-controls .ap-bar-wrap {
  flex: 1;
  cursor: pointer;
  padding: 5px 0;
}

.ap-player .ap-body .ap-controls .ap-bar-wrap .ap-bar {
  position: relative;
  height: 3px;
  background: #444;
  border-radius: 2px;
}

.ap-player .ap-body .ap-controls .ap-bar-wrap .ap-bar .ap-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--s-color-2, #cb0c08);
  border-radius: 2px;
}

.ap-player .ap-body .ap-controls .ap-bar-wrap .ap-bar .ap-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background: #ccc;
  border-radius: 50%;
}

.ap-player .ap-body .ap-controls .ap-time {
  flex-shrink: 0;
  font-size: 0.78rem;
  color: #bbb;
  white-space: nowrap;
  font-family: var(--s-heading);
}

.ap-player .ap-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-left: 1px solid #2a2a2a;
  min-width: 190px;
}

.ap-player .ap-toggle .ap-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a3a3a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.ap-player .ap-toggle .ap-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.ap-player .ap-toggle .ap-toggle-info .ap-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.ap-player .ap-toggle .ap-toggle-info .ap-sub {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 2px;
}

.ap-player .ap-icon-on {
  display: none;
}

.ap-player.is-on .ap-btn {
  background: var(--s-color-2, #cb0c08);
}

.ap-player.is-on .ap-icon-off {
  display: none;
}

.ap-player.is-on .ap-icon-on {
  display: block;
}