.c-modal__alert {
  background: #FCEDED;
  color: #d60b17;
  font-weight: bold;
  text-align: center;
  padding: 18px 20px 15px;
}
.c-modal__txt {
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  padding-top: 25px;
  padding-bottom: 25px;
}
.c-modal__flow {
  font-size: 18px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F8F8F8;
  padding: 18px 20px 15px;
  margin-bottom: 20px;
}
.c-modal__flow p span {
  color: #d60b17;
  font-weight: bold;
}
.c-modal__flow p i {
  font-size: 40px;
  padding-right: 15px;
}
.c-modal__button {
  min-width: 220px;
  width: 220px;
  margin: 0 15px;
  padding: 1rem 1.5rem;
  font-size: 14px;
  font-size: 1.4rem;
  background: #118df0;
}
.c-modal__button.c-button {
  background: #118df0;
}

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
  z-index: 200;
}

.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

.btn-area {
  text-align: center;
}

.modal-content {
  background: #fff;
  border: 5px solid #ECEFF2;
  text-align: left;
  padding: 30px 40px;
  font-weight: bold;
  box-shadow: 7px 7px 12px -7px rgba(0, 0, 0, 0.5);
}