@import url('https://fonts.googleapis.com/css?family=Roboto');

body {font-family: Roboto; font-size: 10pt;}
/* Login Page */
.cardDesign {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background-color: white !important;
    border-radius: 3px;
}

.cardDesign-mini {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: white !important;
    border-radius: 3px;
}

.cardDesign-hover:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.loginCard{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: white;
}

/* Header */
.bg-light.bg-white {background-color: white !important;}

.headerTitle {color: #212121;}
    .headerTitle:hover {text-decoration: none; color: #757575;}
/* EOF Header */

.jumbotron {background-image: url('../img/banner.jpg'); background-position: center; background-size: cover; padding-top: 8%; padding-bottom: 8%;}
#contentContainer {min-height: 300px;}
footer {background-color: #EEEEEE; padding-top: 20px; padding-bottom: 20px;}

.pageTitle {margin-bottom: 10px; color: #29648A; font-size: 18pt;}
.sectionTitle {margin-top: 10px; margin-bottom: 20px; color: #2E9CCA; font-size: 13pt; padding-bottom: 5px; display: inline-block;}

.form-group.required > label:first-child:before {content:"*"; color:red;}

.table {font-size: inherit;}
.table thead th {vertical-align: middle; padding-top: 10px; padding-bottom: 10px;}
.paymentColumn {width: 40px;}
.dateColumn {width: 120px;}

.statusLegend {font-size: 11pt; margin-bottom: 10px; }
.statusLegend span {margin-right: 10px;}

.imgIconDisplaySize {max-height: 25px; max-width: 50px;}

#dialogIcon, #dialogConfirmIcon {font-size: 2.3em;}

ul, ol {padding-left: 0px; margin-left: 15px;}
ul li, ol li {margin-bottom: 5px;}


.textHighlight-red {color: #B71C1C;}
.textHighlight-redBold {font-weight: bold; color: #B71C1C;}

.table thead {background-color: #039BE5; color: white;}
.table thead th {border-color: transparent;}
.table tbody td {vertical-align: middle;}

h6 {font-weight: bold;}

.formTextValue {font-weight: bold;}
.attendeeHeader {text-decoration: underline;}
.formSmallText {margin-top: -10px; margin-bottom: 5px;}

@media print {
    .noPrint {display: none;}
}

/* Extra Small */
@media(max-width:576px){
    .ticketPaymentSumTableDesc {}
    .ticketPaymentSumTableQuantity {width: 65px;}
    .ticketPaymentSumTableOther {width: 80px;}
    
    .paymentBox {border-right-width: 0px !important;}
}

/* Small */
@media(min-width:576px) and (max-width:767px){
    .ticketPaymentSumTableOther, .ticketPaymentSumTableQuantity {width: 100px;}
    .paymentBox {border-right-width: 0px !important;}
}

/* Medium */
@media(min-width:768px) and (max-width:991px){
    .ticketPaymentSumTableOther, .ticketPaymentSumTableQuantity {width: 150px;}
    
    .paymentBox {border-bottom-width: 0px !important;}
}

/* Large */
@media(min-width:992px) and (max-width:1199px){
    .ticketPaymentSumTableOther, .ticketPaymentSumTableQuantity {width: 150px;}
    
    .paymentBox {border-bottom-width: 0px !important;}
}

/* Extra large */
@media(min-width:1200px){
    .ticketPaymentSumTableOther, .ticketPaymentSumTableQuantity {width: 150px;}
    
    .paymentBox {border-bottom-width: 0px !important;}
}





/* Loading */
#loading {
    display: none;
    position: fixed;
    z-index: 2000;
}

#loadingContent {
    position: fixed;
    width: 90px;
    height: 90px;
    z-index: 1000;
    background: white;
    top: calc(40% - 40px);
    left: calc(50% - 45px);
}

#loadingSection {
    width: 50px;
    height: 50px;
    position: absolute;
    left: calc(50% - 25px);
    top: 10px;
}

#loadingContent span {
    bottom: 10px;
    position: absolute;
    width: 100%;
    text-align: center;
}

#loadingMask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.7;
    z-index: 990;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
body {
  margin: 0;
}

.ctnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
}

.ldr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  width: 2.5em;
  height: 2.5em;
}

.ldr-blk {
  height: 35%;
  width: 35%;
  -webkit-animation: pulse 0.75s ease-in infinite alternate;
          animation: pulse 0.75s ease-in infinite alternate;
  background-color: #b11365;
}

.an_delay {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
/* End of Loading */

/* Radio Button Tiles */

.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.radio-tile-group .input-container {
    position: relative;
    height: 5rem;
    width: 12rem;
    margin: 0.5rem;
}
.radio-tile-group .input-container .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
}
.radio-tile-group .input-container .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid #EF5350;
    border-radius: 5px;
    padding: 1rem;
    transition: transform 300ms ease;
}
.radio-tile-group .input-container .icon svg {
    color: #424242;
    width: 2.5rem;
    height: 2.5rem;
}

.radio-tile-group .input-container .icon img {
    height: 45px;
}


.radio-tile-group .input-container .radio-tile-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #EF5350;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #EF5350;
    border: 2px solid #EF5350;
    color: white;
    transform: scale(1.1, 1.1);
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .icon svg {
    color: white;
    background-color: #EF5350;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
    color: white;
    background-color: #EF5350;
}

/* EOF Radio Button Tiles*/