/* Utilities */
#subscription-certificate {
  .space-lg {
    height: 80px;
  }

  .space-md {
    height: 40px;
  }

  .space-sm {
    height: 20px;
  }
}

/* General Content */
#subscription-certificate {
  >.container {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  color: black;
  text-align: center;

  .brand-logo img {
    width: 200px;
    margin-bottom: 32px;
  }

  h1.title {
    margin-bottom: 8px;
    font-size: 56px;
  }

  .certificate-content {
    p {
      font-size: 24px;
    }
  }

  .subscriber-name,
  .membership-subscription-name {
    font-size: 40px;
    color: #183D7E;
  }
}

/* Footer */
.certificate-footer {
  font-size: 12px;
  background-color: #183D7E;
  color: white;
  padding: 24px 16px;
}

/* compensate for admin bar */
/* body.admin-bar {
  .print-button-wrapper {
    top: 32px;
  }
} */

/* print button wrapper*/
.print-button-wrapper {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;

  .print-btn:hover {
    color: white !important;
  }
}

@media screen {

  /* compensate for print button wrapper */
  #subscription-certificate {
    padding-top: 80px;
  }
}

@media print {
  .certificate-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .print-button-wrapper {
    display: none !important;
  }

}

@page {
  size: A4;
  margin: 15mm;
}