.message-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: fixed;
  height: 100vh;
  background-color: rgba(140, 140, 140, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -11;
  opacity: 0;
}

@keyframes fadein {
  from {
    z-index: -11;
    opacity: 0;
  }
  to {
    z-index: 99999;
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    z-index: -11;
    opacity: 0;
  }
  to {
    z-index: 99999;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    z-index: 99999;
    opacity: 1;
  }
  to {
    z-index: -11;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    z-index: 99999;
    opacity: 1;
  }
  to {
    z-index: -11;
    opacity: 0;
  }
}

.message-wrapper.show {
  -webkit-animation: fadein 0.3s forwards;
  animation: fadein 0.3s forwards;
}

.message-wrapper.hide {
  -webkit-animation: fadeout 0.3s forwards;
  animation: fadeout 0.3s forwards;
}

.message {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
  max-width: 623px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16.59px;
  box-shadow: 0px 3.317535638809204px 19px -3.317535638809204px #6d8195;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.message .indicator {
  width: 16px;
  border-radius: 16.5877px 0px 0px 16.5877px;
}

.message .content {
  padding: 77px 35px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.message.success .indicator {
  background-color: #45c45b;
}

.message.error .indicator {
  background-color: #ff6b6b;
}

.message .content .text-wrapper {
  max-width: 280px;
}

.message .content .text-wrapper .alert-message {
  font-family: "FiraGo";
  font-style: normal;
  font-weight: bold;
  font-size: 28.1955px;
  line-height: 34px;
  letter-spacing: -0.04em;
  color: #333333;
  margin: 0;
  margin-bottom: 5px;
}

.message .content .text-wrapper .description {
  font-family: "FiraGo";
  font-style: normal;
  font-weight: 350;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: #495057;
  margin: 0;
}

.message .content .icon-wrapper {
  margin-right: 28px;
}

.message .close-btn button {
  background: none;
  border: none;
  outline: none;
}

.message .close-btn {
  display: flex;
  justify-content: center;
  padding: 0 40px;
  border-left: 0.829384px solid #d9d9d9;
  cursor: pointer;
}
