@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --primary: #001c2e;
    --primary-dark: #001c2e;
    --secondary: #D0D9DF;
}

html * {
    font-family: 'Montserrat', sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.medium-modal-width {
    width: 900px;
}

.narrow-modal-width {
    width: 450px;
}

.constrain-modal {
    max-height: calc(100vh - 15rem);
    overflow-y: scroll;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

    .btn-primary:hover {
        background-color: #4a6e85;
        border-color: #4a6e85;
    }

.btn-primary-outline {
    border-color: var(--primary);
    
}

.btn-primary:focus {
    background-color: var(--primary);
    box-shadow: none;
}


.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: var(--primary);
        border-color: var(--primary);
    }

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgb(74 110 133 / 50%);
}

.btn {
    border-radius: 15px;
}

.btn-fixed-width {
    width: 390px;
}

.fixed-text-block{
    width: 255px;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    overflow-x:hidden;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Pictures/Church.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

    #bg img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        min-width: 50%;
        min-height: 50%;
    }

.full-height{
    height: 100%
}

.church-background {
    background-image: url('../Pictures/Church.jpg');
    background-position: top;
    background-repeat: no-repeat;
    height: 750px;
    width: 100%;
    background-position: 65% 40%;
}

.church-image{
    width: 75%;
    margin: 20px;
    border-radius: 15px;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    

/* navigation styles*/

body {
    margin: 0;
    background: #FFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

header {
    background: var(--primary);
    text-align: left;
    align-items: center;
    min-height: 50px;
    color: white;
    position: fixed;
    z-index: 999;
    width: 100vw;
}

.logo {
    margin-left:10px;
    margin-top: 5px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: white;
        height: 2px;
        width: 2em;
        border-radius: 2px;
        position: relative;
    }

        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            content: '';
            position: absolute;
        }

        .nav-toggle-label span::before {
            bottom: 7px;
        }

        .nav-toggle-label span::after {
            top: 7px;
        }

nav {
    position: absolute;
    text-align: center;
    top: 100%;
    left: 0;
    background: var(--primary);
    width: 100%;
    transform: scale(1, 0);
    transform-origin: top;
    transition: transform 400ms ease-in-out;
}

    nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    nav li {
        margin-bottom: 1em;
        margin-left: 1em;
    }

    nav a {
        color: var(--secondary);
        text-decoration: none;
        font-size: 1.2rem;
        text-transform: uppercase;
        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

        nav a:hover {
            color: white;
            text-decoration: none;
        }

.nav-toggle:checked ~ nav {
    transform: scale(1, 1);
}

    .nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }

.nav-toggle:checked ~ label {
    transform: scale(1, 1);
}

    .nav-toggle:checked ~ label {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }

@media screen and (min-width: 962px) {
    .nav-toggle-label {
        display: none;
    }

    header {
        display: grid;
        grid-template-columns: 7fr auto 700px 1fr;
    }

    .logo {
        text-align: start;
        margin-left: .5em;
        letter-spacing: -0.5px;
    }

    nav {
        all: unset;
        grid-column: 3/4;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    nav ul {
        display: flex;
        justify-content: flex-end;
        
    }

    nav li {
         margin-left: 3em;
         margin-bottom: 0;
    }

    nav a {
        opacity: 1;
        position: relative;
    }

        nav a::before {
            content: '';
            display: block;
            height: 5px;
            border-radius: 10px;
            background: #B4BAD4;
            position: absolute;
            bottom: -.50em;
            left: 0;
            right: 0;
            transform: scale(0, 1);
            transition: transform ease-in-out 250ms;
        }

    nav a:hover::before {
        transform: scale(1, 1);
    }
}

/* Bulletin List*/
.generic_feature_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .generic_feature_list ul li {
        font-family: "Lato",sans-serif;
        font-size: 16px;
        padding: 5px 0;
        transition: all 0.3s ease-in-out 0s;
    }

        .generic_feature_list ul li .fa {
            padding: 0 10px;
        }

    .generic_feature_list ul li {
        color: #a7a7a7;
    }

        .generic_feature_list ul li span {
            color: #414141;
        }

.e-btn{
    border-radius: 15px !important;
}


.church-banner-image{
    width: 100vw;
}
.overlay-text{
    color: lightgray;
    font-size:24px;
    margin-top: -50px;
    margin-bottom: 50px;
}

.blazored-toast-container {
    z-index: 100 !important;
}

.blazored-toast-info {
    background-color: var(--primary) !important;
}

.transcription-area {
    height: 450px;
    overflow: auto;
}

.alert {
    border-radius: 15px;
}