.button {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.min-height-150 {
  min-height: 150px;
}
.theater-layout {
  min-height: 50px;
  background: white;
  margin-left: 5%;
  margin-right: 5%;
  padding: 2px;
}
.display-block {
  display: block;
}
.theater-layout .stage {
    border: 1px solid #e6e6e6;
    width: 30%;
    height: 30px;
    justify-self: center;
    border-radius: 3px;
    background: #e6e6e6;
    font-weight: bold;
    margin-bottom: 20px;
}
.theater-layout .dancing-floor {
    border: 1px solid #030e1b;
    width: 20%;
    height: 25px;
    justify-self: center;
    border-radius: 3px;
    background: #030e1b;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}
.theater-layout .seat-arrangement {
    border: 1px solid #c8c8c8;
    width: 100%;
    justify-self: center;
    margin-top: 15px;
    min-height: 50px;
    padding: 20px 0;
}
.seat-arrangement table{
  border-spacing: 4px;
}
.seat-arrangement .seat {
  border: 1px solid #004aad;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  font-size: 11px;
  height: 15px;
  padding: 0 0px;
}
.seat-arrangement .seat.no-border {
  border:0!important;
}
.seat-arrangement .legend {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: center;
  align-items: stretch;
  column-gap: 20px;
  margin-bottom: 15px;
}
.seat-arrangement .legend img{
  width: 30px;
}
.seat-reserved {
  background-color: #c1c2b8;
  cursor: not-allowed!important;
}
.seat-booked {
  background: #5c0303;
  cursor: not-allowed!important;
  color: white;
}
.seat-selected {
    background-color: #0097b2!important;
    color: white;
}
.theater-layout .btn-add-to-cart, .theater-layout .btn-go-to-cart {
  background-color: #dd003f;
  color: #ffffff;
  padding: 11px 25px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 15px;
  width: 160px;
}
.theater-layout .btn-clear-selection {
  background-color: #0f2133;
  color: #ffffff;
  padding: 11px 25px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 15px;
}

.theater-layout .totals span {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.totals .selected-seats label {
    background: #dedede;
    margin: 5px;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Dosis', sans-serif;
    font-weight: bold;
}
.buyer-info {
  box-sizing: border-box;
}
.buyer-info .row {
  display: flex;
  flex-wrap: wrap;
}
.buyer-info .column {
  flex: 25%;
  padding: 20px;
}
.buyer-info .column label {
    width: 100%;
    text-align: left;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    font-weight: bold;
}
@media screen and (max-width: 992px) {
  .column {
    flex: 50%;
  }
}
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}
.event-params {
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  margin: 10px;
}
.event-params .row {
  display: flex;
  flex-wrap: wrap;
}
.event-params .column {
  display: flex;
  flex: 20%;
  padding: 20px;
  column-gap: 10%;
  justify-content: center;
  font-family: 'Dosis', sans-serif;
  font-size: 17px;
  font-weight: bold;
}
.event-params .value-label, .event-params .value-label select {
  color: #dd003f;
} 
.navbar-nav .cart-link {
  font-size: 20px!important;
  overflow-block: auto;
}
.cart-container {
  border: 1px solid #e4eaf0;
  min-height: 200px;
  padding: 15px 10px;
}
.cart-container .cart{
  margin: 10px 0;
}
.cart-container .cart-item .image {
  margin: auto;
  width: auto;
  border: 1px solid #e4eaf0;
  padding: 2px;
}
.cart-container .cart-item img {
  max-width: 100px;
}
.cart-container .cart-item {
  display: flex;
  column-gap: 15px;
  border: 1px solid #0f2133;
  padding: 10px;
  margin: 5px 0;
}
.cart-container .cart-item .reservations {
  width: 100%;
}
.cart-container .cart-item .reservations .res-item{
  text-align: left;
  padding: 5px;
  border: 1px solid #e4eaf0;
  margin: 5px 0;
  font-size: 14px;
}
.cart-container .cart-item .reservations .res-item .seat-label{
  background: #dedede;
  margin: 5px;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Dosis', sans-serif;
  font-weight: bold;
}
.cart-container .cart-item .reservations .res-item strong {
  color: #dd003f;
}
.cart-container .cart-total {
  margin-top: 25px;
}
.res-item .change-selection {
    background: #004aad;
    color: white;
    padding: 4px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}
.res-item .clear-selection {
    background: #ad002d;
    color: white;
    padding: 4px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}
.price-breakdown {
  width:100%;
}
.totals-row {
  display: flex;
  column-gap: 10px;
  justify-content: center;
}
label.font-20 {
  font-size: 20px;
}
.cart-container .nav-tabs > li.active > a {
  color: white;
}
#buyer_info .row{
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: stretch;
  margin: 10px;
}
#buyer_info .row input, #buyer_info .row .hidden {
  width: auto;
}
#buyer_info .row label, #buyer_info .row input {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.navbar .fa-shopping-cart {
  float: left!important;
  margin-top: 0!important;
  margin-right: 5px;
}
.payment-methods {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 15px;
}
.payment-methods img{
  width: 50px;
}
.payment-methods label{
  padding: 10px;
  cursor: pointer;
}
.tab-content #buyer_info {
    border: 1px solid #dbdbdb;
}
.payment-methods label.selected {
  border: 5px solid #dd003f;
}
.cart-total .notification {
  margin-bottom: 10px;
  font-size: 14px;
  color: #0f2133;
  font-family: 'Dosis', sans-serif;
  font-weight: bold;
}
.alert .container label{
  width: 100%;
}
.alert .container label.row{
  margin: 2px 0;
}
.order-payment-info div {
  justify-content: center;
  text-align: center;
}
.order-payment-info .fa-check {
  font-size: 55px;
  border: 5px solid #5fc01e;
  border-radius: 50%;
  padding: 15px;
  color: #23c747;
}
.order-payment-info .fa-times {
    width: 100px;
    font-size: 55px;
    border: 5px solid #da2d2d;
    border-radius: 50%;
    padding: 15px;
    color: #e56161;
}
.order-payment-info .order-ref {
    color: #0f2133;
    font-weight: bold;
    margin-top: 10px;
}
.order-payment-info .payment-ref {
    color: #0f2133;
    font-weight: bold;
    margin-bottom: 10px;
}
.order-payment-info strong {
  color: #dd003f;
}
.clear-cart {
  background-color: #dd003f;
  color: white;
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Dosis', sans-serif;
}
.order-summary {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  column-gap: 15px;
}
.cart-container .empty-cart {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Dosis', sans-serif;
}
.cart-container .empty-cart img {
  width: 25%;
}
.cart-container .empty-cart h4 {
  font-family: 'Dosis', sans-serif;
  font-size: 25px;
}
#login-content input {
  text-transform: none;
}
.table-seats .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: center;
  align-items: stretch;
  margin: 5px 0;
}
.table-seats .row .seperator, .table-seats .row img{
  width: 50px;
}
.table-seats .row img {
  cursor: pointer;
}
#tickets_dialog .table-details {
  width:100%;
  font-size: 14px;
}
#tickets_dialog .table-details .ctr-row{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: stretch;
}
#tickets_dialog .table-details .ctr-row label:first-child {
  margin: 0 10px;
  font-weight: bold;
}
#tickets_dialog .table-details .ctr-row.booking {
  margin: 10px 0;
}
#tickets_dialog .table-details .ctr-row.booking label:first-child {
  width: 80px;
}
#tickets_dialog .table-details .ctr-row.booking input[type='number'] {
  line-height: 0;
  padding: 0;
  height: 25px;
  text-align: right;
  width: 100px;
}
#tickets_dialog .table-details .ctr-row.buttons {
  justify-content: center;
  column-gap: 15px;
  margin-top: 20px;
}
#tickets_dialog .table-details .ctr-row.buttons .btn-reserve {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
#tickets_dialog .table-details .ctr-row.buttons .btn-cancel {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}
.ctr-row .vip-lbl {
  color: #ff7117;
}
.notification .mail-to {
  color: #1414e0;
  font-size: 16px;
}