
.new_call {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  padding: 40px 0;
}
.new_call .image-container {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items:center;
  flex-direction: column;
}

.new_call .image-container img {
  width: 80%;
  border-radius: 100%;
}

#volume-visualizer {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
}

#volume-visualizer-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transition: width 0.1s, height 0.1s, margin 0.1s;
}

.bars{
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.bar {
  width: 4%;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: height 0.1s;
  align-content: center;
}

.call-details {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  column-gap: 50px;
  padding: 40px 0px;
}

.call-details .transcript p {
  text-align: left;
  line-height: 2em;
}

.call-details h2 {
  text-align: left;
  margin: 0;
}

/* .call-details > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 2;
} */

/* .call-details .call-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.call-details .right-bar {
  max-width: 320px;
  display: flex;
  row-gap: 30px;
  padding-top: 20px;
}

.call-details .call-detail p {
  margin: 0;
}

.call-details .transcript {
  border-top: 2px solid #f5f5f509;
  padding-top: 20px;
  margin-top: 20px;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.call-details .transcript > div {
  margin-bottom: 10px;
  align-self: stretch;
} */

.new-prospect {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 1.2em;
}

.new-prospect img {
  transition: transform 0.5s ease;
  height:20px;
}
.new-prospect:hover{
  color: #000000;
}

.new-prospect:hover img {
  transform: rotate(180deg);
}

.call-details .transcript .message-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.call-details .transcript .message-name {
  font-weight: 700;
}

.call-details .message-info .message-time {
  font-size: 0.8em;
  color: #666;
}

.call-details .message-content {
  /* font-size: 1.2em; */
  text-align: left;
}

.card {
  margin: 0px;
  padding: 2em;
  border-radius: 20px;
  background-color: #00000011;
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: calc(100% - 4em);
}


.card h2{
  text-align:left;
  text-wrap: nowrap;
  margin: 0px;
  font-size: 1.6em;
}

.card h3 {
  text-align:left;
  text-wrap: nowrap;
  margin: 0px;
  font-size: 2em;
  font-weight: bold;
}

.card p {
  font-size: 0.95em;
  padding: 0px;
  margin: 0;
  text-align:left;
}

#spinner {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
}

#spinner img {
  width: 100%;
  max-width:300px;
}



#new_call {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#new-call-bg {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
}

.feedback-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding:40px 0px;
}

.feedback-wrapper img {
  height: 100px;
  width: 100px;
  border-radius: 100px;
}

.feedback-wrapper h1, .feedback-wrapper h2{
  margin:0px;
}

.scorecards {
  display: flex;
  width: 100%;
  column-gap: 30px;
  margin: 40px 0px 40px;
}
.scorecards .card {
  flex: 1;
  align-items: center;
}

.scorecards .card.summary {
  flex: 2;
  align-items: flex-start;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.buttons a.button {
  margin: 0;
}

.buttons a.call-button {
  margin: 0;
}

.subscription-required {
  position: relative;
}

.subscription-required > div:not(.subscription-overlay) {
  filter:blur(1.5em);
}

.subscription-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}


@media screen and (max-width: 980px) {
  
  .call-details {
    flex-direction: column-reverse;
  }
  .call-details .right-bar {
    max-width: 100%;
    flex-direction: row;
    column-gap: 30px;
    padding-bottom: 30px;
  }

  .scorecards {
    flex-direction: column;
    row-gap: 30px;
  }


  
}
@media screen and (max-width: 920px) {
  .call-details .right-bar {
    flex-direction: column;
  }
}