/* PRE-LOADING SCREEN */

.spinner {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  width: 200px;
  height: 200px;
}
.spinner .path {
  stroke: rgba(255,255,255,1);
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}





.PreLoadLogo {
position: fixed;
width: 150px;
height: 150px;
left: calc(50% - 75px);
top: calc(50% - 75px);
}

#loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.95;
  background-color: rgba(0,0,0,0.85);
  z-index: 9999999999 !important;
}

.LoadingText {
position: fixed;
width: 100%;
height: 50px;
left: 0px;
top: calc(50% + 100px);
overflow: hidden;
}


/* PRE-LOADING SCREEN */







input.BookButton {
    background-color: rgba(255,120,140,0.1);
    border-radius: 16px;
    border: 1px solid rgba(255,0,90,0.1);
    cursor: arrow;        
    height: 32px;           
    padding-left: 10px;
    padding-right: 10px;     
    vertical-align: middle; 
    color: #990042;
    text-shadow: 1px 1px 3px rgba(255,255,255,1);
	font-family: "BodyFont";
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

input.BookButton:hover {
background-color: rgba(255,0,90,0.2);
border: 1px solid rgba(0,0,0,0.15);
cursor: hand; 
}



.HomepageButtons {
width: 65%;
height: auto;
}

@media only screen and (max-width: 640px) {
.HomepageButtons {
width: 85%;
height: auto;
}
}


.LeftPanel {
	background-image: url("images/healinghands.webp"); 
	background-size: cover;	
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	border-radius: 26px;
	min-height: 50vh;
	box-shadow: 5px 5px 20px rgba(255,255,255,0.5);
	margin-bottom: 0px;
}

  @media only screen and (max-width: 640px) {
  .LeftPanel {
  min-height: 100px;
  margin-bottom: 20px;
  }
  }

.LeftPanelOverlay {
background-color: rgba(255,255,255,0.5) !important;
backdrop-filter: blur(4px) !important;
border-radius: 26px;
min-height: 50vh;
}


.RightPanel {
	background-image: url("images/healing-hands-studio.webp"); 
	background-size: cover;	
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	border-radius: 26px;
	min-height: 55vh;
	box-shadow: 5px 5px 20px rgba(255,255,255,0.5);
}

.RightPanelOverlay {
background-color: rgba(255,255,255,0.7);
backdrop-filter: blur(4px);
border-radius: 26px;
min-height: 55vh;
}



.HomeHeader {

font-family: "BodyFont" !important;
font-size: 32px;
line-height: 140%;
color: rgba(255,255,255,1);
text-shadow: 2px 2px 5px rgba(0,0,0,1);

}

@media only screen and (max-width: 640px) {
.HomeHeader {
font-size: 24px;
line-height: 120%;
}
}









/* End */