.modal-auto-open {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-auto-open.display-none {
  display: none;
}

.modal-auto-open .icon-modal {
  margin: 0 auto 16px auto;
}

.modal-auto-open .body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-auto-open .modal-content {
  background-color: #fefefe;
  padding: 36px 32px 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  max-width: 416px;
  width: calc(100% - 24px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal-auto-open .modal-content .title {
  color: #111928;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.modal-auto-open .modal-content .content {
  color: #6b7280;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.modal-auto-open .modal-content .close {
  position: absolute;
  right: 16px;
  top: 10px;
  cursor: pointer;
}

.modal-content .back-home .back-home-button {
  border-radius: 8px;
  border: 1px solid #235bb5;
  height: 52px;
  color: #235bb5;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirm-action,
.warning-action {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.confirm-action .cancel-button {
  color: #1f2a37;
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
}

.confirm-action .confirm-button {
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  background-color: #db9317;
  color: #fff;
  min-height: 52px;
  border-radius: 8px;
  border: none;
}

.confirm-action .delete-confirm-button {
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  background-color: #c81e1e;
  color: #fff;
  min-height: 52px;
  border-radius: 8px;
  border: none;
}

.warning-action .cancel-button {
  color: #3A84C6;
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  min-height: 52px;
  border-radius: 8px;
  border: 1px solid #3A84C6;
  background-color: #fff;
}

.warning-action .primary-button {
  font-size: 16px;
  font-weight: 700;
  width: 50%;
  background-color: #235BB5;
  color: #fff;
  min-height: 52px;
  border-radius: 8px;
  border: none;
}

.c-modal__overlay {
  display: block;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.c-modal__content {
  z-index: 1000;
}

.c-modal__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28.96px;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 16px;
}
.c-modal__icon {
  margin-top: 16px;
  text-align: center;
}
.c-modal__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  margin-top: 16px;
  letter-spacing: -0.5px;
}
.c-modal__button {
  margin-top: 24px;
}
