.one {
        animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      }
      .one .modal {
        transform: scale(0);
        animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      }
      #modal-container {
        position: fixed;
        display: table;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        transform: scale(0);
        z-index: 2;
        backdrop-filter: blur(2px);
      }
      .iconClose{
          position: absolute;
    right: 30px;
    cursor: pointer;
      }
      .text-center{
          text-align: center;
          margin: 0px 0 13px !important;
          font-size: 22px !important
      }
      .out {
        animation: unfoldOut 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      }
      .out .modal {
        animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
      }
.nobackground{
            background: #30b8ff 20px 11px no-repeat !important;
    }
    .sub-header{
        display: flex;
        justify-content: space-between;
        align-items:center;
    }
    .mt-6{
     margin-top: 6px !important;   
    }
      .modal-background {
        display: table-cell;
        background: rgba(0, 0, 0, 0.5);
        -webkit-background: rgba(0, 0, 0, 0.5);
        text-align: center;
        vertical-align: middle;
        width: 100%;
        filter: blur(8px);
        -webkit-filter: blur(8px);
      }
      .modal {
        background: transparent;
        /*display: inline-block;*/
        border-radius: 3px;
        font-weight: 300;
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        display: flex !important;
        justify-content: center;
        align-items: center;
      }
      .content-modal {
        width: auto;
        padding: 20px;
        background: #fff;
        position:relative;
      }
      @keyframes zoomIn {
        0% {
          transform: scale(0);
        }
        100% {
          transform: scale(1);
        }
      }
      @keyframes unfoldIn {
        0% {
          transform: scaleY(0.005) scaleX(0);
        }
        50% {
          transform: scaleY(0.005) scaleX(1);
        }
        100% {
          transform: scaleY(1) scaleX(1);
        }
      }
      @keyframes zoomOut {
        0% {
          transform: scale(1);
        }
        100% {
          transform: scale(0);
        }
      }
      @keyframes unfoldOut {
        0% {
          transform: scaleY(1) scaleX(1);
        }
        50% {
          transform: scaleY(0.005) scaleX(1);
        }
        100% {
          transform: scaleY(0) scaleX(0);
        }
      }