/* ----------------------------------------------------------------
	Custom CSS
	Author: Thalia Pickering
-----------------------------------------------------------------*/

/* Font families */
.open-sans {
	font-family: 'Open Sans', sans-serif;
}

/* Font colors */
.dark-green {
	color: #154733 !important;
}
.mid-green {
	color: #007500 !important;
}
.white-font {
	color: #ffffff !important;
}
.dark-gray {
	color: #3b3b3b !important;
}
.mid-gray {
	color: #555555 !important;
}
.mcc-red {
	color: #e4002b !important;
}
.lime-green {
	color:#a3c925 !important;
}

/* backgrounds */
.gradient-jai-alai-green {
	background: rgb(21,71,51);
	background: linear-gradient(0deg, rgba(21,71,51,1) 0%, rgba(25,116,56,1) 69%);
}
.dark-gradient {
	background: rgb(7,37,54);
	background: linear-gradient(0deg, rgba(7,37,54,1) 15%, rgba(4,21,31,1) 84%);
}
.dark-section-mcc {
	background: rgb(7,37,54);
	/*background: linear-gradient(0deg, rgba(7,37,54,1) 15%, rgba(4,21,31,1) 84%); Comment out to fix the contrast issue*/
}
.dark-red {
	background: rgb(175,2,2);
	background: linear-gradient(0deg, rgba(175,2,2,1) 0%, rgba(94,0,17,1) 100%);
}
.dark-to-red {
	background: rgb(175,2,2);
	background: linear-gradient(0deg, rgba(175,2,2,1) 0%, rgba(4,21,31,1) 100%);
}
.red-to-dark {
	background: rgb(175,2,2);
	background: linear-gradient(0deg, rgba(42,0,8,1) 50%, rgba(94,0,17,1) 70%);
}
.red-fade-to-white {
	background: rgb(255,255,255);
background: linear-gradient(0deg, rgba(255,255,255,1) 4%, rgba(228,0,43,1) 30%, rgba(94,0,17,1) 69%, rgba(42,0,8,1) 92%);
}
.dark-gray-gradient {
	background: rgb(54,54,54);
	background: linear-gradient(0deg, rgba(54,54,54,1) 0%, rgba(14,14,14,1) 100%);
}
.indigo-blue-gradient {
	background: rgb(13,26,129);
	background: linear-gradient(0deg, rgba(13,26,129,1) 0%, rgba(1,1,14,1) 100%);
}
.gold-gradient {
	background: rgb(159,121,42);
	background: linear-gradient(180deg, rgba(159,121,42,1) 0%, rgba(1,1,14,1) 100%);
}
.light-blue-gradient {
	background: rgb(203,237,255);
background: linear-gradient(0deg, rgba(203,237,255,1) 0%, rgba(241,253,255,1) 100%);
}
.bgrd-main-red {
	background-color: #E4002B;
}
.bgrd-main-dotted {
	background: url('../images/patterns/dots-texture-circle-darkred.svg') center center/cover no-repeat #E4002B;
}
.bgrd-main-dotted-black {
	background: url('../images/patterns/dots-texture-circle-black.svg') center center/cover no-repeat #E4002B;
}
.overlay-bg {
	background-color: rgba(255,255,255,.7);
	border-radius: 5px;
}
.dotted-bg::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 35%;
	width: 110%;
	height: 120%;
	background-size: 12px 12px;
	background-position: center;
	transform: translate(-50%, -50%);
	/* background-image: radial-gradient(#e4002b 14%, transparent 14%); */
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 14%, transparent 14%);
	-webkit-mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	z-index: 0;
}
.dotted-bg2::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 35%;
	width: 110%;
	height: 100%;
	background-size: 12px 12px;
	background-position: center;
	transform: translate(-50%, -50%);
	/* background-image: radial-gradient(#e4002b 14%, transparent 14%); */
	background-image: radial-gradient(rgba(255, 255, 255, 0.2) 14%, transparent 14%);
	-webkit-mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	mask-image: radial-gradient(rgba(0,0,0,1),rgba(0,0,0,0) 75%);
	z-index: 0;
}

/* Navigation - Drop-down */
.menu-link div > i.icon-angle-down {
    display: inline-block !important;
}
.sub-menu-container, .mega-menu-content {
    border-top: 2px solid #E4002B !important;
}
.sub-menu-container .menu-item:hover > .menu-link {
    color: #E4002B !important;
}

/* Google Maps */
.gmap_marker {
	font-weight: bold;
	font-size: 14px;
}

.map-heading {
	font-size: 16px;
	font-weight: bold;
	color: #e4002b; 
	line-height: 30px;
}

/* Reusable styles */
.red-border-bottom {
	border-bottom: 5px solid #E4002B;
}
.white-border-bottom {
	border-bottom: 2px solid #fff;
	color: #fff;
}
.grid-item {
	font-size: .7rem;
	text-transform: uppercase;
	font-weight: bold;
	color: #555;
}
.large-title {
	text-transform: uppercase;
	font-size: 3rem;
	line-height: 3rem;
}
.x-large-title {
	text-transform: uppercase;
	font-size: 3.5rem;
	line-height: 3.5rem;
}
.large-icon {
	font-size: 5.5rem !important;
	width: 60px;
}
.border-red-tb {
	border-top: 1px solid red;
	border-bottom: 1px solid red;
}
.underline-link {
	text-decoration: underline !important;
}
.panel {
  transition: max-height 0.2s ease-out;
}

@media (min-width: 576px) {
.d-sm-inline-block {
    display: inline-block !important;
}
}

/* Bootstrap Accordion example with expand/collapse all by
Andreas Eracleous  */
.panel-default>.panel-heading {
  color: #333;
  background-color: #eee;
  border-color: #e4e5e7;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.panel-default>.panel-heading a {
  display: block;
  padding: 10px 15px;
}

.panel-default>.panel-heading a:after {
  content: "\002b";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  float: right;
  transition: transform .25s linear;
  -webkit-transition: -webkit-transform .25s linear;
}

.panel-default>.panel-heading a[aria-expanded="true"] {
  background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.toggle-header a[aria-expanded="true"]:after {
  content: "\2212";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.toggle-header a[aria-expanded="false"]:after {
  content: "\002b";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-option {
  width: 100%;
  float: left;
  clear: both;
  margin: 15px 0;
}

.accordion-option .title {
  font-size: 20px;
  font-weight: bold;
  float: left;
  padding: 0;
  margin: 0;
}

.accordion-option .toggle-accordion {
  float: right;
  font-size: 16px;
  color: #6a6c6f;
}

.accordion-option .toggle-accordion:before {
  content: "Expand All";
}

.accordion-option .toggle-accordion.active:before {
  content: "Collapse All";
}

/* Overwrite styles */
.toggle-header, .accordion-header {
    margin: 5px !important;
}

.toggle-content, .accordion-content {
    padding: 0.75rem !important;
}

.grid-filter.style-3 li.activeFilter a {
    color: #e4002b !important;
    border-color: #e4002b !important;
}

.grid-filter li a {
    font-size: 1rem !important;
}

.grid-filter li a:hover {
    color: #e4002b !important;
}

.grid-filter.style-2, .grid-filter.style-3, .grid-filter.style-4 {
    margin-bottom: .75rem !important;
}

/* Homepage */
.mcc-circle {
	height: 100px;
	width: 100px;
	/* background-image: url('../images/logo/mcc-tree-white.svg'); */
	background-image: url('../images/logo/mcc-tree-red.svg');
	background-size: 45px;
    background-repeat: no-repeat;
    background-position: center;
	border: 5px solid #E4002B;
	/* background-color: #E4002B; */
	border-radius: 50%;
	display: inline-block;
}
blockquote {
    border-left: 5px solid #888;
    background-color: #f5f5f5;
}

.dark .button-dark:not(.button-border):not(:hover), .dark .button:hover {
    background-color: #E4002B !important;
}

/*.button {
    padding: 8px !important;
}*/

/*#logo img {
    height: 60px !important;
}*/

/* Casino */
.casino-promos {
	background-image: url('../images/patterns/palm-fronds.svg'), url('../images/patterns/palm-fronds-right.svg');
	background-position: top left, top right;
	background-repeat: no-repeat;
	background-size: 25% auto;
}
#todays-date {
	color: #000;
	font-weight: bold;
}

/* Poker Room */
.pokerLiveList {
	color: #555; 	
}
.no-Bullets {
		list-style: none;
	}

/* Players Club */
.free-play-title {
	padding: 15px;
	text-transform: uppercase;
}
.free-play-date {
	font-size: 1rem;
}
.free-play-amount {
	font-size: 3rem;
}
/*.heading-block > span:not(.before-heading) {  
    color: #fff !important;
}*/
.illusionist {
	background-color: #ffc933;	
}
.wizard {
	background-color: #9b3dff;
}
.border-wizard {
	border-color: #9b3dff !important;
}
.oracle {
	background-color: #3dc5ff;
}
.toggle {
    background-color: #eee !important;
}
.toggle-title {
	font-weight: bold !important;
}

/* Jai-Alai */
.chip {
  display: inline-block;
  padding: 0 25px;
  /*height: 50px;*/
  /*font-size: 16px;*/
  line-height: 50px;
  border-radius: 25px;
  /*background-color: #f1f1f1;*/
  margin-bottom: 5px;	
}
.chip img {
  /*float: left;*/
  margin: 0 10px 0 -25px;
  /*height: 50px;*/
  /*width: 75px;*/
  border-radius: 50%;
}
.chip-name {
  display: inline-block;
  width: 200px;
}
.chip2 {
  display: inline-block;
  padding: 0 25px;
  /*height: 50px;*/
  /*font-size: 16px;*/
  line-height: 50px;
  border-radius: 25px;
  /*background-color: #f1f1f1;*/
  margin-bottom: 5px;	
}
.chip2 img {
  /*float: left;*/
  margin: 0 40px 0 -25px;
  /*height: 50px;*/
  /*width: 75px;*/
  border-radius: 50%;
}
.chip-name2 {
  display: inline-block;
  width: 300px;
}
.chip3 {
  display: inline-block;
  padding: 0 25px;
  /*height: 50px;*/
  /*font-size: 16px;*/
  line-height: 50px;
  border-radius: 25px;
  /*background-color: #f1f1f1;*/
  margin-bottom: 5px;	
}
.chip3 img {
  /*float: left;*/
  margin: 0 40px 0 -25px;
  /*height: 50px;*/
  /*width: 75px;*/
  border-radius: 50%;
}
.chip-name3 {
  display: inline-block;
  width: 515px;
}
.zoom {
  transition: transform .2s; /* Animation */
}
.zoom:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

* {
    box-sizing: border-box;
}
.object-fit_cover { 
	object-fit: cover 
}
.angled-dark-bgrd {
	background-image: url('../images/patterns/angled-waves-dark.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.player-card {
	border-bottom: 8px solid #b3b3b3;
}
.player-info h4 {
	margin: 0px;
	padding: 0px;
	text-transform: uppercase;
	font-size: .8rem;
}
.player-info p {
	margin: 0px;
	padding: 0px 0px 15px 0px;
	font-size: 1rem;
}
.jersey-number {
	background-color: #E4002B;
	border-radius: .25rem 0 0 0;
}
.table-row {
    margin-left: -5px;
    margin-right: -5px;
}
.table-column {
    float: left;
    width: 50%;
    padding: 3px;
}
.table-center {
    width: 50%;
    padding: 5px;
	margin: 0 auto;
}
/* Clearfix (clear floats) */
.table-row::after {
    content: "";
    clear: both;
    display: table;
}
caption {
	display: none;		
}		
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	margin-bottom: 0px !important;
}		
th, td {
    text-align: center;
    padding: 10px;
	border-top: 1px solid #ddd;
}
#table3 th:first-child, #table3 td:first-child,
#table4 th:first-child, #table4 td:first-child, 
#table5 th:first-child, #table5 td:first-child {
	/*text-align: left;*/
	font-weight: bold;
	/*color: #e4002b;*/
	border-right: 1px solid #ddd;
}	
#table3 th:first-child,
#table4 th:first-child, 
#table5 th:first-child {
	border-right: 0px !important;
}
/*tr:nth-child(even) {
    background-color: #000000;
}*/
tr:hover {
	background-color:#f5f5f5;
}		
	

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-table {
  flex: 50%;
  padding: 5px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other on screens that are smaller than 600 px */
@media screen and (max-width: 1000px) {
.table-column, .table-center {
    width: 100%;
}
.flex-table {
    flex: 100%;
  }
.chip {
  display: block;
	}
}

/* Entries and Results */
/*.col-lg-1 {
	padding: 5px;
}
.weekday-heading {
	text-transform: uppercase;
	color: #fefefe;
	border-color: #AF0202;
	padding: 5px 10px;
	background-color: #AF0202;
	border-radius: 5px;
	font-size: .8rem;
}*/
 .calendar, .performance {
    border: 1px solid #dee2e6 !important;
    background-color: #f0f0f0 !important;
}
 .calendar > thead {
    color: #4a5157;
    /*text-align: center;*/
    text-transform: uppercase;
    font-weight: bold;
}
 .calendar > tbody {
    color: #606060 !important;
    text-align: center;
    font-size: larger; 
}
.activeDay {
	background-color: #E21930;
	color: #fff;
	pointer-events: auto;
	font-weight: bold;
	padding: 2px 6px !important;
	border-radius: 50%;
	cursor: pointer;
}
.activeDay:hover {
	background-color: #4a5157;
}
.activeDay:active {
	background-color: #000;
}
.tab-content {
	background-color: #fff;
}


/*#month, #year {
	text-transform: uppercase;
	color: #E4002B;
}
.inner-content {
	background-color: #f7e0e0;
	padding: 5px 10px;
	border-radius: 5px;
	width: 100%;
	font-size:.8rem;
}
.inner-content p {
	margin-bottom:15px;
	line-height: 1.2 !important;
	color:#4D4D4D;	
}
.day {
	margin-bottom:10px !important;
	font-weight:300;
	font-size:1.8rem !important;
	line-height: 2.5rem;
	color:#AF0202 !important;
}
.empty-day {
	background-color: #f7efef !important;*/
	/* border-color: #fff !important; */
	/*height: 100%;
	width: 100%;
	border-radius: 5px;
}
@media (min-width: 992px) {	
	.seven-cols .col-lg-1 {
	  	width: 14.285714285714285714285714285714%;
	  	*width: 14.285714285714285714285714285714%;
	  	max-width: 14.285714285714285714285714285714% !important;
		flex:none !important;
	}
}
*/
/* The Sports Club */
.sports-promo-box{
	/*background-color: rgba(0,0,0,0.7);*/
	background-color: #f47722;
	border-radius: .25rem;
}
.promo-light {
    background-color: #fff !important;
}
.sports-promo-disclaimer {
	font-size: .7rem;
}
.badge-construction {
    color: #212529;
    background-color: #f47722;
}
.beer-special {
	border-top:8px solid #343a40;
	border-bottom:8px solid #343a40;
	background-color: rgba(255,193,7,0.1);
}
@media (min-width: 992px) { 
	.beer-menu-bg {
		background: url('../images/the-sports-club/beer2.jpg') left/contain no-repeat, url('../images/the-sports-club/beer3.jpg') right/contain no-repeat;
	}
	.food-menu-bg {
		background: url('../images/the-sports-club/food-at-the-sports-club.jpg') left/contain no-repeat, url('../images/the-sports-club/beer-at-the-sports-club.jpg') right/contain no-repeat;
	}
}
/* Simulcasting */
.dark-bgrd {
	background-image: url('../images/patterns/waves-dark.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.simulcast-details {
	background-color: #094523;
	color: #fff !important;
}
@media (min-width: 992px) {

	.process-steps li::before,
	.process-steps li::after {
		border-top: 2px dotted #E4002B;
	}
}
.steps-btn {
	color: #E4002B !important;
	border-color: #E4002B !important;
	cursor: default !important;
}
.steps-btn:hover {
	text-decoration: none !important;
	color: #fff !important;
	background-color: #E4002B !important;
	border-color: #E4002B !important;
}

/* Entertainment */
.opening-act {
	text-transform: uppercase;
	padding: 0px;
	margin: 0px;
}
.featured-event-bgrd {
	background-image: url('../images/entertainment/featured_event_bgrd.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
.featured-event-title {
	text-shadow: 0px 0px 5px rgb(235, 217, 217);
}
.small-border-division {
	width: 60px;
	height: 2px;
	border-bottom: 2px solid #999;
}

/* Press Release */
.entry-title h2 a, .entry-title h3 a, .entry-title h4 a {
    color: #e4002b !important;
}
.entry-meta li, .entry-meta a:not(:hover) {
    color: #555;
}
/*.sidebar {
	border-left: 1px solid #e4002b;
}*/
.tagcloud a:hover {
    border-color: #e4002b !important;
    color: #e4002b !important;
}

/* Visit Us */
.fbox-icon i {
	font-size: 2.75rem !important;
}

/* Careers */
.title-bottom-border h1, .title-bottom-border h2, .title-bottom-border h3, .title-bottom-border h4, .title-bottom-border h5, .title-bottom-border h6 {
    border-bottom: 2px solid #555 !important;
}

/* Sitemap */
.mcc-sitemap {
	/* border-left: 5px solid #999; */
}
.mcc-sitemap li a {
	font-weight: normal !important;
	color:#555 !important;
}

/* Error pages */
.error404 {
    color: #e4002b !important;
}

/* Footer */
.footer-big-contacts span {
	text-transform: uppercase;
	font-size: .8rem;
}
.hours-and-phone {
	font-size: .8rem;
}
.breadcrumb-footer {
    background-color: transparent !important;
    padding: 0 !important;
    font-size: 90%;
}


/*Thalia's Helpers*/


/* Font Sizes
------------------------------------
*/
.small-text {
  font-size: 9px !important;
}
.normal-text {
  font-size: 13px !important;
}
.large-text {
  font-size: 20px !important;
}
.fs-10 {
  font-size: 10px !important;
}
.fs-11 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-13 {
  font-size: 13px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}

/* Line-heights
------------------------------------
*/

.lh-normal {
  line-height: normal;
}
.lh-10 {
  line-height: 10px;
}
.lh-11 {
  line-height: 11px;
}
.lh-12 {
  line-height: 12px;
}
.lh-13 {
  line-height: 13px;
}
.lh-14 {
  line-height: 14px;
}
.lh-15 {
  line-height: 15px;
}
.lh-16 {
  line-height: 16px;
}
.lh-30 {
  line-height: 30px;
}

/* Font Weights
------------------------------------
 */

.normal {
  font-weight: normal;
}
.semi-bold {
  font-weight: 400 !important;
}
.bold {
  font-weight: bold !important;
}
.light {
  font-weight: 300 !important;
}

/* Monochrome Colors
------------------------------------
 */

.bg-master {
  background-color: #7a8994;
}
.bg-master-light {
  background-color: #eaecee;
}
.bg-master-lighter {
  background-color: #f2f4f5;
}
.bg-master-lightest {
  background-color: #f6f9fa;
}
.bg-master-dark {
  background-color: #373e43;
}
.bg-master-darker {
  background-color: #212528;
}
.bg-master-darkest {
  background-color: #16191b;
}

/* Contextual Colors
------------------------------------
*/

/* Primary
------------------------------------
*/

.bg-primary {
  background-color: #007be8 !important;
}
.bg-primary-dark {
  background-color: #0064bc;
}
.bg-primary-darker {
  background-color: #004a8b;
}
.bg-primary-light {
  background-color: #3395ed;
}
.bg-primary-lighter {
  background-color: #cce5fa;
}

/* Complete
------------------------------------
*/

.bg-complete {
  background-color: #00e8ba;
}
.bg-complete-dark {
  background-color: #00bc97;
}
.bg-complete-darker {
  background-color: #008b70;
}
.bg-complete-light {
  background-color: #33edc8;
}
.bg-complete-lighter {
  background-color: #ccfaf1;
}

/* Success
------------------------------------
*/

.bg-success {
  background-color: #007be8 !important;
}
.bg-success-dark {
  background-color: #0064bc;
}
.bg-success-darker {
  background-color: #004a8b;
}
.bg-success-light {
  background-color: #3395ed;
}
.bg-success-lighter {
  background-color: #cce5fa;
}

/* Info
------------------------------------
*/

.bg-info {
  background-color: #47525e !important;
}
.bg-info-dark {
  background-color: #3a424c;
}
.bg-info-darker {
  background-color: #2b3138;
}
.bg-info-light {
  background-color: #6c757e;
}
.bg-info-lighter {
  background-color: #dadcdf;
}

/* Danger
------------------------------------
*/

.bg-danger {
  background-color: #e4002b !important;
}
.bg-danger-dark {
  background-color: #be2444;
}
.bg-danger-darker {
  background-color: #8c1a32;
}
.bg-danger-light {
  background-color: #ee5676;
}
.bg-danger-lighter {
  background-color: #fbd5dd;
}

/* Warning
------------------------------------
 */

.bg-warning {
  background-color: #ffc107 !important;
}
.bg-warning-dark {
  background-color: #ceae59;
}
.bg-warning-darker {
  background-color: #988142;
}
.bg-warning-light {
  background-color: #fedf8b;
}
.bg-warning-lighter {
  background-color: #fff7e2;
}

/* More Color Options
------------------------------------
*/

/* Menu
------------------------------------
*/

.bg-menu-dark {
  background-color: #000;
}
.bg-menu {
  background-color: #555;
}
.bg-menu-light {
  background-color: #627182;
}

/* Gradients
------------------------------------
*/

.gradient-grey {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
}
.gradient-black {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
}

/* Other Colors
------------------------------------
*/

.bg-white {
  background-color: #fff;
}
.bg-transparent {
  background-color: transparent !important;
}

/* Text Colors */

.link {
  opacity: .7;
}
.link:hover {
  opacity: 1;
}
.text-master {
  color: #495965 !important;
}
.text-master-light {
  color: #eaecee !important;
}
.text-black {
  color: #373e43 !important;
}
.text-white {
  color: #fff !important;
}
.text-red {
  color: #e4002B !important;
}
.text-complete {
  color: #00e8ba !important;
}
.text-success {
  color: #007be8 !important;
}
.text-info {
  color: #47525e !important;
}
.text-warning {
  color: #fed76e !important;
}
.text-warning-dark {
  color: #ceae59 !important;
}
.text-danger {
  color: #e4002b !important;
}
.text-primary {
  color: #007be8 !important;
}

/* Text Aligngments
------------------------------------
*/

.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}

/* Overides
------------------------------------
*/

.no-padding {
  padding: 0px !important;
}
.no-margin {
  margin: 0px !important;
}
.no-overflow {
  overflow: hidden !important;
}
.auto-overflow {
  overflow: auto !important;
}
.reset-overflow {
  overflow: initial !important;
}
.center-margin {
  margin-left: auto;
  margin-right: auto;
}
.inherit-size {
  width: inherit;
  height: inherit;
}
.inherit-height {
  height: inherit;
}
.image-responsive-height {
  width: 100%;
}
.image-responsive-width {
  height: 100%;
}
.overlayer {
  position: absolute;
  display: block;
  z-index: 21;
}
.overlayer.fullwidth {
  width: 100%;
}
.overlayer-wrapper {
  position: relative;
  display: block;
  z-index: 10;
}
.overlay-fixed {
  position: fixed !important;
  top: auto !important;
}
.top-left {
  position: absolute !important;
  top: 0;
  left: 0;
}
.top-right {
  position: absolute !important;
  top: 1px;
  right: 0;
}
.bottom-left {
  position: absolute !important;
  bottom: 1px;
  left: 0;
}
.bottom-right {
  position: absolute !important;
  bottom: 0;
  right: 0;
}
.pull-bottom {
  position: absolute !important;
  bottom: 0;
}
.pull-up {
  position: absolute !important;
  top: 0;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.pull-center {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  display: table;
  z-index: 1;
}
.cursor {
  cursor: pointer;
}
.scroll-x-hidden {
  overflow-x: hidden !important;
}

/* Generic Padding Helpers
------------------------------------
*/

.p-t-0 {
  padding-top: 0px !important;
}
.p-r-0 {
  padding-right: 0px !important;
}
.p-l-0 {
  padding-left: 0px !important;
}
.p-b-0 {
  padding-bottom: 0px !important;
}
.padding-0 {
  padding: 0px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-r-5 {
  padding-right: 5px !important;
}
.p-l-5 {
  padding-left: 5px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.padding-5 {
  padding: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.padding-10 {
  padding: 10px !important;
}
.p-t-15 {
  padding-top: 15px !important;
}
.p-r-15 {
  padding-right: 15px !important;
}
.p-l-15 {
  padding-left: 15px !important;
}
.p-b-15 {
  padding-bottom: 15px !important;
}
.padding-15 {
  padding: 15px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-r-20 {
  padding-right: 20px !important;
}
.p-l-20 {
  padding-left: 20px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.padding-20 {
  padding: 20px !important;
}
.p-t-25 {
  padding-top: 25px !important;
}
.p-r-25 {
  padding-right: 25px !important;
}
.p-l-25 {
  padding-left: 25px !important;
}
.p-b-25 {
  padding-bottom: 25px !important;
}
.padding-25 {
  padding: 25px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-r-30 {
  padding-right: 30px !important;
}
.p-l-30 {
  padding-left: 30px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.padding-30 {
  padding: 30px !important;
}
.p-t-35 {
  padding-top: 35px !important;
}
.p-r-35 {
  padding-right: 35px !important;
}
.p-l-35 {
  padding-left: 35px !important;
}
.p-b-35 {
  padding-bottom: 35px !important;
}
.padding-35 {
  padding: 35px !important;
}
.p-t-40 {
  padding-top: 40px !important;
}
.p-r-40 {
  padding-right: 40px !important;
}
.p-l-40 {
  padding-left: 40px !important;
}
.p-b-40 {
  padding-bottom: 40px !important;
}
.padding-40 {
  padding: 40px !important;
}
.p-t-45 {
  padding-top: 45px !important;
}
.p-r-45 {
  padding-right: 45px !important;
}
.p-l-45 {
  padding-left: 45px !important;
}
.p-b-45 {
  padding-bottom: 45px !important;
}
.padding-45 {
  padding: 45px !important;
}
.p-t-50 {
  padding-top: 50px !important;
}
.p-r-50 {
  padding-right: 50px !important;
}
.p-l-50 {
  padding-left: 50px !important;
}
.p-b-50 {
  padding-bottom: 50px !important;
}
.padding-50 {
  padding: 50px !important;
}

/* Generic Margin Helpers
------------------------------------
 */

.m-t-0 {
  margin-top: 0px;
}
.m-r-0 {
  margin-right: 0px;
}
.m-l-0 {
  margin-left: 0px;
}
.m-b-0 {
  margin-bottom: 0px;
}
.m-t-5 {
  margin-top: 5px;
}
.m-r-5 {
  margin-right: 5px;
}
.m-l-5 {
  margin-left: 5px;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-t-10 {
  margin-top: 10px;
}
.m-r-10 {
  margin-right: 10px;
}
.m-l-10 {
  margin-left: 10px;
}
.m-b-10 {
  margin-bottom: 10px;
}
.m-t-15 {
  margin-top: 15px;
}
.m-r-15 {
  margin-right: 15px;
}
.m-l-15 {
  margin-left: 15px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-t-20 {
  margin-top: 20px;
}
.m-r-20 {
  margin-right: 20px;
}
.m-l-20 {
  margin-left: 20px;
}
.m-b-20 {
  margin-bottom: 20px;
}
.m-t-25 {
  margin-top: 25px;
}
.m-r-25 {
  margin-right: 25px;
}
.m-l-25 {
  margin-left: 25px;
}
.m-b-25 {
  margin-bottom: 25px;
}
.m-t-30 {
  margin-top: 30px;
}
.m-r-30 {
  margin-right: 30px;
}
.m-l-30 {
  margin-left: 30px;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-t-35 {
  margin-top: 35px;
}
.m-r-35 {
  margin-right: 35px;
}
.m-l-35 {
  margin-left: 35px;
}
.m-b-35 {
  margin-bottom: 35px;
}
.m-t-40 {
  margin-top: 40px;
}
.m-r-40 {
  margin-right: 40px;
}
.m-l-40 {
  margin-left: 40px;
}
.m-b-40 {
  margin-bottom: 40px;
}
.m-t-45 {
  margin-top: 45px;
}
.m-r-45 {
  margin-right: 45px;
}
.m-l-45 {
  margin-left: 45px;
}
.m-b-45 {
  margin-bottom: 45px;
}
.m-t-50 {
  margin-top: 50px;
}
.m-r-50 {
  margin-right: 50px;
}
.m-l-50 {
  margin-left: 50px;
}
.m-b-50 {
  margin-bottom: 50px;
}

/* Border Helpers
------------------------------------
*/
.b-l-none {
  border-left: hidden;
}
.b-r-none {
  border-right: hidden;
}
.b-t-none {
  border-top: hidden;
}
.b-b-none {
  border-bottom: hidden;
}
.b-a,
.b-r,
.b-l,
.b-t,
.b-b {
  border-style: solid;
  border-width: 0;
}
.b-r {
  border-right-width: 1px;
}
.b-l {
  border-left-width: 1px;
}
.b-l-10 {
  border-left-width: 10px;
}
.b-t {
  border-top-width: 1px;
}
.b-b {
  border-bottom-width: 1px;
}
.b-a {
  border-width: 1px;
}
.b-b-style {
  border-bottom: solid #e4002b 3px;
}
.b-dashed {
  border-style: dashed;
}
.b-thick {
  border-width: 2px;
}
.b-transparent {
  border-color: rgba(0, 0, 0, 0.4);
}
.b-transparent-white {
  border-color: rgba(255, 255, 255, 0.3);
}
.b-grey {
  border-color: #eaecee;
}
.b-white {
  border-color: #fff;
}
.b-primary {
  border-color: #007be8;
}
.b-complete {
  border-color: #007be8;
}
.b-success {
  border-color: #007be8;
}
.b-info {
  border-color: #47525e;
}
.b-danger {
  border-color: #e4002b;
}
.b-warning {
  border-color: #fed76e;
}

/* Border Radius
------------------------------------
*/

.b-rad-sm {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.b-rad-md {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;	
}
.b-rad-lg {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;	
}
.no-border {
  border: none !important;
}

/* Buttons
------------------------------------
*/

.button.button-border {
    color: #e4002b !important;
}

.button.button-border:hover {
    color: #ffffff !important;
}
.button.button-white {
    background-color: #ffffff !important;
}
.button.button-white:not(.button-fill):hover {
    background-color: #e4002b !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2) !important;
}

/* Misc
------------------------------------
*/
kbd {
    padding: 0.2rem 0.4rem !important;  
    background-color: #e4002b !important;
}
.no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.flex-stretch {
	display: flex;
	width: 100%;
}
.stretch {
	flex: 1;
}
.all-caps {
  text-transform: uppercase;
}
.underline {
  text-decoration: underline;
}
.muted {
  color: #ffffff;
}
.hint-text {
  opacity: .7;
}
.no-decoration {
  text-decoration: none !important;
}
.full-height {
  height: 100% !important;
}
.full-width {
  width: 100%;
}
.hide {
  display: none !important;
}
.inline {
  display: inline !important;
}
.inline-block {
	float: none !important;
	display: inline-block !important;
}
.block {
  display: block !important;
}
.b-blank {
  border-color: #000;
}
.v-align-bottom {
  vertical-align: bottom !important;
}
.v-align-top {
  vertical-align: top !important;
}
.v-align-middle {
  vertical-align: middle !important;
}
/* vertical alignment styles */
.col-top {
  vertical-align: top !important;
}
.col-middle {
  vertical-align: middle !important;
}
.col-bottom {
  vertical-align: bottom !important;
}

/* Fix Accessibility Issues */
#top-bar {
    background-color: #f7f7f7 !important;
}
.button.button-border:focus:not(:focus-visible) {
    border: 2px solid #444 !important;
}

/* Custom rules to make homepage banner responsive */

/* For sm devices */
.min-vh-35 {
	min-height: 35vh !important;
}
/*For landscape modes*/
@media only screen and (orientation: landscape) {
  .min-vh-35 {
   min-height: 80vh !important;
  }
}

/* For iphone X and iphone 12 Pro Max */
@media (max-width: 428px) {
	
	.min-vh-35 {
   min-height: 30vh !important;
  }
}

/* For iphone 12 Pro Max */
@media only screen and (width: 926px) {
	
	.min-vh-35 {
   min-height: 100vh !important;
  }
}

/* For iphone X */
@media only screen and (width: 812px) {
	
	.min-vh-35 {
   min-height: 100vh !important;
  }
}

/* For ipad Pro */
@media only screen and (width: 1366px) {
	
	.min-vh-lg-100 {
   min-height: 80vh !important;
  }
}


 /* Force table to not be like tables anymore */
@media (min-width: 992px) {	
	
  .table-responsive-block table,
  .table-responsive-block thead,
  .table-responsive-block tbody,
  .table-responsive-block tfoot,
  .table-responsive-block th,
  .table-responsive-block td,
  .table-responsive-block tr {
    display: block;
  }
  .table-responsive-block thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table-responsive-block tr {
    border: 1px solid rgba(230, 230, 230, 0.7);
    margin-bottom: 15px;
  }
  .table-responsive-block td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    white-space: normal;
    text-align: left;
  }
  .table-responsive-block td:last-child {
    border-bottom: 0;
  }
  .table-responsive-block td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    /*top: 6px;*/
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  .table-responsive-block td:before {
    content: attr(data-title);
  }
	
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

