.msndr-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.msndr-modal[aria-hidden=false] ~ .msndr-overlay {
  opacity: 1;
  visibility: visible; }

.msndr-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  z-index: 2000;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }
  .msndr-modal * {
    box-sizing: border-box; }
  .msndr-modal__image {
    height: 100%; }
  .msndr-modal[aria-hidden=true] {
    user-select: none;
    pointer-events: none;
    transform: translateX(-1000%); }
  .msndr-modal__dialog {
    background-color: #ffffff;
    border-style: solid;
    border-width: 1px;
    border-color: #dddddd;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    align-content: space-between;
    justify-content: space-between; }
  .msndr-modal__content {
    width: 100%;
    overflow: auto; }
  .msndr-modal__title {
    font-size: 2em;
    color: #555555;
    text-align: center; }
  .msndr-modal__summary {
    width: 100%;
    color: #555555;
    font-family: Open Sans;
    text-align: center; }
  .msndr-modal__close svg {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0.5em;
    top: 0.5em;
    fill: #CCC;
    height: 16px;
    width: 16px; }
  .msndr-modal__body form {
    width: 100%; }
  .msndr-modal__action {
    text-align: center; }
    .msndr-modal__action button {
      cursor: pointer;
      background-color: #544ae2;
      border-color: rgba(0, 0, 0, 0);
      border-radius: 8px;
      width: 100%; }
      .msndr-modal__action button span {
        color: white;
        font-size: 16px;
        line-height: 16px;
        font-family: Open Sans; }
  .msndr-modal__group {
    align-items: center;
    text-align: center; }
    .msndr-modal__group label {
      color: black !important;
      font-family: Helvetica !important;
      font-weight: bold !important; }
    .msndr-modal__group input[type="radio"] ~ label {
      padding-left: 10px; }
  .msndr-modal__captcha {
    display: flex;
    justify-content: center; }
  .msndr-modal__control {
    border-style: solid;
    border-width: 1px;
    border-color: #dddddd;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    border-radius: 5px;
    width: 100%; }
    .msndr-modal__control[type="text"]::placeholder, .msndr-modal__control[type="email"]::placeholder {
      color: black !important; }
  .msndr-modal.msndr-wait .msndr-modal__header, .msndr-modal.msndr-wait .msndr-modal__body {
    visibility: hidden; }
  .msndr-modal.msndr-wait .msndr-modal__preloader {
    visibility: visible;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
    .msndr-modal.msndr-wait .msndr-modal__preloader span {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      height: 30px;
      width: 30px;
      margin: auto;
      border-radius: 50%;
      animation: msndr-preloader 1s infinite linear; }

@keyframes msndr-preloader {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.msndr-modal__image {
  display: flex;
  align-items: center;
  justify-content: center; }

@media (max-width: 375px) {
  .msndr-modal .msndr-modal__image {
    display: none !important; } }

.msndr-modal {
  /* Effect 1: Fade in and scale up */ }
  .msndr-modal__dialog {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s; }
  .msndr-modal[aria-hidden=false] .msndr-modal__dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  .msndr-modal ~ .msndr-overlay {
    background-color: rgba(245, 245, 245, 0);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }

.msndr-modal__action, .msndr-modal__group, .msndr-modal__summary, .msndr-modal__title {
  padding: 10px 15px; }

.msndr-modal__dialog {
  display: flex;
  align-items: center; }

.msndr-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center; }

.msndr-modal__group label {
  text-transform: uppercase;
  margin-right: 5px;
  font-weight: normal; }

.msndr-modal__action button {
  padding: 10px 20px; }

.msndr-modal__control[type=text], .msndr-modal__control[type=email] {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 5px;
  padding-bottom: 5px; }

.msndr-modal__body {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  align-items: center; }
  .msndr-modal__body form {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    justify-content: space-between; }

.msndr-modal__dialog {
  width: 480px;
  height: 520px; }

.msndr-modal--mobile {
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: initial; }
  .msndr-modal--mobile .msndr-modal__image {
    display: none !important; }

.msndr-modal--mobile > .msndr-modal__dialog {
  height: inherit;
  width: inherit; }

@media (max-width: 480px) {
  .msndr-modal {
    width: 100%;
    position: fixed;
    height: 100%;
    overflow: scroll; }
    .msndr-modal .msndr-modal__dialog {
      width: 100%;
      height: 100%; }
    .msndr-modal .msndr-modal__inline .msndr-modal__summary {
      float: none;
      max-width: none; }
    .msndr-modal .msndr-modal__inline .msndr-modal__group, .msndr-modal .msndr-modal__inline .msndr-modal__action {
      float: none; }
    .msndr-modal .msndr-modal__control, .msndr-modal .msndr-modal__action button {
      width: 100%; } }

@media (max-width: 375px) {
  .msndr-modal {
    width: 100%;
    position: fixed;
    height: 100%;
    overflow: scroll; }
    .msndr-modal .msndr-modal__dialog {
      width: 100%;
      height: 100%; }
    .msndr-modal .msndr-modal__inline .msndr-modal__summary {
      float: none;
      max-width: none; }
    .msndr-modal .msndr-modal__inline .msndr-modal__group, .msndr-modal .msndr-modal__inline .msndr-modal__action {
      float: none; } }

@media (min-width: 376px) and (max-width: 1023px) {
  .msndr-modal .msndr-modal__inline .msndr-modal__summary {
    max-width: none; } }
