/*
Implementation Skeleton v3 - 12/6/18
Add styles to overwrite customer CSS and global oustyles CSS. USE WITH CAUTION.
*/

.two-column {
	column-count: 2;
}


/*
Accommodate the site exit button
*/
.escape .container {
				padding-left: 0px;
				padding-right: 0px;
			}
			
			.escape button {
				color: #ffffff;
				width: 100%;
				padding: 15px 0;
				background: #a6192e;
				border: none;
				transition: ease-in-out 0.3s;
			}
			.escape p {	
				position: fixed;
				z-index: 100;
				bottom: 0;
				width: 100%;
				background: #a6192e;
				text-align: center;
				margin: 0px;
			}
			
			@media (min-width: 1025px) {
				.escape {
					background: #a6192e;
				}
			}
			
			@media (min-width: 700px) {
				.escape p {
					position: fixed;
					z-index: 100;		
					text-align: center;
					right: 0px;
					bottom: 50px;
					width: 150px;
					padding: 0px;
					margin: 0px auto;
				}
			}
			@media (min-width: 700px) {
				.escape button {
					position: fixed;
					z-index: 100;		
					text-align: center;
					right: 0px;
					bottom: 50px;
					width: 150px;
					padding: 15px 0;
					margin: 0px auto;
				}
			}
			.escape button:hover {
				background-color: #f2f2f2;
				color: #000000;
				border: none;
			}
			
			.escape p:hover {
				background-color: #f2f2f2;
				color: #000000;
				border: none;
			}

			.centers-section {
				margin-bottom: 100px;
			}
			.footer {
				padding-bottom: 120px;
			}
			@media (min-width: 700px) {
				.footer {
					padding-bottom: 42px;
				}
			}
			@media (min-width: 1025px) {
				.footer {
					padding-bottom: 42px;
				}
			}
/*
End site exit button
*/