.msp-inherit-color * {
  color: inherit !important;
}

.msp-quote {
  padding-left: 40px;
  background-image: url('../images/quote-white.png');
  background-repeat: no-repeat;
  background-size: 30px;
}

@media (min-width: 960px) {
  .msp-quote p {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .msp-quote p {
    font-size: 1.15rem;
  }
}

@media (min-width: 1400px) {
  .msp-quote p {
    font-size: 1.3rem;
  }
}




/* Offcanvas */

.offcanvas {
	position: fixed;
	bottom: 0;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	visibility: hidden;
	background-color: #fff;
	background-clip: padding-box;
	outline: 0;
	transition: transform 0.3s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.offcanvas {
		transition: none
	}
}

.offcanvas-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1rem
}

.offcanvas-header .btn-close {
	padding: 0.5rem 0.5rem;
	margin: -0.5rem -0.5rem -0.5rem auto
}

.offcanvas-title {
	margin-bottom: 0;
	line-height: 1.5
}

.offcanvas-body {
	flex-grow: 1;
	padding: 1rem 1rem;
	overflow-y: auto
}

.offcanvas-start {
	top: 0;
	left: 0;
	width: 300px;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	transform: translateX(-100%)
}

.offcanvas-end {
	top: 0;
	right: 0;
	width: 300px;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	transform: translateX(100%)
}

.offcanvas-top {
	top: 0;
	right: 0;
	left: 0;
	height: 30vh;
	max-height: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	transform: translateY(-100%)
}

.offcanvas-bottom {
	right: 0;
	left: 0;
	height: 30vh;
	max-height: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	transform: translateY(100%)
}

.offcanvas.show {
	transform: none
}


/* Contact Tab */

.contact-tab-container {
	position: sticky;
	bottom: 50px;
	right: 0;
	margin-bottom: -20px;
	z-index: 1000;
}

#contact-tab {
	/* position: fixed;
	bottom: 50px;
	right: 10px;
	z-index: 1000; */
	position: absolute;
	right: 10px;
	bottom: 0;
	padding: 0.5rem 1rem;
	cursor: pointer;
	transition: all 250ms
}

#contact-tab:hover {
	opacity: 0.7;
	padding-bottom: 10px
}

#contact-tab .contact-tab-bubbletop {
	background-color: #dd3333;
	border-radius: 0.5rem
}

#contact-tab .contact-tab-bubbletop .tab-text {
	padding: 0.5rem 0;
	color: #fff;
	font-size: 1.25rem;
	user-select: none
}

@media (max-width:767.98px) {
	#contact-tab .contact-tab-bubbletop .tab-text {
		font-size: 0.8rem
	}
}

#contact-tab .contact-tab-bubblebottom {
	line-height: 0
}

#contact-tab .contact-tab-bubblebottom img {
	position: relative;
	left: 10%
}

@media (max-width:767.98px) {
	#contact-tab {
		padding: 0.25rem 0.75rem
	}
	#contact-tab .tab-text {
		font-size: 0.8rem
	}
}

.ball {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.25);
}

/* Images */

article .align_right {
	float: right;
	max-width: 100%;
	height: auto;
	padding: 0 0 1rem 1rem;
}

article .align_left {
	float: left;
	max-width: 100%;
	height: auto;
	padding: 0 1rem 1rem 0;
}

@media (max-width: 992px) {
	article .align_right,
	article .align_left {
			float: none;
			padding: 1rem 0;
	}

}