#dmnAuthButton {
  color: white;
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 200;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  letter-spacing: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  background-color: #00a7ee;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#dmnAuthButton .row{
	padding-top: .5rem;
	line-height:  2.2rem;
	font-size: 1rem;
}

#dmnAuthButton .row a{
	font-size: .8rem;
	padding: 0 1rem;
}

#dmnAuthButton .btn-text {
  z-index: 2;
  display: block;
  padding: 10px 20px;
  position: relative;
}
#dmnAuthButton .btn-text:hover {
  cursor: pointer;
}
#dmnAuthButton:after {
  top: -50%;
  z-index: 1;
  content: '';
  width: 150%;
  height: 200%;
  position: absolute;
  left: calc(-150% - 40px);
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: skewX(-40deg);
  -moz-transform: skewX(-40deg);
  -ms-transform: skewX(-40deg);
  -o-transform: skewX(-40deg);
  transform: skewX(-40deg);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#dmnAuthButton:hover {
  cursor: default;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
#dmnAuthButton:hover:after {
  -webkit-transform: translateX(100%) skewX(-30deg);
  -moz-transform: translateX(100%) skewX(-30deg);
  -ms-transform: translateX(100%) skewX(-30deg);
  -o-transform: translateX(100%) skewX(-30deg);
  transform: translateX(100%) skewX(-30deg);
}
#dmnAuthButton.active {
	position: fixed;
	z-index: 999999999;
	top:25%;
	left:25%;
	height: 50%;
	width: 50%;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#dmnAuthButton.active .modal {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#dmnAuthButton .modal {
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  /* padding: 20px; */
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: inherit;
  transform-origin: center center;
  background-image: linear-gradient(to top left, #00a7ee 10%, #55ccff 65%, white 200%);
  -webkit-transform: scale(0.0, 0.00001);
  -moz-transform: scale(0.0, 0.00001);
  -ms-transform: scale(0.0, 0.00001);
  -o-transform: scale(0.0, 0.00001);
  transform: scale(0.0, 0.00001);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#dmnAuthButton .close-button {
  top: 40px;
  right: 40px;
  position: absolute;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
#dmnAuthButton .close-button:hover {
  opacity: 0.5;
  cursor: pointer;
}

#dmnAuthButton .form-title {
  margin-bottom: 15px;
  text-align: center;
}

#dmnAuthButton .form-container{
  width: 50%
}


#dmnAuthButton form{
	width: 100%;	
}

#dmnAuthButton .auth-form-button {
  width: 90%;
  padding: 10px 5%;
  color: #00a7ee;
  margin-top: 10px;
  max-width: 400px;
  text-align: center;
  border: solid 1px white;
  background-color: white;
  -webkit-transition: color 0.2s ease-in, background-color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in, background-color 0.2s ease-in;
  -ms-transition: color 0.2s ease-in, background-color 0.2s ease-in;
  -o-transition: color 0.2s ease-in, background-color 0.2s ease-in;
  transition: color 0.2s ease-in, background-color 0.2s ease-in;
}
#dmnAuthButton .auth-form-button:hover {
  color: white;
  cursor: pointer;
  background-color: transparent;
}

#dmnAuthButton .input-group {
  width: 100%;
  font-size: 16px;
  max-width: 400px;
  padding-top: 20px;
  position: relative;
  margin-bottom: 15px;
}
#dmnAuthButton .input-group input {
  width: 100%;
  border: none;
  outline: none;
  padding: 5px 0;
  line-height: 1;
  font-size: 16px;
  font-family: 'Raleway';
  border-bottom: solid 1px;
  background-color: transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  -ms-transition: box-shadow 0.2s ease-in;
  -o-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
#dmnAuthButton .input-group input + label {
  left: 0;
  top: 20px;
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#dmnAuthButton .input-group input:focus {
  box-shadow: 0 1px 0 0 white;
}
#dmnAuthButton .input-group input:focus + label, #dmnAuthButton .input-group input.active + label {
  font-size: 12px;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
}


#dmnAuthButton a.useFacebook, #dmnAuthButton a.useTwitter{
	color:#fff;
	font-weight:700;
	display: inline-block;
	height: 2rem;
	padding-left: 2rem;
}

#dmnAuthButton a.useFacebook{
	background-color:#306199;
	background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTIwMCAzMzMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEyMDAgMzMzIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJMYXllcl8yIj4NCgk8cmVjdCBmaWxsPSIjM0I1NzlCIiB3aWR0aD0iMTIwMCIgaGVpZ2h0PSIzMzMiLz4NCjwvZz4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xODMuMSwyNDkuOGgtMzEuNHYtODMuMmgtMjF2LTI5aDIxdi0xNi42YzAtMjMuNCw2LjItMzcuNiwzMy45LTM3LjZoMjIuOHYyOWgtMTQuMg0KCWMtMTAuNSwwLTExLjEsNC4zLTExLjEsMTEuN3YxNC4yaDI1LjlsLTMuNywyOC40aC0yMi44TDE4My4xLDI0OS44TDE4My4xLDI0OS44eiIvPg0KPGcgaWQ9ImR2MExFSl8xXyIgZGlzcGxheT0ibm9uZSI+DQo8L2c+DQo8L3N2Zz4NCg==);
	background-size:cover;	
}

#dmnAuthButton a.useTwitter{
	background-color:#26c4f1;
	background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSItMTgwIDAgMTIwMCAzMzMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTE4MCAwIDEyMDAgMzMzIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxyZWN0IHg9Ii0xODAiIGZpbGw9IiM1NUFCRjEiIHdpZHRoPSIxMjAwIiBoZWlnaHQ9IjMzMyIvPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTc5LjYsMTA3LjljLTYuOCwzLjEtMTQuMiw0LjktMjIuMiw2LjJjOC00LjksMTQuMi0xMi4zLDE3LjMtMjEuNmMtNy40LDQuMy0xNiw3LjQtMjQuNyw5LjINCgljLTYuOC03LjQtMTcuMy0xMi4zLTI4LjQtMTIuM2MtMjEuNiwwLTM4LjksMTcuMy0zOC45LDM4LjhjMCwzLjEsMC42LDYuMiwxLjIsOC42Yy0zMi4xLTEuOC02MS0xNy4zLTgwLjItNDAuNw0KCWMtMy4xLDUuNS01LjUsMTIuMy01LjUsMTkuN2MwLDEzLjYsNi44LDI1LjMsMTcuMywzMi4xYy02LjIsMC0xMi4zLTEuOS0xNy45LTQuOXYwLjZjMCwxOS4xLDEzLjYsMzQuNSwzMS40LDM4LjINCgljLTMuMSwwLjYtNi44LDEuMi0xMC41LDEuMmMtMi41LDAtNC45LDAtNy40LTAuNmM0LjksMTUuNCwxOS4xLDI2LjUsMzYuNCwyNy4xYy0xMy42LDEwLjUtMzAuMiwxNi42LTQ4LjEsMTYuNg0KCWMtMy4xLDAtNi4yLDAtOS4yLTAuNmMxNy4zLDExLjEsMzcuNiwxNy4zLDU5LjgsMTcuM2M3MS41LDAsMTEwLjQtNTkuMiwxMTAuNC0xMTAuNGMwLTEuOCwwLTMuMSwwLTQuOQ0KCUM2Ny45LDEyMi4xLDc0LjEsMTE1LjMsNzkuNiwxMDcuOXoiLz4NCjwvc3ZnPg0K);
	background-size:cover;
}





/*
	for piano implementation
	
*/
	
	
#piano-overlay {
  color: white;
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 200;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  letter-spacing: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  background-color: #00a7ee;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

#piano-overlay iframe{
	width: 100%;
	height: 100%;
	border: none;	
}

#piano-overlay.active {
	position: fixed !important;
	z-index: 999999999;
	top:20%;
	left:20%;
	min-height: 520px;
	height: 60%;
	width: 60%;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.5), 0 15px 12px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

/*RL - Added to prevent ads from overtaking meter */
body .tp-backdrop.tp-active {
    z-index: 9999999 !important;
}
body .tp-modal {
    z-index: 19999999 !important;
}


@media only screen and (max-width: 800px) {
	#piano-overlay.active{
		top:5%;
		width: 100%;
		max-width: 100%;
		left: 0;
		position: fixed !important;
		max-height: 600px;
	}
}

@media only screen and (max-width: 600px) {
	#piano-overlay.active{
		top:0;
		width: 100%;
		max-width: 100%;
		left: 0;
		position: fixed !important;
		max-height: 600px;
	}
}




