.vanillatoasts-container {
  position: fixed;
  font-family: 'Helvetica';
  pointer-events: none;
	    z-index: 234;
}
.toasts-top-right{
  top: 0;
  right: 0;
}
.toasts-top-left{
  left:0;
  top:0;
}
.toasts-bottom-left{
  left: 0;
  bottom:0;
}
.toasts-bottom-right {
  bottom: 0;
  right: 0;
  width: 37%;
}
.toasts-top-center{
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.toasts-bottom-center{
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
}
.vanillatoasts-toast {
  position: relative;
  padding: 20px 17px;
  margin: 20px;
  border-radius: 10px;
  background: #F5F5F5;
  cursor: pointer;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  animation-duration:  .3s;
  animation-name: VanillaToasts;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  pointer-events: all;
  display: none;
}
.vanillatoasts-toast.show {
  display: block;
}
.notice-image {
  position: relative;
}
.notice-image img {
  margin: auto;
  top: 0;
  border: none;
  bottom: 0;
  width: 90%;
  position: absolute;
}
.vanillatoasts-fadeOut {
  animation-name: VanillaToastsFadeOut;
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  animation-fill-mode: forwards;
}

#vanillatoasts-container p,
#vanillatoasts-container h4 {
  margin: 3px 0!important;
}

.vanillatoasts-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}

.vanillatoasts-text {
  font-size: 17px;
  color: #000;
}

.vanillatoasts-icon {
  position: absolute;
  top: 5px;
  left: -40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  background: #FFF;
}

.vanillatoasts-toast a, .vanillatoasts-toast a:hover {
  color: #549EDB !important;
  text-decoration: none !important;
}

/** toast types */
.vanillatoasts-success {
  border-bottom: 2px solid #51C625;
}

.vanillatoasts-warning {
  border-bottom: 2px solid #DB9215;
}

.vanillatoasts-error {
  border-bottom: 2px solid #DB2B1D;
}

.vanillatoasts-info {
  border-bottom: 2px solid #27ABDB;
}
.toasts-bottom-right {
  width: 32%;
}
@media (max-width: 695px) {
    .toasts-bottom-right {
        width: 570px;
        right: unset;
        left: calc((100vw - 570px) / 2);
    }
}
@media (max-width: 650px) {
  .toasts-bottom-right {
      width: 100%;
      left: unset;
  }
}

@keyframes VanillaToasts {
  from {
    transform: translate3d(400px, 0, 0);;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes VanillaToastsFadeOut {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(400px, 0, 0);
    opacity: 0;
  }
}

.vanillatoasts-toast.v2 {
  padding: 0;
  background: transparent;
}
.v2 .toast-close {
  color: #fff !important;
  font-size: 33px;
}

.vanillatoasts-toast.v2 .item.get-link {
  margin-bottom: 0;
}

.v2 .item .item__btn a, .v2 .button-credit {
  color: #000 !important;
  font-weight: bold;
}

.v2 .item .item__btn a:hover {
  color: #fff !important;
}
.toast-close {
  font-size: 18px;
  color: #000 !important;
  position: absolute;
  right: 15px;
  top: 7px;
}
.txt {
  margin-top: 10px;
}
button.button-credit:hover {
  background-color: #000 !important;
  color: #fff!important;
  border: none!important;
}
button.button-credit {
  border: none!important;
}
.notice-data.text-center {
   padding: 0 40px;
 }
@media (max-width: 720px) {
  .v2 .toast-close {
    right: 0;
    top: -22px;
  }
}
