.alertblock {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
	
	transition: all 0.4s ease-in-out;
     -webkit-transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
}
.innermarquee {
	display: block;
	opacity: 0;
}
.innermarquee.slick-initialized { 
  display:block;
  opacity:1;
  visibility: visible;
  transition:opacity .25s ease-in;
 }
.inneralerts {
    padding: 0px;
}
.toast {
  border-radius: 0;
  border: none;
}
.alert .toast.bg-forest800 a {
     color: var(--white);
     text-decoration: underline;
}
.toast.bg-forest800 a:hover {
     color: var(--yellow100);
     text-decoration: none;
}
.toast.bg-green800 {
     color: var(--white);
}
.alert .toast.bg-green800 a {
     color: var(--white);
     text-decoration: underline;
}
.toast.bg-green800 a:hover {
     color: var(--yellow100);
     text-decoration: none;
}
.toast.bg-green600 {
     color: var(--white);
}
.alert .toast.bg-green600 a {
     color: var(--yellow100);
     text-decoration: underline;
}
.toast.bg-green600 a:hover {
     color: var(--white);
     text-decoration: none;
}
.toast.bg-yellow150 {
     color: var(--forest900);
}
.alert .toast.bg-yellow150 a {
     color: var(--forest900);
     text-decoration: underline;
}
.toast.bg-yellow150 a:hover {
     color: var(--gray800);
     text-decoration: none;
}
.slick-list .toast {
  padding-left: 35px;
  padding-right: 35px;
  text-align: center;
}
.slick-arrow {
  position: absolute;
  z-index: 5;
  height: 100%;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 5px;
}
.slick-arrow:hover {
  color: #bbbbbb;
}
.slick-prev {
  top: 0px;
  left: 0px;
}
.slick-next {
  top: 0px;
  right: 0px;
}
@media (max-width: 600px) {
	.slick-next {
		top: 0px;
		right: 0px;
	}
}
.mobile_close_alert {
	position: absolute;
    display: none;
    top: 4px;
    right: 4px;
    width: auto;
    max-width: 30px;
	padding: 0px 5px;
    margin: 0px 0px 5px 5px;
    text-align: center;
    background: none;
    border: 1px solid var(--gray600);
    z-index: 1000;
}
@media (min-width: 960px) {
	display: none !important;
}