/*
	Download Button
*/


.bm-button-blue {
	background-color: DodgerBlue;
	border: none;
	color: white;
	padding: 12px 30px;
	cursor: pointer;
	font-size: 20px;
}


/* Darker background on mouse-over */
.bm-button-blue:hover {
	background-color: RoyalBlue;
}


/* Style buttons */
.bm-button-orange {
	background-color: #F2AF00;
	border: 1px solid #000000;
	color: #ffffff;
	padding: 8px 30px; // 12
	cursor: pointer;
	font-size: 16px; // 20
}


/* Background on mouse-over */
.bm-button-orange:hover {
	background-color: #000000;
	color: #ffffff;
}


/* Animated button */
.bm-button-download {
	display: inline-block;
	position: relative;
	padding: 10px 20px; 
	background-color: #4CC713;
	color: #ffffff;
  	text-decoration: none;
	font-family: sans-serif;
	font-size: 1.1em; // 0.9
	text-align: center;
	text-indent: 15px;
}

.bm-button-download:hover {
	background-color: #333;
	color: white;
	text-decoration: none; 
}

.bm-button-download:before, .bm-button-download:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 15px;
	top: 52%;
}

/* Download box shape  */
.bm-button-download:before {
	width: 10px;
	height: 2px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.bm-button-download:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 2s linear infinite;
	animation-play-state: paused;
}

.bm-button-download:hover:before {
	border-color: #4CC713;
	color: #ffffff;
}

.bm-button-download:hover:after {
	border-top-color: #4CC713;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}


/* Pulsating button */
.bm-container {
	height: 100%;
	margin: 0 auto 0;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	padding: 45px;
	text-align: center;
}


.bm-pulse-button {
	// position: relative;
	// margin: 0 auto;
	// display: block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 15px; // 16
	font-family: 'Trebuchet MS', sans-serif;
	text-transform: uppercase;
	// text-align: center;
	// color: white;
	border: none;
	border-radius: 50%;
	// background: #FF8040; // #F0F0F0; // #7950f2;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(255, 128, 64, 0.5); // rgba(122, 122, 122, 0.5);
	-webkit-animation: pulse 3s infinite;
}


.bm-pulse-button:hover {
	-webkit-animation: none;
}

@-webkit-keyframes pulse {
	0% {
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	70% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
		box-shadow: 0 0 0 50px rgba(121, 80, 242, 0);
	}
	100% {
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(121, 80, 242, 0);
	}
}


/* Mail forms */

* {
	box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.tpl3_column {
	float: left;
	width: 33.33%;
	padding: 25px 25px 5px 25px;
}


/* Clear floats after the columns */
.tpl3_row:after {
	content: "";
	display: table;
	clear: both;
}


/* Responsive layout */
@media (max-width: 768px) {
	.tpl3_column {
		width: 100%;
		// padding: 25px 12px 5px 12px;
		padding: 5px 5px 5px 5px;
		// margin-top: 15px;
		// margin-bottom: 15px;
	}

	.tpl3_column p {
		margin-top: 2px;
		margin-bottom: 2px;
	}
}


/* Calendar (Mailing List) */

/* Create three equal columns that floats next to each other */
.calendar-date-column {
	float: left;
	width: 50%;
	-webkit-appearance: menulist-button;
	height: 30px;
	margin-top: 5px;
	//margin-bottom: 20px;
	line-height: 100%;
	-webkit-box-sizing: padding-box;
	-moz-box-sizing: padding-box;
	box-sizing: padding-box;
	padding: 25px 25px 25px 25px;
	line-height:normal;
	padding:3px;
}

.calendar-time-column {
	float: left;
	width: 50%;
	-webkit-appearance: menulist-button;
	height: 30px;
	margin-top: 5px;
	//margin-bottom: 20px;
	line-height: 100%;
	-webkit-box-sizing: padding-box;
	-moz-box-sizing: padding-box;
	box-sizing: padding-box;
	padding: 25px 25px 25px 25px;
	line-height:normal;
	padding:3px;
}

/* Responsive layout */
@media (max-width: 768px) {
	.calendar-date-column {
		width: 100%;
		padding: 5px 5px 5px 5px;
		margin-bottom: 10px;
 	}

	.calendar-time-column {
		width: 100%;
		padding: 5px 5px 5px 5px;
		margin-bottom: 25px;
	}
}


/* Mail blind */

.hidden { 
	display: none; 
}

.unhidden { 
	display: block; 
}

/* Landing Pages (Two Basic Columns) */

* {
	box-sizing: border-box;
}

.bm-landing-column {
	float: left;
	width: 50%;
	padding: 10px;
}

.bm-landing-row:after {
	content: "";
	display: table;
	clear: both;
}

@media screen and (max-width: 600px) {
	.bm-landing-column {
		width: 100%;
	}
}

.stm-navigation {
	z-index: 1000;
}

.stm-header {
	z-index: 1000;
}

.wrapper {
	z-index: 1000;
}

.tm-header__cell {
	z-index: 1000;
}


/* Three columns side by side */
.column-profile {
	float: left;
	width: 33.3%;
	margin-bottom: 16px;
	padding: 0 8px;
}

@media screen and (max-width: 650px) {
	.column-profile {
		width: 100%;
		display: block;
	}
}


/* Three vertical columns */
.card-profile {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.container-profile {
	padding: 0 16px;
}

/* Clear floats */
.container-profile::after, .row::after {
	content: "";
	clear: both;
	display: table;
}

.title-profile {
	color: grey;
}

.button-profile {
	border: none;
	outline: 0;
	display: inline-block;
	padding: 8px;
	color: white;
	background-color: #000;
	text-align: center;
	cursor: pointer;
	width: 100%;
}

.button-profile:hover {
	background-color: #555;
}

/*
	Download Button
*/


.bm-button-blue {
	background-color: DodgerBlue;
	border: none;
	color: white;
	padding: 12px 30px;
	cursor: pointer;
	font-size: 20px;
}

/* Darker background on mouse-over */
.bm-button-blue:hover {
	background-color: RoyalBlue;
}


/* Style buttons */
.bm-button-orange {
	background-color: #F2AF00;
	border: 1px solid #000000;
	color: #ffffff;
	padding: 8px 30px; // 12
	cursor: pointer;
	font-size: 16px; // 20
}

/* Background on mouse-over */
.bm-button-orange:hover {
	background-color: #000000;
	color: #ffffff;
}

/* Animated button */

.bm-button-download {
	display: inline-block;
	position: relative;
	padding: 10px 20px; 
	background-color: #4CC713;
	color: #ffffff;
  	text-decoration: none;
	font-family: sans-serif;
	font-size: 1.1em; // 0.9
	text-align: center;
	text-indent: 15px;
}

.bm-button-download:hover {
	background-color: #333;
	color: white;
	text-decoration: none; 
}

.bm-button-download:before, .bm-button-download:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 15px;
	top: 52%;
}

/* Download box shape  */
.bm-button-download:before {
	width: 10px;
	height: 2px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.bm-button-download:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 2s linear infinite;
	animation-play-state: paused;
}

.bm-button-download:hover:before {
	border-color: #4CC713;
	color: #ffffff;
}

.bm-button-download:hover:after {
	border-top-color: #4CC713;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}

/* Pulsating button */
.bm-container {
	height: 100%;
	margin: 0 auto 0;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	padding: 45px;
	text-align: center;
}

.bm-pulse-button {
	position: relative;
	margin: 0 auto;
	display: block;
	width: 80px;
	height: 80px;
	font-size: 35px; // 16
	font-family: 'Trebuchet MS', sans-serif;
	text-transform: uppercase;
	text-align: center;
	line-height: 80px;
	color: white;
	border: none;
	border-radius: 50%;
	background: #FF8040; // #F0F0F0; // #7950f2;
	cursor: pointer;
	box-shadow: 0 0 0 0 rgba(255, 128, 64, 0.5); // rgba(122, 122, 122, 0.5);
	-webkit-animation: pulse 3s infinite;
}

.bm-pulse-button:hover {
	-webkit-animation: none;
}

@-webkit-keyframes pulse {
	0% {
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	70% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
		box-shadow: 0 0 0 50px rgba(121, 80, 242, 0);
	}
	100% {
 		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(121, 80, 242, 0);
	}
}


/* Basic Landing Pages */

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bm-lp-parent { 
	padding: 10px;    
}  

.bm-lp-parent:after {
	clear: both;
	content: "";
	display: block;
}
    
.bm-lp-column {
	display: block;
	float: left;
	width: 50%;
	color: #000000;
	padding: 10px;
	font-family: Arial;
	font-size: 1.2em;
}

@media only screen and (min-width: 641px) {
	.bm-lp-column {
		width: 50%;
	}
}

@media only screen and (min-width: 1025px) {
	.bm-lp-left {
		width: 50%;
	}
	.bm-lp-right {
		width: 50%;
	}
}


/* Basic Four Columns */

.four-column {
	float: left;
	width: 25%;
	padding: 10px;
}

.four-row:after {
	content: "";
	display: table;
	clear: both;
}


@media screen and (max-width: 600px) {
	.four-column {
 		width: 100%;
	}
}


/*
	Bank Widget
*/


.bank-four {
    width: 21%;
    float: left;
    margin-right: 4%;
}

.bank-four:last-child {
    margin-right: 0;
}

.clear {
    clear: both;
}


@media screen and (max-width : 768px) {
    .bank-four {
		width: 50%;
		float: left;
		margin-right: 0;
		padding: 15px;
	}
}

@media screen and (max-width : 480px) {
    .bank-four {
		width: 100%;
		float: none;
		padding: 15px 0;
	}
}


/*
	Basic Accordion
*/

#accordion-container {
    margin: 0 auto;
    width: 50%;
}

#accordion input {
	display: none;
}
#accordion label {
	background: #eee;
	border-radius: .25em;
	cursor: pointer;
	display: block;
	margin-bottom: .125em;
	padding: .25em 1em;
	z-index: 20;
}
#accordion label:hover {
	background: #ccc;
}

#accordion input:checked + label {
	background: #ccc;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: white;
	margin-bottom: 0;
}
#accordion article {
	background: #f7f7f7;
	height:0px;
	overflow:hidden;
	z-index:10;
}
#accordion article p {
	padding: 1em;
}
#accordion input:checked article {
}
#accordion input:checked ~ article {
	border-bottom-left-radius: .25em;
	border-bottom-right-radius: .25em;
	height: auto;
	margin-bottom: .125em;
}


.primaryColumn {
	float: left;
	width: 50%;
}
	
/* Clear floats after the columns */
.primaryRow:after {
	content: "";
	display: table;
	clear: both;
}
	
@media screen and (max-width: 768px) {
	.primaryColumn {
		width: 100%;
	}
}


#columns-holder {
	-moz-columns: 60px;
	-webkit-columns: 60px;
	columns: 60px;
	text-align: center;
	-moz-column-gap: 3px;
	-webkit-column-gap: 3px;
	column-gap: 3px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
}

.column-box {
	width: 60px;
	margin-bottom: 3px;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	text-align: center;
	font-size: 0.9em;
	break-inside: avoid;
}

details {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 0.5em 0.5em 0;
}

summary {
	font-weight: bold;
	margin: -0.5em 1.0em 0;
	padding: 0.5em;
}

details[open] {
	padding: 0.5em;
}

details[open] summary {
	border-bottom: 1px solid #aaa;
	margin-bottom: 0.5em;
}

details .text {	
	margin-left: 20px;
	font-weight: normal;
	font-size: 0.9em;
	margin-top: 15px;
	line-height: 1.1;
}

.comment-form .required{
	display:none;
}

.comment-form .required-field-message{
	display: none;
}


/*
	Address Autocomplete Dropdown
*/


.bm-address-dropdown {
	position: absolute;
	border: 1px solid #ccc;
	max-height: 200px;
	overflow-y: auto;
	background-color: white;
	display: none;
}

.bm-address-dropdown div {
	padding: 10px;
	cursor: pointer;
}

.bm-address-dropdown div:hover {
	background-color: #f0f0f0;
}


/*
	Address Search
*/


.search-address-wrapper {
	position: relative;
}

.search-address-wrapper i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	padding-left: 12px;
	z-index: 1;
}

#bm_address_search {
	padding-left: 50px;
	background: #FCFCFC;
	font-weight: 700;
}


/*
	Website Search
*/


.search-website-wrapper i {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	padding-left: 12px;
	z-index: 1;
}

.bm-search-dropdown {
	position: absolute;
	border: 1px solid #ccc;
	max-height: 200px;
	overflow-y: auto;
	background-color: white;
	display: none;
}

.bm-search-dropdown div {
	padding: 10px;
	cursor: pointer;
}

.bm-search-dropdown div:hover {
	background-color: #f0f0f0;
}


/*
	Password Wrapper
*/


.password-wrapper {
	display: flex;
	width: 100%;
}

.bm-login-wrapper {
	display: flex;
	width: 100%;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
	width: 100%;
	padding-right: 45px;
	padding-left: 35px;
}

.bm-login-wrapper input[type="text"] {
	width: 100%;
	padding-left: 35px;
}

.password-wrapper .toggle-password {
	background: #E5E5E5; /* #f1f1f1 */
	border: 1px solid #ccc; /* Border around the icon */
	padding: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bm-login-wrapper .field-icon {
	background: #E5E5E5; // #E5E5E5#f1f1f1
	border: 1px solid #ccc; /* Border around the icon */
	padding: 10px;
	width: 45px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bm-login-wrapper .field-icon .i {
	color: #ffffff;
	font-size: 0.9em;
}

.password-wrapper .password-icon {
	background: #E5E5E5; // #E5E5E5
	color: #ffffff;
	border: 1px solid #ccc; /* Border around the icon */
	padding: 10px;
	font-size: 0.9em;
	width: 45px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}