


/*
	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);
  }
}


/*
	Floating social buttons
	https://www.beliefmedia.com.au/floating-social-buttons
*/


.bm-social-wrapper {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.bmshare {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s linear;
}

.bmshared {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: no-drop;
  // transition: all 0.2s linear;
}

.bmshare .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 20px;
}

.bmshared .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #000;
  font-size: 20px;
}

.bmshare .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 20px;
}

.bmshared .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #000;
  font-size: 20px;
}

.bmshared.sharetitle {
  background: #F0F0F0;
  color: #000000;
}

.bmshare.facebook {
  background: #3b5998;
}

.bmshare.twitter {
  background: #55acee;
}

.bmshare.reddit {
  background: #ff4500;
}

.bmshare.google {
  background: #dd4b39;
}

.bmshare.linkedin {
  background: #0098B2;
}

.bmshare.whatsapp {
  background: #4dc247;
}

.bmshare.bmcontact {
  background: #FFB301;
}

.bmshare.bmphone {
  background: #4dc247;
}

.bmshare.wpcomments {
  background: #0073AA;
}

.bmshare:hover {
  width: 70px;
}

.bmcontainer {
  max-width: 700px;
  margin: 50px auto;
}

.bmcontainer h2 {
  margin-bottom: 20px;
  text-align: center;
}

.bmcontainer .section{
  margin-bottom: 15px;
  line-height: 22px;
}

@media only screen and (max-width : 1000px) {

  .bmshare {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s linear;
  }

  .bmshared {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: no-drop;
    transition: all 0.2s linear;
  }

  .bmshare .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 13px;
  }

  .bmshared .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #000;
    font-size: 10px;
  }

  .bmshare .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 13px;
  }

  .bmshared .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #000;
    font-size: 10px;
  }
}

@media only screen and (max-width : 768px) {
  .bm-social-wrapper {
     display:none;
  }
}


/*
	Post Share Icons
*/

.bm-social-wrapper-post {
  width: 1000px;
  max-width: 100%;
  padding: 10px 12px 10px 12px;
  border: 1px solid #000000;
  background: #ffff00;
  transform: translateY(-50%);
  line-height: 35px;
  display: table-cell;
  vertical-align: middle;
  position: relative;
}


.bmshare-post {
  width: 40px;
  height: 40px;
  float: left;
  cursor: pointer;
  transition: all 0.2s linear;
}

.bmshared-post {
  width: 40px;
  height: 40px;
  float: left;
  cursor: no-drop;
}

.bmshare-post .fa {
  float: left;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
  margin-left: 20px;
}

.bmshared-post .fa {
  transform: translate(-50%,-50%);
  float: left;
  color: #fff;
  font-size: 17px;
  margin-top: 20px;
  margin-left: 20px;
}

.bmshared-post.sharetitle {
  background: #F0F0F0;
  color: #000000;
}

.bmshared-post.share {
  background: #F0F0F0;
}

.bmshare-post.facebook {
  background: #3b5998;
}

.bmshare-post.twitter {
  background: #55acee;
}

.bmshare-post.reddit {
  background: #ff4500;
}

.bmshare-post.google {
  background: #dd4b39;
}

.bmshare-post.linkedin {
  background: #0098B2;
}

.bmshare-post.reddit {
  background: #FF4500;
}

.bmshare-post.tumblr {
  background: #529ECC;
}

.bmshare-post.whatsapp {
  background: #4dc247;
}

.bmshare-post.pinterest {
  background: #C6081C;
}

.bmshare-post.bmcontact {
  background: #FFB301;
}

.bmshare-post.bmphone {
  background: #4dc247;
}

.bmshare-post.wpcomments {
  background: #0073AA;
}

.bmshare-post:hover {
  width: 55px;
}


@media only screen and (max-width : 768px) {
  .bm-social-wrapper-post {
     // display:none;
    border: 0px;
    background: none;
  }
}

/* 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);
  }
}


/* Button link */

.buttonlink {
  background:none!important;
  border:none; 
  padding:0!important;
  font: inherit;
  color: #000000;
}