/*!
* Notiflix ('https://www.notiflix.com')
* Version: 1.9.1 
* Author: Furkan MT ('https://github.com/furcan')
* Copyright 2019 Notiflix, MIT Licence ('https://opensource.org/licenses/MIT')
*/
/* notify wrap on */
[id^=NotiflixNotifyWrap] {
  position: fixed;
  z-index: 1001;
  opacity: 1;
  right: 10px;
  top: 10px;
  width: 280px;
  max-width: 96%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
}

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

[id^=NotiflixNotifyWrap] *::-moz-selection {
  background: inherit;
}

[id^=NotiflixNotifyWrap] *::selection {
  background: inherit;
}

[id^=NotiflixNotifyWrap] > div {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Quicksand', sans-serif;
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  border-radius: 5px;
  background: #1e1e1e;
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

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

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

[id^=NotiflixNotifyWrap] > div.with-icon {
  padding: 8px;
}

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

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

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

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

[id^=NotiflixNotifyWrap] > div > span.click-to-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

[id^=NotiflixNotifyWrap] > div > span.click-to-close > svg {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 0;
  top: 0;
  fill: var(--color);
}

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

[id^=NotiflixNotifyWrap] > div > .wfa.shadow {
  color: inherit;
  background: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.2);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

/* notify wrap off */
/* notify content on */
/* notify content off */
/* notify icon if its true on */
/* notify icon if its true off */
/* rtl on */
/* rtl off */
/* notify animation fade on */
[id^=NotiflixNotifyOverlay].with-animation {
  animation: notify-animation-fade .3s ease-in-out 0s normal;
  -webkit-animation: notify-animation-fade .3s ease-in-out 0s normal;
}

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

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

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

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

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

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

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

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

/* notify animation fade off */
/* notify animation zoom on */
@keyframes notify-animation-zoom {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes notify-animation-zoom {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* notify animation zoom off */
/* notify animation from right on */
@keyframes notify-animation-from-right {
  0% {
    right: -300px;
    opacity: 0;
  }
  50% {
    right: 8px;
    opacity: 1;
  }
  100% {
    right: 0px;
    opacity: 1;
  }
}

@-webkit-keyframes notify-animation-from-right {
  0% {
    right: -300px;
    opacity: 0;
  }
  50% {
    right: 8px;
    opacity: 1;
  }
  100% {
    right: 0px;
    opacity: 1;
  }
}

/* notify animation from right off */
/* notify animation from left on */
@keyframes notify-animation-from-left {
  0% {
    left: -300px;
    opacity: 0;
  }
  50% {
    left: 8px;
    opacity: 1;
  }
  100% {
    left: 0px;
    opacity: 1;
  }
}

@-webkit-keyframes notify-animation-from-left {
  0% {
    left: -300px;
    opacity: 0;
  }
  50% {
    left: 8px;
    opacity: 1;
  }
  100% {
    left: 0px;
    opacity: 1;
  }
}

/* notify animation from left off */
/* notify animation from top on */
@keyframes notify-animation-from-top {
  0% {
    top: -50px;
    opacity: 0;
  }
  50% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}

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

/* notify animation from top off */
/* notify animation from bottom on */
@keyframes notify-animation-from-bottom {
  0% {
    bottom: -50px;
    opacity: 0;
  }
  50% {
    bottom: 8px;
    opacity: 1;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}

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

/* notify animation from bottom off */
/* remove with fade on */
[id^=NotiflixNotifyOverlay].with-animation.remove {
  opacity: 0;
  animation: notify-remove-fade .3s ease-in-out 0s normal;
  -webkit-animation: notify-remove-fade .3s ease-in-out 0s normal;
}

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

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

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

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

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

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

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

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

/* remove with fade on */
/* remove with zoom on */
@keyframes notify-remove-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

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

/* remove with opacity on */
/* remove to top on */
@keyframes notify-remove-to-top {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
  }
}

@-webkit-keyframes notify-remove-to-top {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: -50px;
    opacity: 0;
  }
}

/* remove to top on */
/* remove to right on */
@keyframes notify-remove-to-right {
  0% {
    right: 0px;
    opacity: 1;
  }
  50% {
    right: 8px;
    opacity: 1;
  }
  100% {
    right: -300px;
    opacity: 0;
  }
}

@-webkit-keyframes notify-remove-to-right {
  0% {
    right: 0px;
    opacity: 1;
  }
  50% {
    right: 8px;
    opacity: 1;
  }
  100% {
    right: -300px;
    opacity: 0;
  }
}

/* remove to right on */
/* remove to bottom on */
@keyframes notify-remove-to-bottom {
  0% {
    bottom: 0px;
    opacity: 1;
  }
  50% {
    bottom: 8px;
    opacity: 1;
  }
  100% {
    bottom: -50px;
    opacity: 0;
  }
}

@-webkit-keyframes notify-remove-to-bottom {
  0% {
    bottom: 0px;
    opacity: 1;
  }
  50% {
    bottom: 8px;
    opacity: 1;
  }
  100% {
    bottom: -50px;
    opacity: 0;
  }
}

/* remove to bottom on */
/* remove to left on */
@keyframes notify-remove-to-left {
  0% {
    left: 0px;
    opacity: 1;
  }
  50% {
    left: 8px;
    opacity: 1;
  }
  100% {
    left: -300px;
    opacity: 0;
  }
}

@-webkit-keyframes notify-remove-to-left {
  0% {
    left: 0px;
    opacity: 1;
  }
  50% {
    left: 8px;
    opacity: 1;
  }
  100% {
    left: -300px;
    opacity: 0;
  }
}

/* remove to left on */
/* report wrap on */
[id^=NotiflixReportWrap] {
  position: fixed;
  z-index: 1000;
  width: 320px;
  max-width: 96%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  left: 0;
  right: 0;
  top: 20px;
  color: #1e1e1e;
  border-radius: 25px;
  background: transparent;
  margin: auto;
}

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

[id^=NotiflixReportWrap] > div[class*="-overlay"] {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  z-index: 0;
}

[id^=NotiflixReportWrap] > div[class*="-content"] {
  width: 100%;
  float: left;
  border-radius: inherit;
  padding: 10px;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

[id^=NotiflixReportWrap] a#NXReportButton:hover {
  padding: 7px 20px;
}

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

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

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

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

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

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

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

/* report wrap off */
/* report content on */
/* report content off */
/* report overlay animation fade on */
@keyframes report-overlay-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* report overlay animation fade off */
/* report content animation fade on */
@keyframes report-animation-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* report content animation fade off */
/* report content animation zoom on */
@keyframes report-animation-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes report-animation-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* report content animation zoom off */
/* report overlay animation fade remove on */
@keyframes report-overlay-animation-remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

/* report overlay animation fade remove off */
/* report content animation fade remove on */
@keyframes report-animation-fade-remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

/* report content animation fade remove off */
/* report content animation zoom remove on */
@keyframes report-animation-zoom-remove {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes report-animation-zoom-remove {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* report content animation zoom remove off */
/* loading wrap on */
[id^=NotiflixLoadingWrap] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: fixed;
  z-index: 1004;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Quicksand", sans-serif;
}

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

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

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

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

[id^=NotiflixLoadingWrap] > div[class*="-icon"].with-message {
  top: -42px;
}

[id^=NotiflixLoadingWrap] > p {
  position: fixed;
  left: 0;
  right: 0;
  top: 42px;
  bottom: 0;
  margin: auto;
  font-family: inherit !important;
  font-weight: 500;
  line-height: 1.4;
  padding: 0 10px;
  width: 100%;
  font-size: 15px;
  height: 18px;
}

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

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

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

/* loading wrap on */
/* loading content on */
/* loading content off */
/* loading animation fade on */
@keyframes loading-animation-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* loading animation fade off */
/* loading animation remove fade on */
@keyframes loading-animation-fade-remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

/* loading animation remove fade off */
/* loading animation new message fade on */
@keyframes loading-new-message-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* loading animation new message fade off */
/* confirm wrap on */
[id^=NotiflixConfirmWrap] {
  position: fixed;
  z-index: 1003;
  width: 280px;
  max-width: 98%;
  left: 10px;
  right: 10px;
  top: 10px;
  margin: auto;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  font-family: "Quicksand", sans-serif;
}

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

[id^=NotiflixConfirmWrap] > div[class*="-overlay"] {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  z-index: 0;
}

[id^=NotiflixConfirmWrap] > div[class*="-content"] {
  width: 100%;
  float: left;
  border-radius: 25px;
  padding: 10px;
  margin: 0;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  background: #f8f8f8;
  color: #1e1e1e;
  position: relative;
  z-index: 1;
}

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

[id^=NotiflixConfirmWrap] > div[class*="-content"] > div[class*="-head"] > h5 {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #00B462;
  font-family: inherit !important;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

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

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

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

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

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

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

[id^=NotiflixConfirmWrap] > div[class*="-content"] > div[class*="-buttons"] > a:hover {
  -webkit-box-shadow: inset 0 -60px 5px -5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 -60px 5px -5px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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

/* confirm wrap off */
/* confirm content on */
/* confirm content off */
/* RTL on */
/* RTL off */
/* confirm overlay animation fade on */
@keyframes confirm-overlay-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* confirm overlay animation fade off */
/* confirm overlay animation fade remove on */
@keyframes confirm-overlay-animation-remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

/* confirm overlay animation fade remove off */
/* confirm content animation fade on */
@keyframes confirm-animation-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* confirm content animation fade off */
/* confirm content animation zoom on */
@keyframes confirm-animation-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes confirm-animation-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* confirm content animation zoom off */
/* confirm content animation fade remove on */
@keyframes confirm-animation-fade-remove {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

/* confirm content animation fade remove off */
/* confirm content animation zoom remove on */
@keyframes confirm-animation-zoom-remove {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@-webkit-keyframes confirm-animation-zoom-remove {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* confirm content animation zoom remove off */
/*# sourceMappingURL=notiflix.css.map */