@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.title-container {
  font-family: Quicksand;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Isso alinha à esquerda */
  height: 100%; /* Isto faz com que o container tenha a mesma altura da .alert */
  margin: 0;
  color: black;
  font-size: 15px;
}

.alert {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 15px auto;
  height: 50px;
  padding: 30px;
  position: fixed;
  border-radius: 5px;
  z-index: 9090;
  font-size: 15px;
}

@media (min-width: 600px) {
  .alert{
    width: 50%;
  }
}

.close {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.5;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  right: 15px;
  top: 17px;
  text-align: center;
  font-size: 1.6em;
  cursor: pointer;
}

.alert simple-alert {
  background-color: #ebebeb;
  border-left: 5px solid #6c6c6c;
}
.alert simple-alert .close {
  border-color: #6c6c6c;
  color: #6c6c6c;
}

.success-alert {
  background-color: #a8f0c6;
  border-left: 5px solid #178344;
}
.success-alert .close {
  border-color: #178344;
  color: #178344;
}

.danger-alert {
  background-color: #f7a7a3;
  border-left: 5px solid #8f130c;
}
.danger-alert .close {
  border-color: #8f130c;
  color: #8f130c;
}

.warning-alert {
  background-color: #ffdb58;
  border-left: 5px solid #8a5700;
}
.warning-alert .close {
  border-color: #8a5700;
  color: #8a5700;
}/*# sourceMappingURL=alert-box.css.map */


.alert-img{
  margin-right: 10px;
}