/* :root {
  --primary-color: #006af6;
  --secondary-color: #009ff2;
  --font-primary: #333333;
  --font-secondary: #555555;
  --tab-active: #dbf3ff;
  --border: #ede3e4;
  --taupe-color: #463f3a;
  --white: #fff;
  --green: #00bb07;
  --light-green: #f0fff0;
  --idea-label-color: #a78a75;
} */


a {
  text-decoration: none;
  color: inherit;
}

h3 {
  font-weight: 600;
}

.font-tab-text {
  font-size: 1.2rem;
}

.container {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  margin: 0 auto;
  color: var(--font-primary);
  background-color: #f7f7f7;
}

/* p {
  color: var(--font-secondary);
} */

.header {
  border-bottom: 2px solid #efeaea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2rem;
  background-color: #fff;
}

.header a {
  text-decoration: none;
  color: inherit;
}

.nav {
  display: flex;
  gap: 2rem;
  list-style-type: none;
  align-items: center;
}

.active1 {
  color: var(--primary-color);
  font-weight: 500;
}

.capture-container-box-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 31.47px;
  color: #323232;
}

.main-content {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  padding: 1rem 2rem;
}

.header-right-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.my-space {
  background-color: #e3e3e3;
  padding: 8px;
  border-radius: 5px;
}

.my-work-space {
  color: #8e8e8e;
}

.content-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tab-buttons {
  display: flex;
  justify-content: center;
}

.tab-button {
  padding: 1rem;
  cursor: pointer;
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
}

.tab-button:hover {
  background-color: #eef6ff;
}

.tab-button.active {
  background-color: var(--tab-active);
  color: var(--primary-color);
  font-weight: bold;
  border-radius: 0.2rem;
  border-bottom: 1px solid var(--primary-color);
}

.tab-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 29.05px;
}

.tab-content {
  border-top: none;
  display: none;
  padding: 1rem 0 0 0;
  height: 100%;
  overflow: hidden;

}

.tab-body-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  height: 100%;
  padding: 0rem 0 0 0;
  overflow: auto;
  justify-content: center;
}

.tab-body-modal-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 0 1rem;
}


.confirmation {
  display: grid;
}

.modal-header {
  display: grid;
  gap: 8px;
  justify-content: center;
  text-align: center;
}


.modal-footer {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.tab-body-modal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  height: 100%;
  overflow: auto;
}

.flag-shadow {
  width: 45px;
  height: 32px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.tab-body-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  overflow: auto;
}

.life-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.about-character {
  display: grid;
  gap: 2px;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--taupe-color);
  border-radius: 10px;
}

.character-details {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--font-secondary);
}

.country {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.life-data {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 4px;
}

.notes-data {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;

}

.notes-data::-webkit-scrollbar {
  width: 0px;
}

.note {
  padding: 0.8rem 1rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 4px;
}

.note-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.note:hover+.note-actions,
.note-actions:hover {
  opacity: 1;
}

#action {
  padding: 0.5rem 0.5rem;
  background-color: var(--taupe-color);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  color: var(--white);
}

.new-note {
  display: flex;
  padding: 1rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
}

.response-box {
  padding: 1rem;
  border: 1px solid var(--border);
  height: 100px;
  border-radius: 4px;
}

#dropdown {
  padding: 0.8rem;
  border: 1px solid var(--border);
  color: inherit;
  border-radius: 4px;
}

.audio {
  border-radius: 4px;
  width: 100%;
}

.title-and-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta {
  padding: 8px 16px;
  cursor: pointer;
  color: var(--white);
  font-size: inherit;
  border-radius: 6px;
  border: none;
  background-color: #006AF6;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.text-blue {
  color: #009ff2 !important;
}

.cta-secondary {
  padding: 9px 20px;
  cursor: pointer;
  color: white!important;
  font-size: inherit;
  border-radius: 6px;
  display: flex;
  background-color: #FF7070;
  color: inherit;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: none;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.live-a-life {
  padding: 0.8rem 1.4rem;
  font-size: inherit;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #b1b1b1;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 300px;
}

.title-and-refresh {
  display: flex;
  justify-content: space-between;
}

.tab-content.active {
  display: grid;
  grid-template-rows: auto 1fr;
}

.idea-data-wrapper {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
  overflow: auto;
}

.idea-data-wrapper1 {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: auto;
}

.about-the-character {
  display: grid;
  gap: 0.4rem;
}

.tagged-event {
  border: 1px solid black;
  padding: 0.8rem;
  border-radius: 4px;
  position: relative;
}

.tagged-event-label {
  position: absolute;
  top: -10px;
  z-index: 1;
  background-color: var(--white);
  text-transform: uppercase;
  font-size: 10px;
  padding: 0.3rem;
  color: #6e6e6e;
  font-weight: 500;
}

.idea-data {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 4px;
  height: 100%;
  overflow: auto;
}

.idea-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.idea-section ul {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.idea-content {
  gap: 12px;
  display: flex;
  flex-direction: column;
}

.goal {
  display: flex;
  gap: 8px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
}

.goal1 {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 600;
}

.final-title {
  font-size: 20px;
  font-weight: 600;
}

.label {
  color: var(--idea-label-color);
  font-size: 14px;
}

.sdg-goals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.idea-section input {
  /* padding: 0.6rem 1rem; */
  font-size: inherit;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.phase-label {
  padding: 0.5rem;
  font-size: inherit;
  background-color: var(--light-green);
  border: 1px solid var(--green);
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phase-name-and-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.phase-details {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 14px;
}

#alarm {
  font-size: 14px;
}

#play {
  font-size: 36px;
}

.response-box {
  resize: none;
}

/* tab-css-end  */

.width-second {
  max-width: 435px !important;
}

.width-submit {
  max-width: 600px !important;
}

.modal-header {
  padding: 11px;
}

.ready-to-pitch {
  font-size: 19px;
}

/* add css */

.life-play-container {
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-life-title {
  font-size: 1rem!important;
  font-weight: 400;
  line-height: 21.78px!important;
  text-align: center!important;
}

.life-play-button {
  border: 1px solid #B1B1B1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.live-a-life-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  color: #323232;
}

.character-data-component {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.play-life-logo {
  height: 35px;
}

.play-life-logo>img {
  height: 100%;
}


.play-recording-container {
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #EDE3E4;
}

.play-button-box {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF6B6B;
  color: white;
  font-size: 1.4rem;
}

.progress-bar2 {
  flex: 1;
  margin: 0 8px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #FF6B6B;
  border-radius: 4px;

}

.progress-bar2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #FF6B6B;
  border-radius: 50%;
  cursor: pointer;
}

.time {
  font-weight: 500;
  color: #FF6B6B;
}

.close-button-recording {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6B6B;
}

.container-export-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.5s ease;
  opacity: 0;
}

.text-blue {
  color: #009ff2 !important;
}

.main-popup-container {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.8rem;
}

.sdg-title-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.banner-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

img:focus {
  border: 2px solid var(--primary-color);
}

.max-width-1000 {
  max-width: 756px !important;
}



/* save-card */

.event-tagged-box {
  padding: 0.8rem;
  border: 1px solid var(--border);
  color: inherit;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 19.36px;

}

.description-save-box {
  padding: 0.8rem;
  border: 1px solid var(--border);
  color: inherit;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  max-height: 300px;
  overflow: auto;
}


@media (max-width: 1280px) {

  .font-header-menu {
    font-size: 16px;
  }

  .header-right-box {
    gap: 1rem;
  }

  .capture-container-box-title {
    font-size: 24px;
  }

  .paragaraph-text-1 {
    font-size: 23px;
  }

  .live-a-life-text {
    font-size: 21px;
  }

  .info-header-title {
    font-size: 23px;
  }

  .info-description-title {
    font-size: 15px;
  }

  .goal {
    font-size: 13px;
  }

  .idea-section ul {
    font-size: 16px;
  }

  .tagged-event {
    font-size: 16px;
  }

  .final-title {
    font-size: 16px;
  }

}

@media (max-width: 1199px) {

  .font-header-menu {
    font-size: 14px;
  }

  .header-right-box {
    gap: 1rem;
  }

  .capture-container-box-title {
    font-size: 23px;
  }

  .paragaraph-text-1 {
    font-size: 22px;
  }

  .live-a-life-text {
    font-size: 19px;
  }

  .info-header-title {
    font-size: 22px;
  }

  .info-description-title {
    font-size: 14px;
  }

  .goal {
    font-size: 12px;
  }

  .idea-section ul {
    font-size: 15px;
  }

  .tagged-event {
    font-size: 15px;
  }

  .final-title {
    font-size: 16px;
  }

}

@media (max-width: 1024px) {

  .font-header-menu {

    font-size: 13px;
  }

  .header-right-box {
    gap: 1rem;
  }

  .capture-container-box-title {
    font-size: 23px;
  }

  .paragaraph-text-1 {
    font-size: 22px;
  }

  .live-a-life-text {
    font-size: 18px;
  }

  .info-header-title {
    font-size: 21px;
  }

  .info-description-title {
    font-size: 13px;
  }

  .goal {
    font-size: 11px;
  }

  .idea-section ul {
    font-size: 14px;
  }

  .tagged-event {
    font-size: 14px;
  }

  .final-title {
    font-size: 15px;
  }

}

@media (max-width: 991px) {

  .font-header-menu {
    font-size: 12px;
  }

  .header-right-box {
    gap: 1rem;
  }

  .capture-container-box-title {
    font-size: 23px;
  }

  .paragaraph-text-1 {
    font-size: 22px;
  }

  .live-a-life-text {
    font-size: 17px;
  }

}