.overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  
  .modal-message {
    background: #1d2e38;
    width: 455px;
    max-width: 100%;
    color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .modal-message__header {
    font-size: 16px;
    padding: 15px 20px;
    margin-top: -1px;
  }
  
  .modal-message__body {
    font-size: 14px;
    padding: 30px;
    line-height: 1.4;
  }
  
    .modal-message__body .btn {
      min-width: 92px;
    }
  
  .modal-message__body__text {
    margin: 20px 0 40px;
  }
  
  .modal-message__header__icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 5px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  
  .warning .modal-message__header {
    background: #ffae28;
  }
  
  .warning .modal-message__header__icon {
    background-image: url(../../../Content/pic/alert.svg);
  }
  
  .notice .modal-message__header {
    background: #26a69a;
  }
  
  .notice .modal-message__header__icon, .menu_info__icon
  {
    background-image: url(../../../Content/pic/information.svg);
  }
  
  .error .modal-message__header {
    background: #fe5152;
  }
  
  .error .modal-message__header__icon {
    background-image: url(../../../Content/pic/alert.svg);
  }
  