.modal
  background rgba($bz-black, 0.5)
  z-index 100
  coverScreen(fixed)
  display flex
  align-items center
  justify-content center
  color $bz-white
  font-size 18px
  &__window
    background $bz-black
    border-top 3px solid $bz-blue
    box-sizing border-box
    width 80%
    max-height 80%
    padding 2.25em 2em
    boxShadow()
    &--small
      max-width 350px
      max-height 200px
      .modal__body
        line-height golden(18px, 350px)
        margin-bottom golden(18px, 350px)
    &--med
      max-width 750px
      .modal__body
        line-height golden(18px, 678px)
        margin-bottom golden(18px, 678px)
    &--large
      max-width 1000px
      .modal__body
        line-height golden(18px, 1000px)
        margin-bottom golden(18px, 1000px)
  &__title
    font-size 2em
    margin-bottom .775em
    font-weight 300
  &__body
    font-size 1em
    font-weight 300
    a
      color $bz-blue
      text-decoration none
    strong
      font-weight 500
      color $bz-blue
  &__proceed
    cursor pointer
    color inherit
    text-transform uppercase
    outline 0
    border 0
    font-size 1em
    padding .75em
    margin-top .5em
    text-align center
    background $bz-blue
    width 100%
