.notification-widget {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-width: 350px;
}
@media (max-width: 375px) {
  .notification-widget {
    min-width: 320px;
  }
}
@media (max-width: 320px) {
  .notification-widget {
    min-width: 280px;
  }
}
.notification-widget .notification-title {
  font-family: 'Gotham-Bold', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: #007CE0;
  letter-spacing: 0.01em;
  line-height: 20px;
  padding: 20px;
}
.notification-widget .notification-title .close {
  margin-left: 20px;
  float: right;
  top: 0;
  color: #fff;
  opacity: 1;
  font-size: 16px;
}
.notification-widget.notification-small {
  min-width: unset;
  width: 370px;
}
.notification-widget .notification-message {
  font-family: 'Gotham-Bold', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #007CE0;
  letter-spacing: 0.01em;
}
.notification-widget .notification-content {
  background-color: #fff;
  padding: 30px;
  text-align: left;
}
@media (max-width: 320px) {
  .notification-widget .notification-title {
    font-family: 'Gotham-Bold', sans-serif;
    font-weight: 400;
    font-size: 13px;
  }
  .notification-widget .notification-title .close {
    margin-left: 5px;
  }
}
.survey-widget {
  background-color: #fff;
  width: 100%;
}
.survey-widget .survey-content {
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.survey-widget .right-side-actions {
  margin-top: auto;
}
.survey-widget iframe {
  min-width: 100vw;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .survey-widget iframe {
    border: none;
    min-width: 800px;
    min-height: 80vh;
  }
}
