.request-a-nomination .modal {
  position: fixed;
  z-index: 101; /* stallion head is 100 */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: grid;
  cursor: pointer;
}

.request-a-nomination .modal--closed {
   display: none;
 }

.request-a-nomination .modal__content {
  position: relative;
  box-shadow: #444 0px 0px 20px 0px;
  background-color: rgba(255, 255, 255, .8);
  box-sizing: border-box;
  padding: 32px;
  max-width: 100vw;
  max-height: 100vh;
  place-self: end center;
  cursor: initial;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .request-a-nomination .modal__content {
    place-self: center;
  }
}

.request-a-nomination .modal__stallion {
  margin-top: 0;
  font-family: Meta-Serif, Georgia, Times, "Times New Roman", serif;
  font-size: 32px;
  line-height: 34px;
}
@media only screen and (min-width: 768px) {
  .request-a-nomination .modal__stallion {
    font-size: 48px;
    line-height: 50px;
  }
}

.request-a-nomination .modal__cta{
  display:flex;
  justify-content: center;
}

.request-a-nomination .modal__cta a {
  background-color: #0037b2;
  color: #E7F0FE;
  display: inline-block;
  font-family: Meta, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 24px;
  padding: 16px 16px 10px;
  text-transform: uppercase;
  max-width: 248px;
  margin:0 4px;

  &:hover {
    color: #E7F0FE;
    text-decoration: underline;
  }
}
@media only screen and (min-width: 768px) {
  .request-a-nomination .modal__cta a {
    font-size: 28px;
    line-height: 30px;
  }
}

.is-page-node-type-stallion {

  .request-a-nomination {

    button {
      all: unset;
      cursor: pointer;
      font-family: Meta, "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-weight: bold;
      text-transform: uppercase;
      padding: 0;
      background-color: transparent;

      &.modal__close {
        position: absolute;
        top: 4px;
        right: 7px;
        font-size: 28px;
        padding:0;
        background-color: transparent;
      }

    }

  }

}
