﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}


html {
  font-size: 14px;
}
@media (min-width: 768px) {
    html {
      font-size: 16px;
    }
}
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 75px;
  background-color: #373a3c;
}
.footer {
    padding: 15px;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    color: #ddd;
    position: fixed;
}

p.large {
    font-size: 1.25em;
}

.splash-screen {
    background-image: url("../img/church.jpg");
    background-size: cover;
    background-position: center;
}

.home-jumbotron {
    background-color: rgba(0,0,0,0) !important;
    margin-bottom: 0px !important;
}

.bg-pink {
    background-color: #f6b3b3 !important;
}

.bg-custom-dark {
    background-color: #232321 !important;
}

.border-custom-dark {
    border-color: #a15350 !important;
}

.oi.empty {
    visibility: hidden;
}

.oi-lg {
    font-size: 1.5em;
}

.copyright {
    margin-bottom: 25px;
}

.mood {
    color: rgb(247, 175, 175);
    font-family: Tahoma, sans-serif;
}

.card-header.no-border {
    border-bottom: 0px !important;
}

.transparent {
    opacity: 0;
}

.selection-box-container {
}

.selection-box {
    width: 128px;
    height: 128px;
    float: left;
    background: linear-gradient(90deg, rgb(206, 80, 58) 0%, rgba(9,9,121,1) 35%, rgba(99,168,55,1) 100%);
    text-align: center;
    cursor: pointer;
    margin: 20px;
    font-size: 18px;
    line-height: 128px;
    border-radius: 5px;
    border: 2px solid #200d0d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    animation-name: fadeOutBox;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.2s;
}
    .selection-box.selected {
        color: rgb(247, 175, 175);
        transform: scale(1.1);
        animation-name: fadeInBox;
        animation-iteration-count: 1;
        animation-timing-function: ease-in;
        animation-duration: 0.2s;
    }

    .selection-box:hover {
        opacity: 0.8;
    }

    .selection-box-img {
        background-color: #22222288;
        pointer-events: none;
    }

@media (max-width: 768px) {
    .selection-box {
        width: 108px;
        height: 108px;
        margin: 7px;
        font-size: 13px;
        line-height: 108px;
    }
}

@keyframes fadeInBox {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes fadeOutBox {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);
    }
}

.track-hide.border-thick {
    border-width: 0px;
}

.track {
    width: 156px;
    float: left;
    margin-bottom: 25px;
    margin-right: 15px;
    text-align: center;
    font-weight: bold;
    color: #ccc;
    position: relative;
    background-color: #111;
    border-radius: 10px;
}

    .track.selected {
        color: #f7f7f7;
        background-color: #200d0d;
    }

.track.hidden {
    opacity: 0;
    display: none;
    animation-name: fadeOutOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.1s;
}

.track.show {
    opacity: 1;
    margin-bottom: 25px;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}

.track img {
    border-radius: 10px 10px 0px 0px;
    opacity: 0.6;
}

.track .play-button {
    position: absolute;
    left:53px;
    top:53px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: #232321bb;
    cursor: pointer;
}

.track.selected .play-button {
    background-color: #442321aa;
}

.track .play-button:hover {
    background-color: #443839bb;
}

.track .small-button {
    display: inline;
    margin: 5px;
    font-size: 14px !important;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.35;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOutOpacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.15;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 473px) {
    .track {
        width: 128px;
    }
    .track img {
        width: 128px;
    }
    .track .play-button {
        left:39px;
        top:39px;
    }
    .track .small-button {
        font-size: 16px !important;
    }
}

@media (max-width: 417px) {
    .track {
        width: 116px;
    }
    .track img {
        width: 116px;
    }
    .track .play-button {
        left:33px;
        top:33px;
    }
}


/* plyr.js */

.plyr--audio .plyr__controls {
    background-color: #373a3c;
    color: #ddd;
}

.plyr--full-ui input[type=range] {
    color: #D9230F;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
    background-color: #D9230F;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
    background: #D9230F;
}

/*.plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 5px rgba(240,95,64,.5)
}*/