.foryou-container-outer {
  margin: 0 -16px 0 0;
  position: relative;
}
.foryou-container-outer h5 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.foryou-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-columns: unset; /* do not set template columns and rows */
  grid-template-rows: unset;
  grid-column-gap: 16px;
  justify-items: start;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: hidden;
  overflow-x: scroll;
  margin-bottom: 24px;
  padding-right: 16px;
  scroll-behavior: smooth;
}
.foryou-container::-webkit-scrollbar {
  display: none;
}
.foryou-container.sorted .foryou-card {
  order: -1;
}
.foryou-container.sorted .foryou-card:has(.completed) {
  order: 0;
}

.foryou-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 24px;
  background: #FFFFFF;
  width: 270px;
  min-width: 270px;
  min-height: 420px;
  height: 100%;
  flex-shrink: 0;
  transition: all 0.5s ease;
}
.foryou-card:has(.poll) {
  height: auto;
  min-height: 420px;
}
.foryou-card:has(.large-poll) {
  height: 100%;
  position: relative;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 24px;
  scroll-behavior: smooth;
}
.foryou-card:has(.large-poll)::-webkit-scrollbar {
  display: none;
}
.foryou-card:has(.large-poll) .foryou-card-image, .foryou-card:has(.large-poll) .foryou-card-video {
  position: sticky;
  top: 0;
}
.foryou-card:has(.large-poll) .poll {
  max-height: 420px;
  position: absolute;
  top: 148px;
  background: #fff;
}
.foryou-card:has(.large-poll) .poll .poll-question-container {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 0 24px 24px;
  margin: 0 -24px;
  z-index: 1;
}
.foryou-card:has(.large-poll) .poll .poll-submit-container {
  margin-top: 24px;
  padding-bottom: 32px;
}
.foryou-card:has(.large-poll) .poll-scroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: scroll !important;
  margin-bottom: 24px;
  scroll-behavior: smooth;
}
.foryou-card:has(.large-poll) .poll-scroll::-webkit-scrollbar {
  display: none;
}
.foryou-card:has(.large-poll) .poll-scroll-container {
  height: auto;
}
.foryou-card:has(.large-poll) .poll-scroll-container .poll-submit-container {
  position: unset;
  bottom: unset;
  right: unset;
}
.foryou-card:has(.poll-scroll) {
  overflow: hidden;
}
.foryou-card:has(.poll-scroll) .foryou-body.poll {
  padding-top: 0;
}
.foryou-card:has(.poll-scroll) .foryou-body.poll .poll-question-container {
  padding: 24px;
}
.foryou-card:has(.poll-scroll) .foryou-body.poll .poll-question-container::after {
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  border-radius: 24px 24px 0 0;
  height: 24px;
  background: #fff;
  z-index: 1;
}
.foryou-card.no-image {
  padding-top: 8px;
}
.foryou-card.no-image:has(.large-poll) .poll {
  top: 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: scroll !important;
  margin-bottom: 24px;
  scroll-behavior: smooth;
}
.foryou-card.no-image:has(.large-poll) .poll::-webkit-scrollbar {
  display: none;
}
.foryou-card .foryou-card-image {
  height: 148px;
  min-height: 148px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
}
.foryou-card .foryou-card-image img {
  width: 100%;
}
.foryou-card .foryou-card-video {
  height: 148px;
  min-height: 148px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 24px 0 0;
  position: relative;
}
.foryou-card .foryou-card-video img {
  width: 100%;
}
.foryou-card .foryou-title {
  width: 100%;
  padding: 16px 16px 0;
  color: #000;
}
@media (min-width: 744px) {
  .foryou-card .foryou-title {
    line-height: 130%;
  }
}
.foryou-card .foryou-body {
  padding: 0 16px;
  overflow: hidden !important;
  max-height: 140px;
  margin: 0 0 16px;
}
.foryou-card .foryou-body p {
  color: #000;
  font-size: 16px;
}
.foryou-card .foryou-body.poll {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  height: 100%;
  min-height: 248px;
  max-height: unset;
  padding: 24px 16px 16px;
  width: 100%;
}
.foryou-card .foryou-btn-container {
  padding: 0 16px;
  width: 100%;
  margin: auto 0 0;
}
.foryou-card .foryou-link {
  width: 100%;
  text-decoration: none;
  margin: 0 0 16px;
}
.foryou-card .poll-scroll-container {
  height: 100%;
  position: relative;
}
.foryou-card .poll-scroll-container .poll-submit-container {
  position: absolute;
  bottom: 0;
  right: 0;
}
.foryou-card img.play_video {
  position: absolute;
  right: calc(50% - 20px);
  top: 57px;
  padding: 4px;
  background: #FFFFFF;
  padding: 4px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.foryou-modal {
  padding: 10px 10px 32px;
}
@media (min-width: 744px) {
  .foryou-modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10%;
    padding-bottom: 10%;
  }
}
.foryou-modal .modal {
  width: 100%;
  max-width: 720px;
  padding: 0;
}
.foryou-modal .content-overflow-wrapper {
  height: 100%;
  overflow-y: scroll;
}
.foryou-modal .foryou-body-outer {
  padding: 0 24px;
}
.foryou-modal .foryou-btn-container {
  padding: 0 24px 32px;
}
.foryou-modal .foryou-btn-container .btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 32px;
}
.foryou-modal .modal-header {
  padding: 24px 24px 0;
}
.foryou-modal .for-you-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin-bottom: 32px;
  background-color: #000;
}
.foryou-modal .for-you-popup-header img {
  width: 100%;
}

.poll {
  height: 100%;
}
.poll .poll-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.poll .poll-choice {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
}
.poll .poll-choice:last-of-type {
  margin: 0;
}
.poll .poll-choice input {
  margin: 0 8px 0 0;
}
.poll .poll-choice label {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.16px;
}
.poll .poll-choice.other {
  flex-wrap: wrap;
  position: relative;
}
.poll .poll-choice .other-text {
  border: none;
  border-bottom: solid 1px #929292;
  border-radius: 0;
  color: #5B5B5B;
  margin: 24px 0 0;
  padding: 0 32px 0 0;
}
.poll .poll-choice .other-text::-moz-placeholder {
  color: #929292;
}
.poll .poll-choice .other-text::placeholder {
  color: #929292;
}
.poll .poll-choice .clear-btn {
  position: absolute;
  right: 0;
  bottom: 4px;
}
.poll .poll-results {
  display: flex;
  flex-direction: column;
}
.poll .result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}
.poll .result p {
  color: #5B5B5B;
  margin: 0;
}
.poll .result.chosen-answer p {
  color: #1980CC;
}
.poll .result .result-label {
  padding-right: 32px;
}
.poll .poll-submit-msg {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  margin: 32px 0 0;
  padding-bottom: 8px;
}
.poll .poll-question-container {
  margin-bottom: 20px;
}
.poll .poll-question-container .poll-question {
  width: 238px;
  color: #000;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 744px) {
  .poll .poll-question-container .poll-question {
    font-size: 20px;
    line-height: 130%;
  }
}
.poll .poll-submit-container {
  margin-top: auto;
  margin-bottom: 8px;
}
.poll .poll-submit-link {
  text-decoration: none;
  color: #C8C8C8;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: 0.48px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.poll .poll-submit-link::after {
  content: url("../../../icons/check_circle_grey.svg");
  margin-left: 4px;
}
.poll input[type=radio]:checked {
  content: url(../../../icons/radio_button_checked_blue.svg);
}
.poll:has(input[type=radio]:checked, input[type=checkbox]:checked) .poll-submit-link {
  color: #1980CC;
  pointer-events: all;
}
.poll:has(input[type=radio]:checked, input[type=checkbox]:checked) .poll-submit-link::after {
  content: url("../../../icons/check_circle_blue.svg");
}
.poll input.other-text {
  display: none;
}
.poll input.other-text + .clear-btn {
  display: none;
}
.poll:has(input.other-radio:checked) input.other-text {
  display: flex;
}
.poll:has(input.other-radio:checked) input.other-text + .clear-btn {
  display: block;
}

input[type=checkbox]:checked {
  content: url("../../../icons/check_box_blue.svg");
}

input[type=checkbox], input[type=radio] {
  min-width: 24px;
  min-height: 24px;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

@keyframes lds-grid {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.loading-form {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading-form div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  border-radius: 8px;
  background: #00AEEF;
  animation: loading-form 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.loading-form div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.loading-form div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.loading-form div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes loading-form {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}