
    * {
      box-sizing: border-box;
      /* direction: rtl; */
      padding: 0;
      margin: 0;

    }

    .alert_modal {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99999999999999999999;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
    }

    .alert_container {
      width: 90%;
      background-color: white;
      border-radius: 10px;
      animation: 0.5s 1 alert_container_animation;
      -webkit-animation: 35s 1 alert_container_animation;
    }

    @media (min-width: 600px) {
      .alert_container {
        width: 350px;
      }
    }

    @keyframes alert_container_animation {
      0% {
        transform: scale(0.5);
      }

      1% {
        transform: scale(1.1);
      }

      2% {
        transform: scale(1);
      }
    }

    @-webkit-keyframes alert_container_animation {
      0% {
        transform: scale(0.5);
      }

      1% {
        transform: scale(1.1);
      }

      2% {
        transform: scale(1);
      }
    }

    .alert_heading {
      padding: 20px;
      border-radius: 10px 10px 0px 0px;
      text-align: center;
    }

    .alert_details {
      padding: 15px;
      text-align: center;
    }

    .alert_details h2 {
      font-size: 20px;
    }

    .alert_details p {
      font-size: 14px;
      color: black;
      line-height: 1.5em;
      margin-top: 5px;
    }

    .alert_footer {
      background-color: #E3E3E3;
      padding: 10px;
      border-radius: 0px 0px 10px 10px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
    }

    .alert_footer span {
      /*color: #979797;
      cursor: pointer;*/
    }

    .alert_footer span:hover {
      /*color: #353535;*/
    }

