/* Completed formula banner – loaded on all pages (widget is in header) */

.dnk-quiz-completed-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 5px;
  background: #E9E9E9;
  gap: 30px 150px;
}

.dnk-terminator {
  position: absolute;
  top: -4px;
  right: 4px;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  color: #282e35;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  z-index: 10;
  padding: 2px 8px;
  border-radius: 50%;
}

.dnk-quiz-completed-banner .dnk-first-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.dnk-quiz-completed-banner .img-wrapper {
  width: 100%;
  max-width: 170px;
  display: none;
}

.dnk-quiz-completed-banner .dynamic-text {
  font-size: 18px;
  padding: 0 20px;
  text-align: left;
  line-height: 27px;
}

.dnk-quiz-completed-banner .static-text {
  text-align: left;
  padding: 0 10px;
  line-height: 20px;
  font-size: 14px;
}

.dnk-quiz-completed-banner .dynamic-text .name {
  font-weight: 500;
}

.dnk-quiz-completed-banner .dynamic-text .after_name {
  font-weight: 300;
}

.btns-wrapper {
  gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btns-wrapper a {
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
}

.btns-wrapper a:first-child {
  background: #fff;
  margin-right: 10px;
}

.btns-wrapper a:last-child {
  background: #3FB155;
  color: #fff;
}

.dnk-quiz-completed-banner .text-wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 400px) {
  .dnk-quiz-completed-banner {
    padding: 10px 5px;
  }
}

@media (min-width: 768px) {
  .dnk-quiz-completed-banner .img-wrapper {
    display: block;
  }
}

@media (min-width: 900px) {
  .dnk-quiz-completed-banner .static-text {
    text-align: left !important;
  }

  .dnk-quiz-completed-banner .dynamic-text {
    text-align: left !important;
  }
}

@media (max-width: 900px) {
  .dnk-quiz-completed-banner {
    display: block;
  }

  .btns-wrapper {
    margin-top: 10px;
    margin-left: 20px;
  }
}

@media (max-width: 600px) {
  .dnk-quiz-completed-banner .dynamic-text {
    font-size: 16px !important;
    padding: 0 20px;
  }

  .btns-wrapper {
    gap: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
}

@media screen and (max-width: 1550px) and (min-width: 800px) {
  .dnk-quiz-completed-banner {
    display: block;
  }
}
