      .none {
        display: none;
      }
      .flex {
        display: flex;
      }
      .agreement {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        align-items: center;
        justify-content: center;
        z-index: 100;
      }
      .agreement_background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: black;
        opacity: 0.32;
        z-index: -1;
      }
      .agreement_container {
        border: 2px solid #A2A2A2;
        border-radius: 15px;
        margin: 0 15px 0 15px;
        overflow: hidden;
		width: 330px;
      }
      .agreement_header {
        height: 100px;
        overflow: hidden;
        display: flex;
        align-items: center;
		width: 100%;
        background: url('agreement-header.png') no-repeat center / cover;
      }
      .agreement_content {
        background-color: #2A273D;
        font-size: 16px;
        line-height: 20px;
        color: #C1C1C1;
        font-family: sans-serif;
        padding: 16px 24px 16px 24px;
      }
      .agreement_title {
        color: white;
        font-size: 21px;
        font-weight: bold;
        margin: 0;
        padding-bottom: 24px;
        text-align: center;
      }
      .agreement_subtitle {
        text-align: center;
        padding: 0 32px 0 32px;
        margin: 0;
      }
      .agreement_text {
        padding: 20px 32px 16px 32px;
        margin: 0;
        text-align: left;
      }
      .agreement_text p {
        margin: 0 0 8px 0;
      }
      .agreement_button {
        height: 54px;
        border-radius: 50px;
        margin: 0 36px 0 36px;
        font-size: 24px;
        font-weight: 300;
        color: white;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #8B28F6, #5FAAF2);
      }
      .agreement_button:hover {
        opacity: 0.8;
      }
      .terms, .privacy {
          color: #6d87e1;
        }
