.tutbutton {
color: white; background-color: rgb(106, 27, 154); font-weight: 500; text-transform: uppercase; border: none; border-radius: 8px; padding: 10px;
}
.tutbutton-alt {
color: white; background-color: rgb(106, 27, 154); font-weight: 500; border: none; border-radius: 8px; padding: 10px;
}

.phonebutton { color: white; background-color: rgb(106, 27, 154); font-weight: 500; border: none; border-radius: 8px; padding: 10px; width: 100px; height: 100px; }

.preloader {
	pointer-events: none;
	background-color: lavender;
	position: fixed;
    display: block;
	top: 0;
	left: 15px;
	width: 100%;
	height: 100vh;
	z-index: 100;
}

/* howler -------------------------------------------*/
/* Top Info */
#title {
    position: absolute;
    width: 100%; left: 0;
    top: 3%;
    line-height: 34px;
    height: 34px;
    text-align: center;
    font-size: 34px;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #timer {
    position: absolute;
    top: 0;
    left: 3%;
    text-align: left;
    font-size: 26px;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #duration {
    position: absolute;
    top: 0;
    right: 3%;
    text-align: right;
    font-size: 26px;
    opacity: 0.5;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  
  /* Controls */
  .controlsOuter {
    position: absolute;
    width: 100%; left: 0;
    height: 70px;
    bottom: 3%;
  }
  .controlsInner {
    position: absolute;
    width: 340px;
    height: 70px;
    left: 50%;
    margin: 0 -170px;
  }
  .btn {
  color: white;
  font-size: 30px;
    position: absolute;
    cursor: pointer;
    opacity: 0.9;
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.33));
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.33));
    -webkit-user-select: none;
    user-select: none;
  }
  .btn:hover {
    opacity: 1;
  }
  #playBtn:hover, #pauseBtn:hover {
  color: white;
  }
  #playBtn {
    left: 50%;
    margin: auto -34.5px;
  
  }
  #pauseBtn {
    left: 50%;
    margin: auto -34.5px;
    display: none;
  }
  #prevBtn {
    color: white;
    left: 0;
    margin: auto;
  }
  #nextBtn {
    color: white;
    right: 0;
    margin: auto;
  }
  #playlistBtn {
    font-size: 24px;
    left: 0;
    top: 50%;
    margin: -07.5px auto;
  }
  #volumeBtn {
    font-size: 24px;
    top: 50%;
    right: 0;
    margin: -17.5px auto;
  }
  
  /* Progress */
  #waveform {
    width: 100%;
    height: 30%;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -15% auto;
    display: none;
    cursor: pointer;
    opacity: 0.8;
    -webkit-user-select: none;
    user-select: none;
  }
  #waveform:hover {
    opacity: 1;
  }
  #bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    opacity: 0.9;
  }
  #progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
  }
  
  /* Loading */
  #loading {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 100%;  
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
    display: none;
  }
  @-webkit-keyframes sk-scaleout {
    0% { -webkit-transform: scale(0) }
    100% {
      -webkit-transform: scale(1.0);
      opacity: 0;
    }
  }
  @keyframes sk-scaleout {
    0% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 100% {
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
      opacity: 0;
    }
  }
  
  /* Playlist */
  #playlist {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }
  #list {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .list-song {
    width: 100%;
    height: 120px;
    font-size: 50px;
    line-height: 120px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  .list-song:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }
  
  /* Volume */
  #volume {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    touch-action: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: none;
  }
  .bar {
    position: absolute;
    top: 50%;
    left: 5%;
    margin: -5px auto;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #barEmpty {
    width: 90%;
    opacity: 0.5;
    box-shadow: none;
    cursor: pointer;
  }
  #barFull {
    width: 90%;
  }
  #sliderBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 93.25%;
    margin: -25px auto;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.33);
    border-radius: 25px;
    cursor: pointer;
  }
  
  /* Fade-In */
  .fadeout {
    webkit-animation: fadeout 0.5s;
    -ms-animation: fadeout 0.5s;
    animation: fadeout 0.5s;
  }
  .fadein {
    webkit-animation: fadein 0.5s;
    -ms-animation: fadein 0.5s;
    animation: fadein 0.5s;
  }
  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  @keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
  }
  @-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
  }
  @-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
  }
  
  #playlistBtn {
      top: unset;
      bottom: 100px;
  }
  
  #volumeBtn {
      top: unset;
      bottom: 100px;
  }
  
  #title {
      font-size: 30px;
  }
  
  #timer {
      top: 75px;
      font-size: 24px;
  }
  
  #duration {
      top: 75px;
      font-size: 24px;
  }
  
  #playlist-title {
      text-align: center;
      color: white;
      font-style: italic;
      font-size: 1.4em;
  }
  
  #pa-back, #pa-usb {
      color: #ffffffb3;
      font-size: 22px;
      position: absolute;
      left: 15px;
      top: 13px;
      border: 1px solid;
      padding: 9px;
      border-radius: 8px;
  }
  
  #pa-usb { right: 0; left: unset; line-height: 15px; }
  .fixed-widget-list { display: none; }
  
  #list {
      
      overflow-y: scroll;
         background-color: #4956b4;
      justify-content: initial;
  
  }
  .list-song {
      font-size: 18px;
      line-height: 2;
      font-weight: 100;
  }
  
  #track { 
   color: white;
  }
  
  #timer, #duration {
  font-family:'Gill Sans';
  }
  
  #playBtn, #pauseBtn {
      left: 0;
      margin: auto;
      right: 0;
  }

/* main ---------------------------------------------------------------- */
/* GLOBAL */
 @font-face {
     font-family: 'Tiranti Solid LET';
     src: url('/images/mobileapp/TirantiSolidLetPlain.eot');
     src: url('/images/mobileapp/TirantiSolidLetPlain.eot?#iefix') format('embedded-opentype'), url('/images/mobileapp/TirantiSolidLetPlain.woff2') format('woff2'), url('/images/mobileapp/TirantiSolidLetPlain.woff') format('woff'), url('/images/mobileapp/TirantiSolidLetPlain.svg#TirantiSolidLetPlain') format('svg');
     font-weight: 100;
     font-style: normal;
     font-display: swap;
}
 h3, h4, h5, h6, p, span, small, a, figcaption {
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     color: black;
     padding: 0;
     margin: 0;
     line-height: 1;
}
 .page-breadcrumbs, .fixed-widget-list {
     display: none;
}
/* CONTENT */
 .mobile-app-container {
     position: relative;
}
 .main-content {
     min-height: 100vh;
     background-color: white;
     display: none;
}
 .iframe-content {
     position: fixed;
transform: translateX(100vw); /* W3C */
-webkit-transform:  translateX(100vw); /* Safari & Chrome */
-moz-transform:  translateX(100vw); /* Firefox */
-ms-transform:  translateX(100vw); /* Internet Explorer */
-o-transform:  translateX(100vw); /* Opera */	 
     z-index: 50;
     top: 0;
     left: 0;
     width: 100%;
     height: 100vh;
     background-color: white;
	 transition: transform ease-in-out .35s;
}

.iframe-content-shift {
transform: translate(0) !important; /* W3C */
-webkit-transform:  translateX(0) !important; /* Safari & Chrome */
-moz-transform:  translateX(0) !important; /* Firefox */
-ms-transform:  translateX(0) !important; /* Internet Explorer */
-o-transform:  translateX(0) !important; /* Opera */	
}
 .login {
     background-color: white;
     height: 40px;
     gap: 5px;
     font-weight: 500;
     padding: 0 10px;
     border-radius: 14px;
     font-family: 'Gill sans', sans-serif;
     font-size: 16px;
    /* box-shadow: 0px 5px 10px 0px rgba(0,0,0,.2);
     */
     position: absolute;
     right: 30px;
     top: 30px;
}
 .mobile-app-container {
     max-width: 400px;
    /* max-height: 800px;
     */
}
 .mobile-app-container row {
     padding: 0;
     margin: 0;
     overflow-y: auto;
}
/* NAVIGATION */
 .section-title {
     text-transform: capitalize;
}
 .content-header {
     width: 100vw;
     height: 92px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-direction: row;
}
 .content-header h1 {
     font-family: Rouge Script, cursive;
     text-transform: capitalize;
     background: -webkit-linear-gradient(114deg, #25349e, #b922f3);
    /* background: -webkit-linear-gradient(114deg, #dcc003, #e79839);
     */
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-size: 44px !important;
     padding: 0 5px;
}
 #nav {
     margin: auto;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 40;
     background-color: white;
}
 .nav-bg {
     background-image: url('/images/mobileapp/pray-header-bg.jpg');
     background-size: cover;
}
 .navigation-popup {
     position: fixed;
     height: calc(100vh - 92px);
     width: 100vw;
     background-color: rgb(0,0,0,0.5);
     opacity: 0;
     pointer-events: none;
     transition: all ease-in-out .17s;
     flex-direction: column;
     justify-content: start;
    /* padding-bottom: 60px;
     */
     align-items: center;
     top: 92px;
     left: 0;
     margin: auto;
     z-index: 100;
}
 .navigation-popup > div {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 15px;
}
 .navigation-btn, .link-btn {
     translate: 0 25px;
     border-radius: 8px;
     background-color: white;
     width: 90%;
     padding: 10px 20px;
     display: flex;
     justify-content: start;
     align-items: center;
     transition: all ease-in-out .17s;
     gap: 15px;
     background-color: white;
}
 .navigation-btn p, .link-btn p {
     padding: 0;
     margin: 0;
     font-family: 'Unica One';
     text-transform: uppercase;
}
.navigation-popup > div > i {
     font-size: 2em;
}
 .navigation-visible {
     opacity: 1 !important;
     pointer-events: unset !important;
}
 .navigation-visible > div {
     translate: 0;
}
/* INTRO */
 #intro {
}
 #intro .content-body {
     background-image: url('/images/mobileapp/mobileapp-mainbg.jpg');
     background-size: cover;
     height: 100%;
}
 .app-title {
     text-align: center !important;
     text-transform: capitalize !important;
     font-family: 'Tiranti Solid LET', serif !important;
     font-weight: 100 !important;
     line-height: .85 !important;
     font-size: 64px !important;
     margin: 0;
     padding: 0;
}
/* PRAY */
 .media-card {
     display: flex;
     justify-content: flex-start;
     align-items: center;
     padding: 0 15px;
}
 .media-card span {
     font-size: 16px;
     font-style: italic;
     text-transform: capitalize;
}
 .media-card img {
     width: 32px;
     height: 32px;
     border-radius: 100%;
}
 .media-card-img-large {
     display: none;
     position: relative;
}
 .media-card-img-large > img {
     width: 100%;
}
 .media-items > div {
     border: 1px solid whitesmoke;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 0 10px -5px black;
}
 .media-items p {
     font-family: 'Unica One';
     text-transform: uppercase;
     font-size: 20px;
     padding: 15px 15px;
     margin: 0;
     line-height: 1;
}
 .media-items {
     display: flex;
     flex-direction: column;
     gap: 15px;
}
 .video-audio-choice {
     display: none;
     grid-template-columns: 1fr 1px 1fr;
     place-items: center;
     text-align: center;
     background-image: linear-gradient(0deg, rgb(109, 40, 147), rgb(174, 90, 197));
}
 .is-active .video-audio-choice {
     display: grid;
}
 .is-active .media-card {
     background-color: #f6e6fa;
}
 .video-audio-choice i {
     font-size: 44px;
     padding-top: 27px;
     color: white;
}
 .video-audio-choice small {
     color: white;
     display: block;
     padding: 15px;
     text-transform: uppercase;
     font-size: 16px;
}
 .choice-divider {
     border-right: 1px dashed #ffffff4f;
     height: 100%;
}
 #all-prayers-blurb {
     text-align: center;
     text-transform: uppercase;
     font-weight: 500;
     position: absolute;
     bottom: 10px;
     color: white;
     padding: 0;
     margin: auto;
     left: 0;
     width: 100%;
}
/* LIVE */
 #live small {
     text-align: center;
}
 .btn-calendar {
     border-radius: 16px;
     display: flex;
    /* align-content: center;
     */
     align-items: center;
     justify-content: center;
     gap: 14px;
     padding: 10px;
     position: relative;
     font-family: Gill sans;
     font-weight: 500;
     padding: 10px 20px;
     width: 100%;
     letter-spacing: 2px;
     border: 3px solid #7f21a4;
}
 .pr-33 {
     padding-left: 33px;
     padding-right: 33px;
}
 #iframe-media {
     background-image: linear-gradient(0deg, rgb(40, 53, 147), rgb(90, 103, 197));
}
 #media-container-title {
     color: white;
}
/* HOME */
 .qotd {
     display: flex;
     justify-content: center;
     align-items: center;
     border-radius: 4px;
     flex-direction: column;
     position: relative;
     background-color: #8CA8D8;
}
 .qotd::before {
     border: 12.5px solid transparent;
     border-top: 12.5px solid #8CA8D8;
     border-bottom: 0;
     height: 0;
     width: 0;
     border-top-width: 25px;
     content: "";
     display: block;
     position: absolute;
     left: 3rem;
     bottom: -25px;
     transform-origin: center;
     transform: rotate(90deg) skew(-25deg) translateY(16.6666666667px);
}
 .qotd p {
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 3px;
     font-size: 15px;
     font-weight: 400;
     padding: 0;
     margin: 0;
}
 .quote-bar {
     background-color: rgb(255,255,255);
     width: 120px;
     border-radius: 25px;
     height: 8px;
     margin-bottom: 7px;
}
 .iframe-content {
     margin: auto;
     overflow: auto;
    /* display: none;
     */
}
 #iframe-qotd {
     padding: 15px;
     position: fixed;
    /*translate: 0;
     height: 50%;
    */
}
/* LISTBOX */
 .listbox {
     box-shadow: 0 0 16px 0 #e6e6e6;
     border-radius: 8px;
     overflow: hidden;
     width: 100%;
}
 .listbox img {
     width: 100%;
     display: none;
}
 .listbox-active img {
     display: block;
}
 .btn-next i{
     position: absolute;
     right: 2em;
     font-size: 16px;
     line-height: 22px;
}
 .is-something-live {
     color: red;
     font-family: 'Gill Sans';
     font-size: 14px;
     display: flex;
     justify-content: center;
     align-items: center;
    /* gap: 5px;
     */
     position: absolute;
     right: 65px;
     border: 1px solid red;
     padding: 0px 5px;
     border-radius: 4px;
}
 @keyframes flickerAnimation {
     0% {
         opacity:1;
    }
     50% {
         opacity:0.5;
    }
     100% {
         opacity:1;
    }
}
 @-o-keyframes flickerAnimation{
     0% {
         opacity:1;
    }
     50% {
         opacity:0.5;
    }
     100% {
         opacity:1;
    }
}
 @-moz-keyframes flickerAnimation{
     0% {
         opacity:1;
    }
     50% {
         opacity:0.5;
    }
     100% {
         opacity:1;
    }
}
 @-webkit-keyframes flickerAnimation{
     0% {
         opacity:1;
    }
     50% {
         opacity:0.5;
    }
     100% {
         opacity:1;
    }
}
 .animate-flicker {
     -webkit-animation: flickerAnimation 1s infinite;
     -moz-animation: flickerAnimation 1s infinite;
     -o-animation: flickerAnimation 1s infinite;
     animation: flickerAnimation 1s infinite;
}
 .link-btn i {
     color: rgb(68, 24, 85);
}

