.alert {
  overflow: auto;
  background: white;
  padding: 1.5rem 1.8rem;
  -webkit-box-shadow: 0.145rem 0.145rem 0.35rem rgba(0, 0, 0, 0.15);
  box-shadow: 0.145rem 0.145rem 0.35rem rgba(0, 0, 0, 0.15);
  margin-bottom: 2rem;
  border: 1px solid #e9ecef;
}

.alert .close {
  display: none;
}

.alert-dismissible {
  padding-right: 5.1rem;
  position: relative;
}

.alert-dismissible .close {
  position: absolute;
  top: 10px;
  right: 15px;
  display: block;
  padding: 0;
  font-weight: 100;
}

.alert-success {
  border-left: 4px solid #8ecc51;
}

.alert-warning {
  border-left: 4px solid #ffff01;
}

.alert-danger {
  border-left: 4px solid #f57222;
}

.alert-info {
  border-left: 4px solid #000000;
}

.alert-border-fat {
  border-left-width: 8rem;
}

@media (min-width: 768px) {
  .alert-fixed-bottom {
    position: fixed;
    top: 20px;
    right: 0;
    left: 0;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1030;
  }

  .alert-fixed-bottom .alert {
    margin-bottom: 10px;
  }
}

.alert-fixed-center {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1030;
}

.block-site-alert-block > h2 {
  visibility: hidden !important;
}