.alert {
    padding: 16px 24px;
    border-radius: 2px;
    color: #2b2b2b;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.85;
    color: #2B2B2B;
    margin-bottom: 16px;
}
.alert-success {
    background-color: #d4edda;
}
.alert-warning {
    background-color: #fff3cd;
}
.alert-danger {
    background-color: #f8d7da;
}
.alert_mt {
    margin-top: 16px;
    
}


.alert-block {
  border-radius: 4px;
  padding: 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
.alert-block:before {
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  font-family: 'baikal-icons';
  font-style: normal;
  font-weight: normal;
  flex: 0 0 auto;
  margin-right: 8px;
}
.alert-block_success {
  color: #95C518;
  background: #E8F0D7;
}
.alert-block_success:before {
  content: "\e941";
}
.alert-block_danger {
  color: #DE3333;
  background: #F2DADA;
}
.alert-block_danger:before {
  content: "\e942";
}
.alert-block_mt_sm {
  margin-top: 8px;
}
@media screen and (max-width: 991px) {
  .alert-block_mobile_fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1600;
  }
}