@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.block__elm {
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100002; }
.block__elm--underlay {
  -webkit-animation: fadein .5s;
  animation: fadein .5s;
  background-color: rgba(23, 57, 99, 0.65);
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2000; }
.block__elm--wrapper {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  z-index: 2001; }
@media screen and (max-width: 47.9375em) {
  .block__elm--wrapper {
    max-height: 66%;
    overflow-y: scroll;
    width: 100%; } }
.block__elm--content {
  -webkit-animation: popin .3s;
  animation: popin .3s;
  padding: 0 1.25rem;
  width: 100%; }
@media screen and (min-width: 48em) {
  .block__elm--content {
    padding: 0;
    width: 40rem; } }
.block__elm--content-inner {
  background-color: #ffffff;
  padding: 2.9375rem 2.75rem 3.5625rem;
  position: relative;
  text-align: center; }
.block__elm--close {
  color: #173963;
  cursor: pointer;
  padding: 1rem 0.9375rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2002; }
.block__elm--close .icon {
  font-size: 0.875rem;
  font-weight: 700; }
.block__elm--heading {
  margin-bottom: 1.25rem; }
.block__elm--cta {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 1.875rem; }
.block__elm--cta a,
.block__elm--cta button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0; }
.block__elm--cta a.block__elm--button-accept,
.block__elm--cta button.block__elm--button-accept {
  margin-right: 0.625rem; }
.block__elm--cta a.block__elm--button-accept:focus,
.block__elm--cta button.block__elm--button-accept:focus {
  outline: #2359a8 auto 5px; }
.block__elm--cta a.block__elm--button-decline,
.block__elm--cta button.block__elm--button-decline {
  margin-left: 0.625rem; }
