﻿@font-face {
    font-family: futura-bold;
    src: url('/fonts/Futura Bold.otf');
    font-weight: normal;
}

@font-face {
    font-family: futura-medium;
    src: url('/fonts/Futura Light.otf');
    font-weight: normal;
}

@font-face {
    font-family: futura-light;
    src: url('/fonts/Futura Light.otf');
    font-weight: normal;
}

/* Prayer List CSS */
.sat7-prayer-wrapper {
    /*--s: 500px;*/ /* controls the size */
    --g: 15px; /* controls the gap */
    display: grid;
    gap: var(--g);
    /*width: calc(3*var(--s) + 2*var(--g));*/ /* 3 times the size plus 2 times the gap */
    grid-template-columns: repeat(6, 300px);
    justify-content: center;
}

.sat7-prayer-card {
    /*margin: 15px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*max-width: 320px;
    max-height: 100%;*/
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
    transition: all linear 0.3s;
}

    .sat7-prayer-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 0;
    }

.sat7-prayer-card-overlay {
    position: absolute;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(48,0,3,0) 0%, rgba(48,0,3,0.7175245098039216) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #FFFFFF;
    width: 100%;
    text-align: center;
    height: 50%;
    bottom: 0;
    left: 0;
    display: none;
}

.sat7-prayer-card-title {
    font-family: futura-medium;
    font-size: 30px;
    max-width: 85%;
    margin-bottom: 20px;
    transition: all linear 0.3s;
}

.sat7-prayer-card-action {
    content: '';
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(210, 38, 48, 0.5);
    font-family: futura-bold;
    font-size: 0;
    height: 0;
    transition: all linear 0.3s;
}

.sat7-prayer-card:hover {
    transform: scale(1.03);
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.sat7-prayer-card:hover > .sat7-prayer-card-overlay .sat7-prayer-card-action {
    height: 60px;
    font-size: 28px;
}

.sat7-prayer-card:hover > .sat7-prayer-card-overlay {
    display: flex;
}

.sat7-prayer-card:hover > .sat7-prayer-card-overlay .sat7-prayer-card-title {
    display: block;
}

.sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
    font-family: futura-bold;
    color: var(--unnamed-color-ffffff);
    text-align: center;
    letter-spacing: 0.78px;
    color: #FFFFFF;
    opacity: 1;
    padding-bottom: 65px;
    font-weight: bold;
    display: none;
    font-size: 25px;
    width: 100%;
    padding-inline: 5px;
}

.sat7-prayer-card-action:hover {
    color: #FFFFFF;
    box-shadow: 0px 3px 6px #00000029;
}

/* Responsive Section For Prayer List */
@media screen and (max-width:2000px) {
    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(6, 250px);
        justify-content: center;
    }
    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 22px;
    }
}
@media screen and (max-width:1700px) {
    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(6, 200px);
        justify-content: center;
    }

    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 18px;
    }
}
@media screen and (max-width: 1300px){
    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(5, 150px);
        justify-content: center;
    }
}

@media screen and (max-width:1000px) {

    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(4, 150px);
        justify-content: center;
    }

    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 14px;
    }
}

@media screen and (max-width:790px) {

    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(3, 150px);
        justify-content: center;
    }

    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {

    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(2, 150px);
        justify-content: center;
    }

    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 14px;
    }

}

@media screen and (max-width:350px) {

    .sat7-prayer-wrapper {
        --g: 15px; /* controls the gap */
        display: grid;
        gap: var(--g);
        grid-template-columns: repeat(1, 150px);
        justify-content: center;
    }

    .sat7-prayer-card > .sat7-prayer-card-overlay .sat7-prayer-card-title {
        font-size: 14px;
    }
}


/* Prayer Details CSS */
.sat7-prayer-details-wrapper {
    display: flex;
    width: 100%;
    padding: 50px 120px;
    background-color: #F8F8F8;
    gap: 60px;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-family: futura-medium;
    justify-content: center;
    padding-top: unset;
    height: fit-content;
}

.sat7-details-container {
    width: 100%;
    max-width: 100%;
    display: grid;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 16px;
    color: #13294B;
    border-radius: 5px;
    grid-template-columns: 30% 70%;
}

.sat7-event-details-text-and-image-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 80%;

}
.sat7-details-send-prayer {
    border-top: 3px solid #d2d2d2;
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    color: #13294B;
    border-radius: 5px;
    padding: 20px;
}

.sat7-prayer-details-text-img-container {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.sat7-prayer-frame {
    vertical-align: middle;
    text-align: center;
    display: table-cell;
}

.sat7-prayer-details-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-fit: unset;
}

.sat7-prayer-details-buttons {
    background-color: #D22630;
    color: #FFFFFF;
    font-size: 18px;
    border: none;
    border-radius: 7px;
    padding: 10px 15px;
    transition: all linear 0.3s;
    width: 200px;
    text-align: center;
    margin-right: 1%;
    margin-bottom: 10px;
}

.sat7-prayer-details-buttons:hover {
    box-shadow: inset 0 100px 0 0 #142142;
}

.sat7-prayer-details-text-container {
    width: 100%;
    padding: 10px;
    text-align: start;
    font-weight: bold;
    padding: 30px;
}

.sat7-prayer-breadcrumb{
    padding: unset !important;
}

.sat7-prayer-detail-breadcrumb-item {
    text-decoration: underline;
    font-family: futura-medium;
    color: #142142;
   font-size: 20px;
}

.sat7-prayer-detail-breadcrumb-item:hover {
    color: #142142;
}
.breadcrumb-current {
    color: #D22630;
}


ul.sat7-prayer-breadcrumb li {
    display: inline;
    font-size: 18px;
}

ul.sat7-prayer-breadcrumb li + li:before {
    padding: 8px;
    color: black;
    content: "\003E";
}

.sat7-prayer-title {
    font: normal normal bold 35px/55px Futura-Bold;
    letter-spacing: 1.09px;
    color: #13294B;
    opacity: 1;
    text-transform: uppercase;
}

.sat7-prayer-details-header {
    margin-bottom: 10px;
}

.sat7-send-prayer-title {
    text-align: left;
    letter-spacing: 1.09px;
    color: #13294B;
    opacity: 1;
    font-family: 'futura-bold';
    font-size: 35px;
    letter-spacing: 1.09px;
    text-transform: uppercase;
    margin: auto;
}

.sat7-send-prayer-input {
    width: 100%;
    background: #F3F2F2 0% 0% no-repeat padding-box;
    opacity: 1;
    border: none;
    padding: 15px;
    margin-bottom: 3%;
}

.sat7-send-prayer-input::placeholder {
    font-family:futura-medium;
    letter-spacing: 0.53px;
    color: #000000;
    font-size: 15px;
    opacity: 1;
}

.sat7-send-prayer-input-container {
    display: inline-block;
    width: 100%;
}

.sat7-send-prayer-form {
    margin: auto;
    display: grid;
    width: 100%;
    justify-content: center;
}

.sat7-send-prayer-input-container-child{
    display: inline-block;
    width: 50%;
}

.grid-container {
    display: grid;
    grid-template-columns: 100% 100%;
    margin: auto;
    justify-content: center;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 7%;
}
.grid-container2 {
    display: grid;
    grid-template-columns: 100%;
    margin: auto;
    justify-content: center;
    width: 100%;
}
.sat7-send-prayer-textarea {
    height: 250px;
    width: 100%;
    resize: none;
    background: #F3F2F2 0% 0% no-repeat padding-box;
    border: none;
}

.sat7-send-prayer-textarea::placeholder {
    font-family: futura-medium;
    letter-spacing: 0.53px;
    color: #000000;
    font-size: 15px;
    padding: 5px;
    opacity: 1;
}

.textarea-container {
    width: 100%;
    justify-content: center;
    margin: auto;
    text-align: center;
    margin: 2%;
}

.prayer-grid-item {
    margin-right: 2%;
}

.grid-item2 {
    grid-column: 1/span 2;
}

.form-button-container {
    width: 100%;
    justify-content: center;
    margin: auto;
    text-align: center;
}
@media screen and (max-width:1000px) {
    .sat7-prayer-detail-breadcrumb-item {
        text-decoration: underline;
        font-family: futura-medium;
        color: #142142;
        pointer-events: none;
        font-size: 20px;
    }

    .sat7-event-details-text-and-image-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .sat7-details-container {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        font-size: 16px;
        color: #13294B;
        border-radius: 5px;
    }
    .sat7-prayer-details-wrapper {
        padding: unset;
    }

    .sat7-send-prayer-title {
        font-size: 20px;
    }

    .grid-container {
        grid-template-columns: 100%;
        margin-bottom: 7%;
    }
    .prayer-grid-item {
        grid-column: 1/span 2 !important;
    }

    .sat7-send-prayer-form {
       display: block; 
    }
    .sat7-prayer-frame {
        width: 100%;
        display: unset; 
    }

    .sat7-prayer-details-text-img-container{
        text-align: center;
    }

    .breadcrumb-current {
        color: #D22630;
    }
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }
.modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding: 9% 10px 9% 10px;
    overflow-y: hidden;
    bottom: 10px;
}

.modal-container {
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: fixed;
    right: 45px;
    top: 25px;
    z-index: 99999;
}

.close > i {
    color: #D22630;
    background: white;
    border-radius: 50%;
}

@media screen and (max-width: 700px) {
    .close {
        top: unset;
        bottom: 10px;
    }

    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}