/* Alert  */
 
div.alertbox {
    position: fixed;
    bottom: 10px;
    /* float: right; */
    /* width: 100%; */
    right:0px;
}
ul.alertUl {
    /* position: sticky; */
    /* bottom: 10px; */
    float: right;
    width: 300px;
    margin-right: 10px;
}

.alert {
    min-height: 67px;
    min-width: 280px;
    /* max-width: 90%; */
    /* border-radius: 12px; */
    border-radius: 0.35rem;
    padding: 10px 10px 10px 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 10px;
}
.alert-warning {
  background: var(--warning);
}
.alert-success {
  background: var(--success);
}
.alert-primary {
  background: var(--primary);
}
.alert-dark {
  background: var(--dark);
}
.alert-error {
  background: var(--error);
}
.alert .icon__wrapper {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.253);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert .icon__wrapper span {
  font-size: 21px;
  color: #fff;
}
.alert p {
  color: #fff;
  font-family: Verdana;
  margin-left: 10px;
}
.alert p a,
.alert p a:visited,
.alert p a:active {
  color: #fff;
}
.alert .open {
  margin-left: auto;
  margin-right: 5px;
}
.alert .close, .alert .open {
  color: #fff;
  transition: transform 0.5s;
  font-size: 18px;
  cursor: pointer;
}
.alert .close:hover, .alert .open:hover {
  transform: scale(1.3);
}