#loader {
    display: none;
  }
  .loading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .loading p {
    color: #44474c;
    margin-bottom: 10px;
    font-size: 25px;
  }
  .loading span {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    border-top: 4px solid #ff8952;
    border-left: 4px solid #ff8952;
    border-right: 4px solid #ff8952;
    border-bottom: 4px solid transparent;
    -webkit-animation: loader 0.5s linear infinite;
            animation: loader 0.5s linear infinite;
  }
  ul.notifications {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: block;
    z-index: 1000000;
    list-style: none;
  }
  ul.notifications .success {
    background-color: #00bd00;
  }
  ul.notifications .danger {
    background-color: #e13f3f;
  }
  ul.notifications .info {
    background-color: #208697;
  }
  ul.notifications .default {
    background-color: #000000;
  }
  ul.notifications div {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 3px;
    padding: 10px 15px;
    margin-top: 10px;
    margin-left: auto;
    -webkit-animation: opacity 0.3s ease-out;
            animation: opacity 0.3s ease-out;
  }
  ul.notifications div p {
    margin-right: 10px;
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
  }
  ul.notifications div a::before {
    -webkit-filter: invert(100%);
            filter: invert(100%);
    margin-right: 0;
  }
  #modal {
    display: none;
    position: fixed;
  }
  .modal-app {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    background-color: rgba(234, 234, 234, 0.2);
  }
  .modal-app .body-modal {
    display: inline-block;
    padding: 40px;
    border-radius: 7px;
    background-color: #fff;
    text-align: center;
  }
  .modal-app .body-modal .msg-confirm {
    color: #44474c;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
    max-width: 500px;
  }