.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.noty_theme__mint.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
}
.noty_theme__mint.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #d1d1d1;
  color: #2f2f2f;
}

.noty_theme__mint.noty_type__warning {
  background-color: #ffae42;
  border-bottom: 1px solid #e89f3c;
  color: #fff;
}

.noty_theme__mint.noty_type__error {
  background-color: #de636f;
  border-bottom: 1px solid #ca5a65;
  color: #fff;
}

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7f7eff;
  border-bottom: 1px solid #7473e8;
  color: #fff;
}

.noty_theme__mint.noty_type__success {
  background-color: #afc765;
  border-bottom: 1px solid #a0b55c;
  color: #fff;
}

/* custom css*/
.noty_body {
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: border-bottom;
}
.noty_body .salespop_popup:after {
  content: "";
  display: block;
  clear: both;
}
.noty_body .salespop_popup .popup_image {
  width: 100px;
  float: left;
}
.noty_body .salespop_popup .popup_desc {
  float: left;
  width: calc(100% - 110px);
  padding-left: 10px;
}

/*21-7-2020*/
/*notification popup fade-in css start*/

.noty_type__alert.fade_in {
  -webkit-animation: fadein 2s;
  -moz-animation: fadein 2s;
  -ms-animation: fadein 2s;
  -o-animation: fadein 2s;
  animation: fadein 2s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*notification popup fade-in css end*/

/*notification popup Slide-up css start*/
.noty_type__alert.slide_up {
  -webkit-animation: slide_up 1s;
  -moz-animation: slide_up 1s;
  -ms-animation: slide_up 1s;
  -o-animation: slide_up 1s;
  animation: slide_up 1s;
}

@keyframes slide_up {
  from {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
  to {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Firefox < 16 */
@-moz-keyframes slide_up {
  from {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
  to {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes slide_up {
  from {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
  to {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Internet Explorer */
@-ms-keyframes slide_up {
  from {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
  to {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* Opera < 12.1 */
@-o-keyframes slide_up {
  from {
    -webkit-transform: translateY(160px);
    -ms-transform: translateY(160px);
    transform: translateY(160px);
  }
  to {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/*notification popup Slide-up css end*/

/*notification popup Zoom out css start*/

.noty_type__alert.zoom_out {
  -webkit-animation: zoom__out 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: zoom__out 1s; /* Firefox < 16 */
  -ms-animation: zoom__out 1s; /* Internet Explorer */
  -o-animation: zoom__out 1s; /* Opera < 12.1 */
  animation: zoom__out 1s;
}

@keyframes zoom__out {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/* Firefox < 16 */
@-moz-keyframes zoom__out {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes zoom__out {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/* Internet Explorer */
@-ms-keyframes zoom__out {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/* Opera < 12.1 */
@-o-keyframes zoom__out {
  from {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

/*notification popup Zoom out css end*/

/*notification popup tada css start*/

.noty_type__alert.tada {
  -webkit-animation: tada 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: tada 1s; /* Firefox < 16 */
  -ms-animation: tada 1s; /* Internet Explorer */
  -o-animation: tada 1s; /* Opera < 12.1 */
  animation: tada 1s;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* Firefox < 16 */
@-moz-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* Internet Explorer */
@-ms-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* Opera < 12.1 */
@-o-keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/*notification popup tada css end*/

.noty_layout {
  min-width: 600px;
  background: #fff;
  box-shadow: 0 0 5px -2px #000;
}
.noty_bar {
  margin: 0 !important;
  border: none !important;
}
.custom-newsletter-popup .custom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.custom-newsletter-popup .custom-newsletter-img {
  width: 40%;
  flex: 0 0 40%;
  max-width: 40%;
}
.custom-newsletter-popup .custom-newsletter-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-newsletter-popup .custom-newsletter-info {
  width: 60%;
  flex: 0 0 60%;
  max-width: 60%;
  padding: 20px 15px;
  text-align: center;
}

.custom-newsletter-info .custom-newsletter--h2 {
  margin: 0;
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
}

.custom-newsletter-info .custom-newsletter-sub {
  color: #888;
  font-size: 22px;
  margin: 10px 0;
}

.custom-newsletter-form.form.scale-label .actions-toolbar > .primary {
  margin-top: 0;
}

.custom-newsletter-form.form.scale-label
  .actions-toolbar
  > .primary
  button:before {
  z-index: -1;
}

.custom-newsletter-info .custom-newsletter-policy {
  color: #888;
  width: 100%;
  font-size: 13px;
  max-width: 260px;
  margin: 10px auto;
}

.custom-newsletter-info .custom-newsletter-policy a {
  color: #888;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .noty_layout {
    width: 500px !important;
    min-width: auto;
  }
  .custom-newsletter-popup .custom-newsletter-img {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    max-height: 200px;
  }
  .custom-newsletter-popup .custom-newsletter-info {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
