[id^="NotiflixNotifyWrap"] {
  pointer-events: none;
  z-index: 4001;
  opacity: 1;
  box-sizing: border-box;
  background: none;
  width: 280px;
  max-width: 96%;
  position: fixed;
  top: 10px;
  right: 10px;
}

[id^="NotiflixNotifyWrap"].nx-flex-center-center {
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  max-height: calc(100vh - 20px);
  margin: auto;
  display: flex;
  overflow: hidden auto;
}

[id^="NotiflixNotifyWrap"]::-webkit-scrollbar {
  width: 0;
  height: 0;
}

[id^="NotiflixNotifyWrap"]::-webkit-scrollbar-thumb {
  background: none;
}

[id^="NotiflixNotifyWrap"]::-webkit-scrollbar-track {
  background: none;
}

[id^="NotiflixNotifyWrap"] * {
  box-sizing: border-box;
}

[id^="NotiflixNotifyOverlay"] {
  -o-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
}

[id^="NotiflixNotifyWrap"] > div {
  pointer-events: all;
  -webkit-user-select: none;
  user-select: none;
  color: #fff;
  background: #1e1e1e;
  border-radius: 5px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin: 0 0 10px;
  padding: 10px 12px;
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  display: inline-flex;
  position: relative;
}

[id^="NotiflixNotifyWrap"] > div:last-child {
  margin: 0;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-callback {
  cursor: pointer;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-icon {
  min-height: 56px;
  padding: 8px;
}

[id^="NotiflixNotifyWrap"] > div.nx-paused {
  cursor: auto;
}

[id^="NotiflixNotifyWrap"] > div.nx-notify-click-to-close {
  cursor: pointer;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-close-button {
  padding: 10px 36px 10px 12px;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-icon.nx-with-close-button {
  padding: 6px 36px 6px 6px;
}

[id^="NotiflixNotifyWrap"] > div > span.nx-message {
  cursor: inherit;
  word-break: break-all;
  word-break: break-word;
  font-weight: normal;
  font-family: inherit !important;
}

[id^="NotiflixNotifyWrap"] > div > span.nx-close-button {
  cursor: pointer;
  -o-transition: all .2s ease-in-out;
  color: inherit;
  width: 20px;
  height: 20px;
  margin: auto;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
}

[id^="NotiflixNotifyWrap"] > div > span.nx-close-button:hover {
  transform: rotate(90deg);
}

[id^="NotiflixNotifyWrap"] > div > span.nx-close-button > svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  right: 2px;
}

[id^="NotiflixNotifyWrap"] > div > .nx-message-icon {
  text-align: center;
  border-radius: inherit;
  width: 40px;
  height: 40px;
  margin: auto;
  font-size: 30px;
  line-height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
}

[id^="NotiflixNotifyWrap"] > div > .nx-message-icon-fa.nx-message-icon-fa-shadow {
  color: inherit;
  text-shadow: 0 0 10px #0000004d;
  background: #00000026;
  box-shadow: inset 0 0 34px #0003;
}

[id^="NotiflixNotifyWrap"] > div > span.nx-with-icon {
  float: left;
  box-sizing: border-box;
  width: calc(100% - 40px);
  margin: 0 0 0 40px;
  padding: 0 0 0 10px;
  position: relative;
}

[id^="NotiflixNotifyWrap"] > div.nx-rtl-on > .nx-message-icon {
  left: auto;
  right: 8px;
}

[id^="NotiflixNotifyWrap"] > div.nx-rtl-on > span.nx-with-icon {
  margin: 0 40px 0 0;
  padding: 0 10px 0 0;
}

[id^="NotiflixNotifyWrap"] > div.nx-rtl-on > span.nx-close-button {
  left: 8px;
  right: auto;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-icon.nx-with-close-button.nx-rtl-on {
  padding: 6px 6px 6px 36px;
}

[id^="NotiflixNotifyWrap"] > div.nx-with-close-button.nx-rtl-on {
  padding: 10px 12px 10px 36px;
}

[id^="NotiflixNotifyOverlay"].nx-with-animation, [id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-fade {
  animation: .3s ease-in-out notify-animation-fade;
}

@keyframes notify-animation-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-zoom {
  animation: .3s ease-in-out notify-animation-zoom;
}

@keyframes notify-animation-zoom {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-right {
  animation: .3s ease-in-out notify-animation-from-right;
}

@keyframes notify-animation-from-right {
  0% {
    opacity: 0;
    right: -300px;
  }

  50% {
    opacity: 1;
    right: 8px;
  }

  100% {
    opacity: 1;
    right: 0;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-left {
  animation: .3s ease-in-out notify-animation-from-left;
}

@keyframes notify-animation-from-left {
  0% {
    opacity: 0;
    left: -300px;
  }

  50% {
    opacity: 1;
    left: 8px;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-top {
  animation: .3s ease-in-out notify-animation-from-top;
}

@keyframes notify-animation-from-top {
  0% {
    opacity: 0;
    top: -50px;
  }

  50% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-bottom {
  animation: .3s ease-in-out notify-animation-from-bottom;
}

@keyframes notify-animation-from-bottom {
  0% {
    opacity: 0;
    bottom: -50px;
  }

  50% {
    opacity: 1;
    bottom: 8px;
  }

  100% {
    opacity: 1;
    bottom: 0;
  }
}

[id^="NotiflixNotifyOverlay"].nx-with-animation.nx-remove, [id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-fade.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out notify-remove-fade;
}

@keyframes notify-remove-fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-zoom.nx-remove {
  animation: .3s ease-in-out notify-remove-zoom;
  transform: scale(0);
}

@keyframes notify-remove-zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(0);
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-top.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out notify-remove-to-top;
}

@keyframes notify-remove-to-top {
  0% {
    opacity: 1;
    top: 0;
  }

  50% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: -50px;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-right.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out notify-remove-to-right;
}

@keyframes notify-remove-to-right {
  0% {
    opacity: 1;
    right: 0;
  }

  50% {
    opacity: 1;
    right: 8px;
  }

  100% {
    opacity: 0;
    right: -300px;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-bottom.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out notify-remove-to-bottom;
}

@keyframes notify-remove-to-bottom {
  0% {
    opacity: 1;
    bottom: 0;
  }

  50% {
    opacity: 1;
    bottom: 8px;
  }

  100% {
    opacity: 0;
    bottom: -50px;
  }
}

[id^="NotiflixNotifyWrap"] > div.nx-with-animation.nx-from-left.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out notify-remove-to-left;
}

@keyframes notify-remove-to-left {
  0% {
    opacity: 1;
    left: 0;
  }

  50% {
    opacity: 1;
    left: 8px;
  }

  100% {
    opacity: 0;
    left: -300px;
  }
}

[id^="NotiflixReportWrap"] {
  z-index: 4002;
  box-sizing: border-box;
  color: #1e1e1e;
  background: none;
  border-radius: 25px;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

[id^="NotiflixReportWrap"] * {
  box-sizing: border-box;
}

[id^="NotiflixReportWrap"] > div[class*="-overlay"] {
  z-index: 0;
  background: #ffffff80;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

[id^="NotiflixReportWrap"] > div.nx-report-click-to-close {
  cursor: pointer;
}

[id^="NotiflixReportWrap"] > div[class*="-content"] {
  border-radius: inherit;
  filter: drop-shadow(0 0 5px #0000000d);
  z-index: 1;
  background: #f8f8f8;
  border: 1px solid #00000008;
  width: 320px;
  max-width: 100%;
  max-height: 96vh;
  padding: 10px;
  position: relative;
  overflow: hidden auto;
}

[id^="NotiflixReportWrap"] > div[class*="-content"]::-webkit-scrollbar {
  width: 0;
  height: 0;
}

[id^="NotiflixReportWrap"] > div[class*="-content"]::-webkit-scrollbar-thumb {
  background: none;
}

[id^="NotiflixReportWrap"] > div[class*="-content"]::-webkit-scrollbar-track {
  background: none;
}

[id^="NotiflixReportWrap"] > div[class*="-content"] > div[class$="-icon"] {
  -webkit-user-select: none;
  user-select: none;
  width: 110px;
  height: 110px;
  margin: 6px auto 12px;
  display: block;
}

[id^="NotiflixReportWrap"] > div[class*="-content"] > div[class$="-icon"] svg {
  min-width: 100%;
  max-width: 100%;
  height: auto;
}

[id^="NotiflixReportWrap"] > * > h5 {
  word-break: break-all;
  word-break: break-word;
  float: left;
  text-align: center;
  border-bottom: 1px solid #0000001a;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-family: inherit !important;
}

[id^="NotiflixReportWrap"] > * > p {
  word-break: break-all;
  word-break: break-word;
  float: left;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  font-family: inherit !important;
}

[id^="NotiflixReportWrap"] a#NXReportButton {
  word-break: break-all;
  word-break: break-word;
  -webkit-user-select: none;
  user-select: none;
  -o-transition: all .25s ease-in-out;
  cursor: pointer;
  float: right;
  color: #fff;
  background: #32c682;
  padding: 7px 17px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: all .25s ease-in-out;
  border-radius: inherit !important;
  font-family: inherit !important;
}

[id^="NotiflixReportWrap"] a#NXReportButton:hover {
  box-shadow: inset 0 -60px 5px -5px #00000040;
}

[id^="NotiflixReportWrap"].nx-rtl-on a#NXReportButton {
  float: left;
}

[id^="NotiflixReportWrap"] > div[class*="-overlay"].nx-with-animation {
  animation: .3s ease-in-out report-overlay-animation;
}

@keyframes report-overlay-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixReportWrap"] > div[class*="-content"].nx-with-animation.nx-fade {
  animation: .3s ease-in-out report-animation-fade;
}

@keyframes report-animation-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixReportWrap"] > div[class*="-content"].nx-with-animation.nx-zoom {
  animation: .3s ease-in-out report-animation-zoom;
}

@keyframes report-animation-zoom {
  0% {
    opacity: 0;
    transform: scale(.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

[id^="NotiflixReportWrap"].nx-remove > div[class*="-overlay"].nx-with-animation {
  opacity: 0;
  animation: .3s ease-in-out report-overlay-animation-remove;
}

@keyframes report-overlay-animation-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixReportWrap"].nx-remove > div[class*="-content"].nx-with-animation.nx-fade {
  opacity: 0;
  animation: .3s ease-in-out report-animation-fade-remove;
}

@keyframes report-animation-fade-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixReportWrap"].nx-remove > div[class*="-content"].nx-with-animation.nx-zoom {
  opacity: 0;
  animation: .3s ease-in-out report-animation-zoom-remove;
}

@keyframes report-animation-zoom-remove {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

[id^="NotiflixConfirmWrap"] {
  z-index: 4003;
  box-sizing: border-box;
  background: none;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

[id^="NotiflixConfirmWrap"].nx-position-center-top {
  justify-content: flex-start;
}

[id^="NotiflixConfirmWrap"].nx-position-center-bottom {
  justify-content: flex-end;
}

[id^="NotiflixConfirmWrap"].nx-position-left-top {
  justify-content: flex-start;
  align-items: flex-start;
}

[id^="NotiflixConfirmWrap"].nx-position-left-center {
  align-items: flex-start;
}

[id^="NotiflixConfirmWrap"].nx-position-left-bottom {
  justify-content: flex-end;
  align-items: flex-start;
}

[id^="NotiflixConfirmWrap"].nx-position-right-top {
  justify-content: flex-start;
  align-items: flex-end;
}

[id^="NotiflixConfirmWrap"].nx-position-right-center {
  align-items: flex-end;
}

[id^="NotiflixConfirmWrap"].nx-position-right-bottom {
  justify-content: flex-end;
  align-items: flex-end;
}

[id^="NotiflixConfirmWrap"] * {
  box-sizing: border-box;
}

[id^="NotiflixConfirmWrap"] > div[class*="-overlay"] {
  z-index: 0;
  background: #ffffff80;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

[id^="NotiflixConfirmWrap"] > div[class*="-overlay"].nx-with-animation {
  animation: .3s ease-in-out confirm-overlay-animation;
}

@keyframes confirm-overlay-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixConfirmWrap"].nx-remove > div[class*="-overlay"].nx-with-animation {
  opacity: 0;
  animation: .3s ease-in-out confirm-overlay-animation-remove;
}

@keyframes confirm-overlay-animation-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] {
  filter: drop-shadow(0 0 5px #0000000d);
  color: #1e1e1e;
  z-index: 1;
  text-align: center;
  background: #f8f8f8;
  border-radius: 25px;
  width: 300px;
  max-width: 100%;
  max-height: 96vh;
  margin: 0;
  padding: 10px;
  position: relative;
  overflow: hidden auto;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"]::-webkit-scrollbar {
  width: 0;
  height: 0;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"]::-webkit-scrollbar-thumb {
  background: none;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"]::-webkit-scrollbar-track {
  background: none;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] {
  float: left;
  width: 100%;
  text-align: inherit;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > h5 {
  float: left;
  color: #32c682;
  width: 100%;
  text-align: inherit;
  border-bottom: 1px solid #0000001a;
  margin: 0;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-family: inherit !important;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div {
  float: left;
  width: 100%;
  color: inherit;
  text-align: inherit;
  margin: 15px 0 20px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  font-family: inherit !important;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div {
  float: left;
  width: 100%;
  margin: 15px 0 0;
  padding: 0;
  font-family: inherit !important;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div > input {
  float: left;
  -o-transition: all .25s ease-in-out;
  text-align: left;
  border: 1px solid #0000001a;
  border-radius: 25px;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 15px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  transition: all .25s ease-in-out;
  font-family: inherit !important;
}

[id^="NotiflixConfirmWrap"].nx-rtl-on > div[class*="-content"] > div[class*="-head"] > div > div > input {
  text-align: right;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div > input:hover {
  border-color: #0000001a;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div > input:focus {
  border-color: #0000004d;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div > input.nx-validation-failure {
  border-color: #ff5549;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-head"] > div > div > input.nx-validation-success {
  border-color: #32c682;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] {
  -webkit-user-select: none;
  user-select: none;
  border-radius: inherit;
  float: left;
  width: 100%;
  text-align: inherit;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] > a {
  cursor: pointer;
  -o-transition: all .25s ease-in-out;
  float: left;
  color: #f8f8f8;
  width: 48%;
  text-align: inherit;
  padding: 9px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: all .25s ease-in-out;
  border-radius: inherit !important;
  font-family: inherit !important;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] > a.nx-confirm-button-ok {
  background: #32c682;
  margin: 0 2% 0 0;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] > a.nx-confirm-button-cancel {
  background: #a9a9a9;
  margin: 0 0 0 2%;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] > a.nx-full {
  width: 100%;
  margin: 0;
}

[id^="NotiflixConfirmWrap"] > div[class*="-content"] > div[class*="-buttons"] > a:hover {
  box-shadow: inset 0 -60px 5px -5px #00000040;
}

[id^="NotiflixConfirmWrap"].nx-rtl-on > div[class*="-content"] > div[class*="-buttons"], [id^="NotiflixConfirmWrap"].nx-rtl-on > div[class*="-content"] > div[class*="-buttons"] > a {
  transform: rotateY(180deg);
}

[id^="NotiflixConfirmWrap"].nx-with-animation.nx-fade > div[class*="-content"] {
  animation: .3s ease-in-out confirm-animation-fade;
}

@keyframes confirm-animation-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixConfirmWrap"].nx-with-animation.nx-zoom > div[class*="-content"] {
  animation: .3s ease-in-out confirm-animation-zoom;
}

@keyframes confirm-animation-zoom {
  0% {
    opacity: 0;
    transform: scale(.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

[id^="NotiflixConfirmWrap"].nx-with-animation.nx-fade.nx-remove > div[class*="-content"] {
  opacity: 0;
  animation: .3s ease-in-out confirm-animation-fade-remove;
}

@keyframes confirm-animation-fade-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixConfirmWrap"].nx-with-animation.nx-zoom.nx-remove > div[class*="-content"] {
  opacity: 0;
  animation: .3s ease-in-out confirm-animation-zoom-remove;
}

@keyframes confirm-animation-zoom-remove {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

[id^="NotiflixLoadingWrap"] {
  -webkit-user-select: none;
  user-select: none;
  z-index: 4000;
  text-align: center;
  box-sizing: border-box;
  background: #000c;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  display: flex;
  position: fixed;
  inset: 0;
}

[id^="NotiflixLoadingWrap"] * {
  box-sizing: border-box;
}

[id^="NotiflixLoadingWrap"].nx-loading-click-to-close {
  cursor: pointer;
}

[id^="NotiflixLoadingWrap"] > div[class*="-icon"] {
  -o-transition: top .2s ease-in-out;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  transition: top .2s ease-in-out;
  position: relative;
}

[id^="NotiflixLoadingWrap"] > div[class*="-icon"] img, [id^="NotiflixLoadingWrap"] > div[class*="-icon"] svg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

[id^="NotiflixLoadingWrap"] > p {
  text-align: center;
  width: 100%;
  margin: 10px auto 0;
  padding: 0 10px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4;
  position: relative;
  font-family: inherit !important;
}

[id^="NotiflixLoadingWrap"].nx-with-animation {
  animation: .3s ease-in-out loading-animation-fade;
}

@keyframes loading-animation-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixLoadingWrap"].nx-with-animation.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out loading-animation-fade-remove;
}

@keyframes loading-animation-fade-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

[id^="NotiflixLoadingWrap"] > p.nx-loading-message-new {
  animation: .3s ease-in-out loading-new-message-fade;
}

@keyframes loading-new-message-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixBlockWrap"] {
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
  z-index: 1000;
  text-align: center;
  border-radius: inherit;
  background: #ffffffe6;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  animation-duration: .4s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

[id^="NotiflixBlockWrap"] * {
  box-sizing: border-box;
}

[id^="NotiflixBlockWrap"] > span[class*="-icon"] {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  display: block;
  position: relative;
}

[id^="NotiflixBlockWrap"] > span[class*="-icon"] svg {
  width: inherit;
  height: inherit;
}

[id^="NotiflixBlockWrap"] > span[class*="-message"] {
  width: 100%;
  margin: 10px auto 0;
  padding: 0 10px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  display: block;
  position: relative;
  font-family: inherit !important;
}

[id^="NotiflixBlockWrap"].nx-with-animation {
  animation: .3s ease-in-out block-animation-fade;
}

@keyframes block-animation-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

[id^="NotiflixBlockWrap"].nx-with-animation.nx-remove {
  opacity: 0;
  animation: .3s ease-in-out block-animation-fade-remove;
}

@keyframes block-animation-fade-remove {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
/*# sourceMappingURL=banking-details.28d4c34b.css.map */
