/* Useful Anchor Mixins */
/* Text Image Replacement Mixin */
/* Transparent Background color with IE Fallback Mixin */
/* Custom Modal Styles */

#quickModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
}
.quickModal {
  text-align: center;
}
.quickModal .content {
  position: relative;
  z-index: 1500;
  text-align: left;
  width: 80%;
  max-width: 640px;
  display: inline-block;
  vertical-align: middle;
}
.quickModal .innerContent {
  min-height: 200px;
  max-height: 80%;
  padding: 10px;
  overflow-y: auto;
  border: solid 10px #666666;
  background-color: white;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.quickModal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2000;
  width: 25px;
  height: 25px;
  line-height: 25px;
  color: white;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  border: solid 2px white;
  background-color: black;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -o-border-radius: 25px;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.quickModal .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.75;
}
.quickModal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
