.prose {
    font-size: 1.2rem;
}

.prose p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.prose a {
    color: red;
    cursor: pointer;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}
.prose tr {
    border-bottom: 1px solid #1a48a3;
}
.prose th,
.prose td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}
.prose th {
  text-align: left;
}
.prose thead th {
  background-color: #55608f;
}
.prose tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.prose tbody td {
  position: relative;
}
.prose tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.prose ul {
    list-style: disc;
    margin: 2rem;
}

.prose h4 {
    font-size: 1.4rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid blue;
    margin-bottom: 0.5rem;
}

.cartthrob-fields .control-group {
    margin-bottom: 1rem;
}

.cartthrob-fields label {    
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cartthrob-fields input, .cartthrob-fields select {
    outline: 2px solid transparent;
    outline-offset: 2px;
    font-size: 1rem;
    line-height: 1.25rem;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    background-color: transparent;
    border-width: 1px;
    width: 100%;
    height: 2.5rem;
    padding: 0;
    line-height: inherit;
    color: inherit;
}

fieldset.shipping {
    display: none;
}

.currency-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.currency-wrapper .selected-quantity {
    position: relative;
    cursor: pointer;
    text-align: center;
    background-color: #e7f4fd;
    border: 4px solid #013399;
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}

.currency-wrapper .denomination-image img {
    max-height: 50px;
    max-width: 100%;
}

.currency-wrapper .numberpad {
    display: grid;
    position: absolute;
    top: 20px;
    left: 0;
    width: 250px;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    background-color: #039;
    color: #fff;
    font-weight: bold;
    z-index: 99;
}

.currency-wrapper .numberpad .number {
    border: 5px solid #039;
    padding: 15px;
    align-self: center;
    cursor: pointer;
}

.currency-wrapper .numberpad .number:hover {
    background-color: #fff;
    color: #039;
}