.alert>.start-icon {
    margin-right: 0;
    min-width: 20px;
    text-align: center;
}

.alert>.start-icon {
    margin-right: 5px;
}

.greencross {
  font-size:18px;
  color: #25ff0b;
  text-shadow: none;
}

.alert-simple.alert-success {
  border: 2px dashed #28a745;
  background-color: #d4edda;
  box-shadow: none;
  color: #333;
  text-shadow: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.alert-success:hover {
  background-color: #c3e6cb;
  transition: 0.3s;
}

.alert-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-icon-wrapper .alert-icon {
  color: #fff;
  font-size: 18px;
}

.alert-message {
  flex: 1;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.alert-simple.alert-info {
  border: 2px dashed #17a2b8;
  background-color: #d1ecf1;
  box-shadow: none;
  color: #333;
  text-shadow: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.alert-info:hover {
  background-color: #bee5eb;
  transition: 0.3s;
}

.alert-info .alert-icon-wrapper {
  background-color: #17a2b8;
}

.blue-cross {
  font-size: 18px;
  color: #0bd2ff;
  text-shadow: none;
}

.alert-simple.alert-warning {
  border: 2px dashed #ffc107;
  background-color: #fff3cd;
  box-shadow: none;
  color: #333;
  text-shadow: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.alert-warning:hover {
  background-color: #ffeaa7;
  transition: 0.3s;
}

.alert-warning .alert-icon-wrapper {
  background-color: #ffc107;
}

.warning {
  font-size: 18px;
  color: #ffb40b;
  text-shadow: none;
}

.alert-simple.alert-danger {
  border: 2px dashed #dc3545;
  background-color: #f8d7da;
  box-shadow: none;
  color: #333;
  text-shadow: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.alert-danger:hover {
  background-color: #f5c6cb;
  transition: 0.3s;
}

.alert-danger .alert-icon-wrapper {
  background-color: #dc3545;
}

.danger {
  font-size: 18px;
  color: #ff0303;
  text-shadow: none;
}

.alert-simple.alert-primary {
  border: 2px dashed #007bff;
  background-color: #cce5ff;
  box-shadow: none;
  color: #333;
  text-shadow: none;
  transition: 0.3s;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.alert-primary:hover {
  background-color: #b3d9ff;
  transition: 0.3s;
}

.alert-primary .alert-icon-wrapper {
  background-color: #007bff;
}

.alertprimary {
  font-size: 18px;
  color: #03d0ff;
  text-shadow: none;
}

/* Square box decorative elements removed - only alert backgrounds are used */

.alert:before {
    content: '';
    position: absolute;
    width: 0;
    height: calc(100% - 44px);
    border-left: 1px solid;
    border-right: 2px solid;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    height: 20px;
}

.fa-times {
  -webkit-animation: blink-1 2s infinite both;
  animation: blink-1 2s infinite both;
}

/**
 * ----------------------------------------
 * animation blink-1
 * ----------------------------------------
 */
@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

/* Alert container - no background, only alert boxes have colored backgrounds */
.alert-simple {
  margin-bottom: 1rem;
}

/* Close button styling */
.alert-simple .close {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.alert-simple .close:hover {
  opacity: 1;
}

.alert-simple .close i {
  color: #666;
  font-size: 16px;
}

