.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;

  .custom-modal__backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  .custom-modal__content {
    background-color: #fff;
    margin: 68px auto 0;
    max-height: calc(100vh - 110px);
    max-width: 605px;
    overflow-y: auto;
    padding: 36px 56px;
    position: relative;

    .custom-modal__close {
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-weight: 700;
      gap: 14px;
      height: 24px;
      position: absolute;
      right: 56px;
      text-transform: uppercase;
      top: 50px;
      width: 24px;
      background-color: transparent;
      color: #c12017;
      border: none;
    }

    .modal-inner-content {
      .h_title {
        margin-top: 0;
        margin-bottom: 0;
        text-align: start;
      }

      .field__items {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        width: 100%;

        .field__item {
          width: 100%;
          margin-top: 1.25rem;

          .btn-transparent--modal {
            width: auto;
            width: auto;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            align-items: center;
            background-color: transparent;
            border: 2px solid var(--color-red);
            border-radius: 4px;
            color: var(--color-red);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            font-weight: 700;
            gap: 8px;
            justify-content: center;
            letter-spacing: 1px;
            padding: 18px 30px;
            text-align: center;
            text-transform: uppercase;
            width: 100%;
          }
        }
      }
    }
  }
}
