
  html, body {
    background-color: white;
  }
  
  
.centerstyle {
  display: flex;
  justify-content: center;
  align-items: center;

}
  
  
	

/* 	body, html {   
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display:table;

}
body {
    display:table-cell;
    vertical-align:middle;
  
}
form {
    display:table;/* shrinks to fit content */
 
} */
  
  
  
  
  .arrow_animate_right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transition: transform 400ms ease !important;
}
  
  .arrow_no_animate_right {
     transition: all .2s ease-in-out;
    transform: scale(1);
  }
  
  
  .arrow_no_animate_right:hover {
    transition: all .2s ease-in-out;
    transform: scale(1.05);
  }
  
  .church_search_term_transition {
  
  background: linear-gradient(to left, white 20%, #66b2b2 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 2s ease-out;
  }
  
  
  
  #arrow_right {
    position: absolute;
    color: #66b2b2;
margin-left: 10px;
padding-top: 12px;
    display: flex;
    font-size: 4vw; 
  align-items:center;/*Vertical align*/
  justify-content:center;/*horizontal align*/
    cursor: pointer;
    
    
  }
  
 
  
  
  
  pwa-install::part(openButton) {
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 20px;
}
  
pwa-install::part(openButton):hover {
    background-color: RoyalBlue;

}  
  
  
  *:focus {
    outline: none;
}
  
  
  
  #church_search_term::-webkit-search-cancel-button{
    -webkit-appearance: none; 
}
  
  
  .searched_liturgys {
    display: block; 
    opacity: 0; 
    width: 50vw; 
    align: center; 
    font-size: 35px; 
    margin:0 auto; 
    margin-top: 15px; 
    background: teal; 
    color: white; 
    cursor: pointer; 
    border-radius: 25px; 
    box-shadow: 2px 2px #888888; 
    border: none;
    line-height: 1;
  }
  
  .searched_liturgys:hover {
    background: #006666;
  }
  
  
  .recent_liturgys {
    display: block; 
    opacity: 0; 
    width: 50vw; 
    align: center; 
    font-size: 35px; 
    margin:0 auto; 
    margin-bottom: 15px; 
    background: grey; 
    color: white; 
    cursor: pointer; 
    border-radius: 25px; 
    box-shadow: 2px 2px #4d3024; 
    border: none;
    line-height: 1;
  }
  
  .recent_liturgys:hover {
    background: #006666;
  }
  
  .view_image:hover {
    opacity: 0.7;
  }
  
  .recent_clear {
    display: block; 
    align: center; 
    font-size: 35px; 
    margin: 5px;
    padding: 15px;
    background: white; 
    color: maroon; 
    cursor: pointer; 
    border-radius: 50%; 
    border: none;
    position: fixed;
    bottom: 60px;
    right: 0px;
  }
  
  .recent_clear:hover {
    opacity: 0.7;
  }
  

.blurredElement {

     /* Any browser which supports CSS3 */
    filter: blur(10px);

    /* Firefox version 34 and earlier */
    filter: url("blur.svg#gaussian_blur");

    /* Webkit in Chrome 52, Safari 9, Opera 39, and earlier */
    -webkit-filter: blur(10px);
}
  