/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
  color:  white;
  font-family:  Cambria;
}

/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background-color: black;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: black;
  color: white;
  min-height:  30px;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: black;
  color: white;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

.denominationsWrapper {
	justify-content: center;
  align-items: center;
  display: flex;
}
.denominationsContent {
  text-align: left;
}
.denomLabel {
  width:  100px;
  display:  inline-block;
}
.radio-toolbar input[type="radio"]{
  display: none;
}
.radio-toolbar label {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(silver), to(white));
  padding: 10px 15px;
  font-family: Arial;
  font-size: 16px;
  cursor: pointer;
  width:  30px;
  text-align:  center;
  border-radius: 8px;
  font-weight: bold;
  font-family: Cambria;
  font-size: medium;
  color:  black;
  margin-bottom:  5px;
}
.radio-toolbar input[type="radio"]:checked+label {
    background: -webkit-gradient(linear, left top, left bottom, from(#FAEDB0), to(#C89B43));
}
.modalTitle {
	text-align:  center;
	font-size:  large;
	font-weight:  bold;
	margin-bottom:  10px;
}